Changeset View
Changeset View
Standalone View
Standalone View
src/gtk3/widgets/_scale.scss
| Show All 27 Lines | 23 | &:hover { | |||
|---|---|---|---|---|---|
| 28 | &:backdrop { | 28 | &:backdrop { | ||
| 29 | background-color: gtk("@theme_button_background_backdrop"); | 29 | background-color: gtk("@theme_button_background_backdrop"); | ||
| 30 | border-color: gtk("@theme_button_decoration_hover_insensitive"); | 30 | border-color: gtk("@theme_button_decoration_hover_insensitive"); | ||
| 31 | } | 31 | } | ||
| 32 | } | 32 | } | ||
| 33 | &:disabled { | 33 | &:disabled { | ||
| 34 | border-style: solid; // needed for double marks scales or they'll get | 34 | border-style: solid; // needed for double marks scales or they'll get | ||
| 35 | border-radius: 50%; // overridden | 35 | border-radius: 50%; // overridden | ||
| 36 | background-color: gtkalpha("@theme_button_background_insensitive", 100.0); | 36 | background-color: gtkalpha(gtk("@theme_button_background_insensitive"), 100.0); | ||
| 37 | opacity: 1.0; | 37 | opacity: 1.0; | ||
| 38 | border-color: gtk("@insensitive_borders"); | 38 | border-color: gtk("@insensitive_borders"); | ||
| 39 | &:backdrop { | 39 | &:backdrop { | ||
| 40 | background-color: gtkalpha("@theme_button_background_backdrop_insensitive", 100.0); | 40 | background-color: gtkalpha(gtk("@theme_button_background_backdrop_insensitive"), 100.0); | ||
| 41 | border-color: gtk("@unfocused_insensitive_borders"); | 41 | border-color: gtk("@unfocused_insensitive_borders"); | ||
| 42 | } | 42 | } | ||
| 43 | } | 43 | } | ||
| 44 | &:active { | 44 | &:active { | ||
| 45 | border: 2px solid gtk("@theme_button_decoration_focus"); | 45 | border: 2px solid gtk("@theme_button_decoration_focus"); | ||
| 46 | &:backdrop { | 46 | &:backdrop { | ||
| 47 | background-color: gtk("@theme_button_background_normal"); | 47 | background-color: gtk("@theme_button_background_normal"); | ||
| 48 | border-color: gtk("@theme_button_decoration_focus_backdrop"); | 48 | border-color: gtk("@theme_button_decoration_focus_backdrop"); | ||
| ▲ Show 20 Lines • Show All 51 Lines • Show Last 20 Lines | |||||