HC: insensitive styling for views.

This commit is contained in:
Lapo Calamandrei 2017-02-08 16:53:10 +01:00 committed by Matthias Clasen
parent 6eb9b57e72
commit c4524623a9
3 changed files with 10 additions and 0 deletions

View File

@ -95,6 +95,10 @@ $ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
color: $backdrop_fg_color;
background-color: $backdrop_base_color;
}
&:disabled {
color: $insensitive_fg_color;
background-color: $insensitive_bg_color;
}
&:selected,
&:selected:focus,
&:selected:hover { @extend %selected_items; }

View File

@ -92,6 +92,9 @@
.view:backdrop, textview text:backdrop, iconview:backdrop {
color: #fff;
background-color: #111; }
.view:disabled, textview text:disabled, iconview:disabled {
color: gray;
background-color: #070707; }
.rubberband,
rubberband,

View File

@ -92,6 +92,9 @@
.view:backdrop, textview text:backdrop, iconview:backdrop {
color: #000;
background-color: #fff; }
.view:disabled, textview text:disabled, iconview:disabled {
color: gray;
background-color: white; }
.rubberband,
rubberband,