39301a744e
- remove tiled preview corners; merge with misc.scss - sync general label styles from libadwaita - use variables in ibus css - remove redundant spacing variable as its equal to padding - use more global styles in screenshot css - tidy up entry styles - cleanup the networks dialog stylesheet - make colours less dark - cleanup the popover stylesheet - cleanup the mixins for tiles and overview icons - adjust the button style definitions on checked style - add osd button definitions Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2172>
37 lines
1.1 KiB
SCSS
37 lines
1.1 KiB
SCSS
// IBus Candidate Popup
|
|
|
|
.candidate-popup-boxpointer {
|
|
@extend .popup-menu-boxpointer;
|
|
}
|
|
|
|
.candidate-popup-content {
|
|
padding: $base_padding;
|
|
spacing: $base_padding;
|
|
@extend .popup-menu-content;
|
|
}
|
|
|
|
.candidate-index {
|
|
padding: 0;
|
|
padding-right: $base_padding;
|
|
color: $insensitive_fg_color;
|
|
}
|
|
|
|
.candidate-box {
|
|
padding: $base_padding $base_padding*2 $base_padding $base_padding*2;
|
|
border-radius: $base_border_radius;
|
|
&:selected { background-color: $selected_bg_color; color: $selected_fg_color; }
|
|
&:hover { background-color: $hover_bg_color; color: $hover_fg_color; }
|
|
}
|
|
|
|
.candidate-page-button-box {
|
|
height: 2em;
|
|
.vertical & { padding-top: $base_padding*2; }
|
|
.horizontal & { padding-left: $base_padding*2; }
|
|
}
|
|
|
|
.candidate-page-button { padding: $base_padding;}
|
|
|
|
.candidate-page-button-previous { border-radius: $base_border_radius 0px 0px $base_border_radius; border-right-width: 0;box-shadow: none;}
|
|
.candidate-page-button-next { border-radius: 0px $base_border_radius $base_border_radius 0px;box-shadow: none;}
|
|
.candidate-page-button-icon { icon-size: $base_icon_size; }
|