Changeset View
Changeset View
Standalone View
Standalone View
src/gtk3/widgets/_progressbar.scss
| Show All 19 Lines | |||||
| 20 | color: gtkalpha(gtk("@theme_button_foreground_normal"), 0.3); | 20 | color: gtkalpha(gtk("@theme_button_foreground_normal"), 0.3); | ||
| 21 | 21 | | |||
| 22 | trough { | 22 | trough { | ||
| 23 | border: 0px solid transparent; | 23 | border: 0px solid transparent; | ||
| 24 | border-radius: $r; | 24 | border-radius: $r; | ||
| 25 | background-color: gtkalpha(gtk("@theme_button_foreground_normal"),0.3); | 25 | background-color: gtkalpha(gtk("@theme_button_foreground_normal"),0.3); | ||
| 26 | } | 26 | } | ||
| 27 | 27 | | |||
| 28 | &:backdrop trough { background-color: gtkalpha("@theme_button_foreground_backdrop",0.3); } // looks like states are not passed to the trough component here | 28 | &:backdrop trough { background-color: gtkalpha(gtk("@theme_button_foreground_backdrop"),0.3); } // looks like states are not passed to the trough component here | ||
| 29 | 29 | | |||
| 30 | progress { | 30 | progress { | ||
| 31 | background-color: gtk("@theme_selected_bg_color"); | 31 | background-color: gtk("@theme_selected_bg_color"); | ||
| 32 | border: 0px solid transparent; | 32 | border: 0px solid transparent; | ||
| 33 | border-radius: 3px; | 33 | border-radius: 3px; | ||
| 34 | box-shadow: none; //needed for clipping | 34 | box-shadow: none; //needed for clipping | ||
| 35 | } | 35 | } | ||
| 36 | 36 | | |||
| Show All 18 Lines | 54 | &:focus, & { | |||
| 55 | background-color: gtkalpha(gtk("@theme_selected_bg_color"),0.25); | 55 | background-color: gtkalpha(gtk("@theme_selected_bg_color"),0.25); | ||
| 56 | } | 56 | } | ||
| 57 | } | 57 | } | ||
| 58 | } | 58 | } | ||
| 59 | &.trough { | 59 | &.trough { | ||
| 60 | background-color: $trough_color; | 60 | background-color: $trough_color; | ||
| 61 | &:selected { | 61 | &:selected { | ||
| 62 | &:focus, & { | 62 | &:focus, & { | ||
| 63 | background-color: gtkalpha("@theme_selected_fg_color",0.3); | 63 | background-color: gtkalpha(gtk("@theme_selected_fg_color"),0.3); | ||
| 64 | } | 64 | } | ||
| 65 | } | 65 | } | ||
| 66 | } | 66 | } | ||
| 67 | } | 67 | } | ||
| 68 | 68 | | |||
| 69 | /************* | 69 | /************* | ||
| 70 | * Level Bar * | 70 | * Level Bar * | ||
| 71 | *************/ | 71 | *************/ | ||
| ▲ Show 20 Lines • Show All 61 Lines • ▼ Show 20 Line(s) | 127 | &.full { | |||
| 133 | } | 133 | } | ||
| 134 | } | 134 | } | ||
| 135 | 135 | | |||
| 136 | &.empty { | 136 | &.empty { | ||
| 137 | background-color: gtkalpha(gtk("@theme_button_foreground_normal"),0.3); | 137 | background-color: gtkalpha(gtk("@theme_button_foreground_normal"),0.3); | ||
| 138 | border-color: transparent; | 138 | border-color: transparent; | ||
| 139 | box-shadow: none; | 139 | box-shadow: none; | ||
| 140 | &:backdrop { | 140 | &:backdrop { | ||
| 141 | background-color: gtkalpha("@theme_button_foreground_insensitive",0.3); | 141 | background-color: gtkalpha(gtk("@theme_button_foreground_insensitive"),0.3); | ||
| 142 | } | 142 | } | ||
| 143 | } | 143 | } | ||
| 144 | } | 144 | } | ||
| 145 | } | 145 | } | ||