2019-12-18 16:25:03 -05:00
|
|
|
/* Entries */
|
|
|
|
|
|
|
|
StEntry {
|
2019-12-19 10:38:27 -05:00
|
|
|
border-radius: $base_border_radius;
|
2020-01-21 13:31:53 -05:00
|
|
|
padding: 8px;
|
2019-12-19 10:38:27 -05:00
|
|
|
color: $fg_color;
|
2022-02-07 13:22:40 -05:00
|
|
|
|
2019-12-19 10:38:27 -05:00
|
|
|
@include entry(normal);
|
2022-02-07 13:22:40 -05:00
|
|
|
&:hover { @include entry(hover);}
|
2020-01-17 06:17:59 -05:00
|
|
|
&:focus { @include entry(focus);}
|
2019-12-19 10:38:27 -05:00
|
|
|
&:insensitive { @include entry(insensitive);}
|
2022-02-07 13:22:40 -05:00
|
|
|
|
2019-12-19 10:38:27 -05:00
|
|
|
selection-background-color: $selected_bg_color;
|
|
|
|
selected-color: $selected_fg_color;
|
2022-02-07 13:22:40 -05:00
|
|
|
|
2019-12-19 10:38:27 -05:00
|
|
|
StIcon.capslock-warning {
|
|
|
|
icon-size: 16px;
|
|
|
|
warning-color: $warning_color;
|
|
|
|
padding: 0 4px;
|
|
|
|
}
|
2022-02-07 13:22:40 -05:00
|
|
|
|
2019-12-19 10:38:27 -05:00
|
|
|
StIcon.peek-password {
|
|
|
|
icon-size: $base_icon_size;
|
|
|
|
padding: 0 4px;
|
|
|
|
}
|
2022-02-07 13:22:40 -05:00
|
|
|
|
2020-01-21 13:31:53 -05:00
|
|
|
StLabel.hint-text {
|
|
|
|
margin-left: 2px;
|
|
|
|
color: transparentize($fg_color, 0.3);
|
|
|
|
}
|
2020-01-20 09:27:55 -05:00
|
|
|
}
|