1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- progressbar {
-
- &.horizontal {
- trough,
- progress { min-height: 6px; }
- }
- &.vertical {
- trough,
- progress { min-width: 6px; }
- }
- &.horizontal progress { margin: 0; }
- &.vertical progress { margin: 0; }
-
- font-size: smaller;
- color: transparentize($fg_color, 0.6);
- &:backdrop {
- box-shadow: none;
- transition: $backdrop_transition;
- }
- trough { @extend %scale_trough; }
- &:backdrop trough { @extend %scale_trough:backdrop; }
- progress {
- @extend %scale_highlight;
- }
- &:backdrop progress { @extend %scale_highlight:backdrop; }
- &.osd {
- min-width: 3px;
- min-height: 3px;
- background-color: transparent;
- trough {
- border-style: none;
- border-radius: 0;
- background-color: transparent;
- box-shadow: none;
- }
- progress {
- border-style: none;
- border-radius: 0;
- }
- }
- }
|