_candidate-popup.scss
ASCII text
1
// IBus Candidate Popup
2
3
.candidate-popup-boxpointer {
4
@extend .popup-menu-boxpointer;
5
}
6
7
.candidate-popup-content {
8
padding: 0.5em;
9
spacing: 0.3em;
10
}
11
12
.candidate-index {
13
padding: 0 0.5em 0 0;
14
color: darken($fg_color,10%);
15
}
16
17
.candidate-box {
18
padding: 0.3em 0.5em 0.3em 0.5em;
19
border-radius: $base_border_radius;
20
&:selected,&:hover { background-color: $selected_bg_color; color: $selected_fg_color; }
21
}
22
23
.candidate-page-button-box {
24
height: 2em;
25
.vertical & { padding-top: 0.5em; }
26
.horizontal & { padding-left: 0.5em; }
27
}
28
29
.candidate-page-button {
30
padding: 4px;
31
}
32
33
.candidate-page-button-previous { border-radius: $base_border_radius 0px 0px $base_border_radius; border-right-width: 0; }
34
.candidate-page-button-next { border-radius: 0px $base_border_radius $base_border_radius 0px; }
35
.candidate-page-button-icon { icon-size: 1em; }