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:
Matthias Clasen 2019-03-14 20:03:34 -04:00
parent 470720e11a
commit d3cecd65a5
2 changed files with 5 additions and 0 deletions

View File

@ -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);

View File

@ -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;