44 lines
961 B
SCSS
Raw Normal View History

2021-04-08 22:59:05 +08:00
// Search entry
2021-05-24 19:34:56 +08:00
%search-entry, #overview .search-entry {
2021-04-08 22:59:05 +08:00
width: 320px;
2021-04-13 19:42:12 +08:00
min-height: $menuitem_size;
2021-05-09 22:49:36 +08:00
padding: 0 10px !important;
background-clip: padding-box;
2021-04-08 22:59:05 +08:00
color: $light_hint_fg_color;
caret-color: $light_alt_fg_color;
selection-background-color: $light_track_color;
selected-color: $light_alt_fg_color;
@include search_entry(normal, $fc:$light_track_color);
2021-07-18 21:20:59 +08:00
box-shadow: none;
2021-04-08 22:59:05 +08:00
2021-05-09 22:49:36 +08:00
&:hover {
@include search_entry(hover, $fc:$light_alt_fg_color);
color: $light_alt_fg_color;
2021-07-18 21:20:59 +08:00
box-shadow: none;
2021-05-09 22:49:36 +08:00
}
2021-04-08 22:59:05 +08:00
&:focus {
@include search_entry(focus, $fc:$light_alt_fg_color);
color: $light_alt_fg_color;
2021-07-18 21:20:59 +08:00
box-shadow: none;
2021-04-08 22:59:05 +08:00
}
.search-entry-icon {
icon-size: 16px;
padding: 0 0;
color: $light_hint_fg_color;
}
&:hover, &:focus {
.search-entry-icon { color: $light_alt_fg_color; }
}
&:insensitive {
color: $light_disabled_fg_color;
}
StLabel.hint-text {
color: $light_hint_fg_color;
}
}