4de96ac737
- simplified drawing functions - refactored button drawing - dropped arrow from all popovers - cleaned out some legacy css - fixed many of the issues in #4969 Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2150>
36 lines
858 B
SCSS
36 lines
858 B
SCSS
// IBus Candidate Popup
|
|
|
|
.candidate-popup-boxpointer {
|
|
@extend .popup-menu-boxpointer;
|
|
}
|
|
|
|
.candidate-popup-content {
|
|
padding: 0.5em;
|
|
spacing: 0.3em;
|
|
}
|
|
|
|
.candidate-index {
|
|
padding: 0 0.5em 0 0;
|
|
color: darken($fg_color,10%);
|
|
}
|
|
|
|
.candidate-box {
|
|
padding: 0.3em 0.5em 0.3em 0.5em;
|
|
border-radius: $base_border_radius;
|
|
&:selected,&:hover { background-color: $selected_bg_color; color: $selected_fg_color; }
|
|
}
|
|
|
|
.candidate-page-button-box {
|
|
height: 2em;
|
|
.vertical & { padding-top: 0.5em; }
|
|
.horizontal & { padding-left: 0.5em; }
|
|
}
|
|
|
|
.candidate-page-button {
|
|
padding: 4px;
|
|
}
|
|
|
|
.candidate-page-button-previous { border-radius: $base_border_radius 0px 0px $base_border_radius; border-right-width: 0; }
|
|
.candidate-page-button-next { border-radius: 0px $base_border_radius $base_border_radius 0px; }
|
|
.candidate-page-button-icon { icon-size: 1em; }
|