forked from AuroraMiddleware/gtk
HC: insensitive styling for views.
This commit is contained in:
parent
6eb9b57e72
commit
c4524623a9
@ -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; }
|
||||
|
@ -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,
|
||||
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user