Merge branch 'wip/jimmac/error-labels-insensitive-gtk3' into 'gtk-3-24'

Adwaita: error labels insensitive & backdrop states

See merge request GNOME/gtk!2451
This commit is contained in:
Jakub Steiner 2020-08-18 11:04:14 +00:00
commit 3caa5bd4fe
3 changed files with 6 additions and 6 deletions

View File

@ -208,8 +208,8 @@ label {
&.error {
color: $error_color;
&:disabled { color: $insensitive_fg_color; }
&:disabled:backdrop { color: $backdrop_insensitive_color; }
&:disabled { color: transparentize($error_color,0.5); }
&:disabled:backdrop { color: transparentize($error_color,0.6); }
}
}

View File

@ -59,9 +59,9 @@ button label:disabled:backdrop { color: inherit; }
label.error { color: #cc0000; }
label.error:disabled { color: #919190; }
label.error:disabled { color: rgba(204, 0, 0, 0.5); }
label.error:disabled:backdrop { color: #5b5b5b; }
label.error:disabled:backdrop { color: rgba(204, 0, 0, 0.4); }
.dim-label, .titlebar:not(headerbar) .subtitle, headerbar .subtitle, label.separator { opacity: 0.55; text-shadow: none; }

View File

@ -59,9 +59,9 @@ button label:disabled:backdrop { color: inherit; }
label.error { color: #cc0000; }
label.error:disabled { color: #929595; }
label.error:disabled { color: rgba(204, 0, 0, 0.5); }
label.error:disabled:backdrop { color: #d4cfca; }
label.error:disabled:backdrop { color: rgba(204, 0, 0, 0.4); }
.dim-label, .titlebar:not(headerbar) .subtitle, headerbar .subtitle, label.separator { opacity: 0.55; text-shadow: none; }