9726aba257
This fixes the focus style of the regular entry to match with the GTK one. This will allow removing a number of overrides of entries for normalization. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/931
23 lines
546 B
SCSS
23 lines
546 B
SCSS
/* Entries */
|
|
|
|
StEntry {
|
|
border-radius: $base_border_radius;
|
|
padding: 4px;
|
|
border-width: 1px;
|
|
color: $fg_color;
|
|
@include entry(normal);
|
|
//&:hover { @include entry(hover);}
|
|
&:focus { @include entry(focus);}
|
|
&:insensitive { @include entry(insensitive);}
|
|
selection-background-color: $selected_bg_color;
|
|
selected-color: $selected_fg_color;
|
|
StIcon.capslock-warning {
|
|
icon-size: 16px;
|
|
warning-color: $warning_color;
|
|
padding: 0 4px;
|
|
}
|
|
StIcon.peek-password {
|
|
icon-size: $base_icon_size;
|
|
padding: 0 4px;
|
|
}
|
|
} |