2019-11-12 16:00:21 +00:00
|
|
|
.subs {
|
|
|
|
padding: 0.25rem;
|
|
|
|
margin: 2.5rem 0;
|
|
|
|
z-index: z('taxo');
|
|
|
|
|
|
|
|
&__title {
|
|
|
|
font-weight: 700;
|
|
|
|
font-family: $taxo_titie_font;
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
@include themify($themes) {
|
|
|
|
color: themed('taxo-title-color');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__form {
|
|
|
|
@include flexbox();
|
|
|
|
@include align-items(center);
|
2019-11-13 08:06:51 +00:00
|
|
|
margin-bottom: 0.25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__icon {
|
|
|
|
padding: 0.3rem;
|
|
|
|
border-top-left-radius: 0.25rem;
|
|
|
|
border-bottom-left-radius: 0.25rem;
|
|
|
|
|
|
|
|
@include flexbox();
|
|
|
|
@include align-items(center);
|
|
|
|
@include themify($themes) {
|
|
|
|
color: themed("search-icon-color");
|
|
|
|
background-color: themed("search-background-color");
|
|
|
|
}
|
2019-11-12 16:00:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__input {
|
|
|
|
height: 32px;
|
|
|
|
width: 100%;
|
|
|
|
padding: 0.25rem;
|
2019-11-13 08:06:51 +00:00
|
|
|
border-top-right-radius: 0.25rem;
|
|
|
|
border-bottom-right-radius: 0.25rem;
|
2019-11-12 16:00:21 +00:00
|
|
|
margin-right: 1rem;
|
2019-11-13 08:06:51 +00:00
|
|
|
border: none;
|
2019-11-12 16:00:21 +00:00
|
|
|
outline: none;
|
2019-11-13 08:06:51 +00:00
|
|
|
@include themify($themes) {
|
|
|
|
color: themed("search-color");
|
|
|
|
background-color: themed("search-background-color");
|
|
|
|
@include input-placeholder {
|
|
|
|
font-family: $search_placeholder_font;
|
|
|
|
color: themed("search-placeholder-color");
|
|
|
|
}
|
|
|
|
}
|
2019-11-12 16:00:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__button {
|
2019-11-13 08:06:51 +00:00
|
|
|
border-radius: 0.125rem;
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
|
|
|
height: 25px;
|
|
|
|
width: auto;
|
|
|
|
min-width: 60px;
|
|
|
|
cursor: pointer;
|
2019-11-12 16:00:21 +00:00
|
|
|
|
2019-11-13 08:06:51 +00:00
|
|
|
@include transition(all, 0.25s, ease);
|
|
|
|
@include themify($themes) {
|
|
|
|
color: themed('subs-button-color');
|
|
|
|
background-color:themed('subs-button-background-color');
|
|
|
|
@include on-event {
|
|
|
|
background-color:themed('subs-button-hover-background-color');
|
|
|
|
}
|
|
|
|
}
|
2019-11-12 16:00:21 +00:00
|
|
|
}
|
|
|
|
}
|