77 lines
1.3 KiB
SCSS
77 lines
1.3 KiB
SCSS
@import 'soapbox-light/variables';
|
|
|
|
$gab-brand-default: #0482d8;
|
|
$gab-background-base-light: #f2f3f6;
|
|
$gab-background: $gab-background-base-light;
|
|
$ui-base-color: #d9f2f9;
|
|
$ui-highlight-color: $gab-brand-default;
|
|
$nav-ui-highlight-color: #149dfb;
|
|
$ui-base-lighter-color: #b0c0cf;
|
|
|
|
@import 'application';
|
|
@import 'soapbox-light/diff';
|
|
|
|
.tabs-bar__link {
|
|
font-weight: bold;
|
|
transition: 0.1s;
|
|
outline: none;
|
|
|
|
&::before {
|
|
bottom: auto;
|
|
opacity: 0;
|
|
height: 15px;
|
|
border-radius: 999px;
|
|
z-index: -1;
|
|
width: calc(100% + 20px);
|
|
margin-left: -12px;
|
|
|
|
@media screen and (max-width: 895px) {
|
|
height: 0;
|
|
border-radius: 3px 3px 0 0;
|
|
bottom: 0;
|
|
}
|
|
}
|
|
|
|
&.active::before,
|
|
&:hover::before {
|
|
height: 30px;
|
|
opacity: 1;
|
|
|
|
@media screen and (max-width: 895px) {
|
|
height: 7px;
|
|
width: 36px;
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
.tabs-bar__split--left:hover .tabs-bar__link {
|
|
&::before {
|
|
height: 15px;
|
|
opacity: 0;
|
|
|
|
@media screen and (max-width: 895px) {
|
|
height: 0;
|
|
}
|
|
}
|
|
|
|
&:hover::before {
|
|
height: 30px;
|
|
opacity: 1;
|
|
|
|
@media screen and (max-width: 895px) {
|
|
height: 7px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.search__input {
|
|
border-radius: 999px;
|
|
border: 0;
|
|
padding-left: 15px;
|
|
}
|
|
|
|
.search__icon .fa {
|
|
right: 8px;
|
|
}
|