Runs stylelint fix

This commit is contained in:
Mouse Reeve 2022-02-17 16:53:53 -08:00
parent d510299ae4
commit 31a61713d9

View file

@ -315,8 +315,9 @@ details.dropdown .dropdown-menu a:focus-visible {
overflow-x: auto; overflow-x: auto;
overflow-y: hidden; overflow-y: hidden;
user-select: none; user-select: none;
white-space:nowrap white-space: nowrap;
} }
.bw-tabs::before { .bw-tabs::before {
border-bottom-color: #dbdbdb; border-bottom-color: #dbdbdb;
border-bottom-style: solid; border-bottom-style: solid;
@ -326,9 +327,11 @@ details.dropdown .dropdown-menu a:focus-visible {
position: absolute; position: absolute;
width: 100%; width: 100%;
} }
.bw-tabs:not(:last-child) { .bw-tabs:not(:last-child) {
margin-bottom:1.5rem margin-bottom: 1.5rem;
} }
.bw-tabs a { .bw-tabs a {
align-items: center; align-items: center;
border-bottom-color: #dbdbdb; border-bottom-color: #dbdbdb;
@ -338,109 +341,134 @@ details.dropdown .dropdown-menu a:focus-visible {
display: flex; display: flex;
justify-content: center; justify-content: center;
margin-bottom: -1px; margin-bottom: -1px;
padding:.5em 1em; padding: 0.5em 1em;
position: relative; position: relative;
} }
.bw-tabs a:hover { .bw-tabs a:hover {
border-bottom-color: transparent; border-bottom-color: transparent;
color:#363636 color: #363636;
} }
.bw-tabs a.is-active { .bw-tabs a.is-active {
border-bottom-color: transparent; border-bottom-color: transparent;
color:#3273dc color: #3273dc;
} }
.bw-tabs.is-left { .bw-tabs.is-left {
padding-right:.75em padding-right: 0.75em;
} }
.bw-tabs.is-center { .bw-tabs.is-center {
flex: none; flex: none;
justify-content: center; justify-content: center;
padding-left:.75em; padding-left: 0.75em;
padding-right:.75em padding-right: 0.75em;
} }
.bw-tabs.is-right { .bw-tabs.is-right {
justify-content: flex-end; justify-content: flex-end;
padding-left:.75em padding-left: 0.75em;
} }
.bw-tabs .icon:first-child { .bw-tabs .icon:first-child {
margin-right:.5em margin-right: 0.5em;
} }
.bw-tabs .icon:last-child { .bw-tabs .icon:last-child {
margin-left:.5em margin-left: 0.5em;
} }
.bw-tabs.is-centered { .bw-tabs.is-centered {
justify-content:center justify-content: center;
} }
.bw-tabs.is-right { .bw-tabs.is-right {
justify-content:flex-end justify-content: flex-end;
} }
.bw-tabs.is-boxed a { .bw-tabs.is-boxed a {
border: 1px solid transparent; border: 1px solid transparent;
border-radius:4px 4px 0 0 border-radius: 4px 4px 0 0;
} }
.bw-tabs.is-boxed a:hover { .bw-tabs.is-boxed a:hover {
background-color: #f5f5f5; background-color: #f5f5f5;
border-bottom-color:#dbdbdb border-bottom-color: #dbdbdb;
} }
.bw-tabs.is-boxed a.is-active { .bw-tabs.is-boxed a.is-active {
background-color: #fff; background-color: #fff;
border-color: #dbdbdb; border-color: #dbdbdb;
border-bottom-color:#fff!important border-bottom-color: #fff !important;
} }
.bw-tabs.is-fullwidth a { .bw-tabs.is-fullwidth a {
flex-grow: 1; flex-grow: 1;
flex-shrink:0 flex-shrink: 0;
} }
.bw-tabs.is-toggle a { .bw-tabs.is-toggle a {
border-color: #dbdbdb; border-color: #dbdbdb;
border-style: solid; border-style: solid;
border-width: 1px; border-width: 1px;
margin-bottom: 0; margin-bottom: 0;
position:relative position: relative;
} }
.bw-tabs.is-toggle a:hover { .bw-tabs.is-toggle a:hover {
background-color: #f5f5f5; background-color: #f5f5f5;
border-color: #b5b5b5; border-color: #b5b5b5;
z-index:2 z-index: 2;
} }
.bw-tabs.is-toggle a + a { .bw-tabs.is-toggle a + a {
margin-left:-1px margin-left: -1px;
} }
.bw-tabs.is-toggle a:first-child { .bw-tabs.is-toggle a:first-child {
border-top-left-radius: 4px; border-top-left-radius: 4px;
border-bottom-left-radius:4px border-bottom-left-radius: 4px;
} }
.bw-tabs.is-toggle a:last-child { .bw-tabs.is-toggle a:last-child {
border-top-right-radius: 4px; border-top-right-radius: 4px;
border-bottom-right-radius:4px border-bottom-right-radius: 4px;
} }
.bw-tabs.is-toggle a.is-active { .bw-tabs.is-toggle a.is-active {
background-color: #3273dc; background-color: #3273dc;
border-color: #3273dc; border-color: #3273dc;
color: #fff; color: #fff;
z-index:1 z-index: 1;
} }
.bw-tabs.is-toggle { .bw-tabs.is-toggle {
border-bottom:none border-bottom: none;
} }
.bw-tabs.is-toggle.is-toggle-rounded a:first-child { .bw-tabs.is-toggle.is-toggle-rounded a:first-child {
border-bottom-left-radius: 290486px; border-bottom-left-radius: 290486px;
border-top-left-radius: 290486px; border-top-left-radius: 290486px;
padding-left:1.25em padding-left: 1.25em;
} }
.bw-tabs.is-toggle.is-toggle-rounded a:last-child { .bw-tabs.is-toggle.is-toggle-rounded a:last-child {
border-bottom-right-radius: 290486px; border-bottom-right-radius: 290486px;
border-top-right-radius: 290486px; border-top-right-radius: 290486px;
padding-right:1.25em padding-right: 1.25em;
} }
.bw-tabs.is-small { .bw-tabs.is-small {
font-size:.75rem font-size: 0.75rem;
} }
.bw-tabs.is-medium { .bw-tabs.is-medium {
font-size:1.25rem font-size: 1.25rem;
} }
.bw-tabs.is-large { .bw-tabs.is-large {
font-size:1.5rem font-size: 1.5rem;
} }
.bw-tabs.has-aside-text a { .bw-tabs.has-aside-text a {
@ -449,7 +477,7 @@ details.dropdown .dropdown-menu a:focus-visible {
.bw-tabs a .aside-text { .bw-tabs a .aside-text {
position: absolute; position: absolute;
top: calc(-.75rem - .75rem); top: calc(-0.75rem - 0.75rem);
left: 0; left: 0;
color: #4a4a4a; color: #4a4a4a;
} }