mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
password entry: Make the Caps Lock icon less prominent
Set a style class, and theme the Caps Lock icon to be less promient, so it does not appear clickable.
This commit is contained in:
parent
470720e11a
commit
d3cecd65a5
@ -118,6 +118,7 @@ gtk_password_entry_init (GtkPasswordEntry *entry)
|
||||
|
||||
priv->icon = gtk_image_new_from_icon_name ("caps-lock-symbolic");
|
||||
gtk_widget_set_tooltip_text (priv->icon, _("Caps Lock is on"));
|
||||
gtk_style_context_add_class (gtk_widget_get_style_context (priv->icon), "caps-lock-indicator");
|
||||
gtk_widget_set_cursor (priv->icon, gtk_widget_get_cursor (priv->entry));
|
||||
gtk_container_add (GTK_CONTAINER (priv->box), priv->icon);
|
||||
|
||||
|
@ -338,6 +338,10 @@ entry {
|
||||
&:backdrop { color: mix($backdrop_fg_color, $backdrop_base_color, 80%); }
|
||||
}
|
||||
|
||||
&.password image.caps-lock-indicator {
|
||||
color: mix($backdrop_fg_color, $backdrop_base_color, 80%);
|
||||
}
|
||||
|
||||
&:drop(active) {
|
||||
&:focus, & {
|
||||
border-color: $drop_target_color;
|
||||
|
Loading…
Reference in New Issue
Block a user