| 1 | /******** |
| 2 | * Misc * |
| 3 | ********/ |
| 4 | //content view (grid/list) |
| 5 | .content-view { |
| 6 | background-color: darken($bg_color,7%); |
| 7 | |
| 8 | &:hover { -gtk-icon-effect: highlight; } |
| 9 | |
| 10 | &:backdrop { background-color: darken($bg_color,7%); } |
| 11 | |
| 12 | rubberband { @extend rubberband; } |
| 13 | } |
| 14 | |
| 15 | .scale-popup { |
| 16 | .osd & { @extend %osd; } |
| 17 | |
| 18 | .osd & button.flat { //FIXME: quick hack, redo properly |
| 19 | border-style: none; |
| 20 | border-radius: 5px; |
| 21 | } |
| 22 | |
| 23 | button { // +/- buttons on GtkVolumeButton popup |
| 24 | &:hover { |
| 25 | @extend %undecorated_button; |
| 26 | background-color: transparentize($fg_color,0.9); |
| 27 | border-radius: 5px; |
| 28 | } |
| 29 | |
| 30 | &:backdrop { &:hover, &:disabled, & { @extend %undecorated_button; }} |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | /************ |
| 35 | * Assistant * |
| 36 | *************/ |
| 37 | |
| 38 | assistant { |
| 39 | |
| 40 | border-bottom-left-radius:4px; |
| 41 | border-bottom-right-radius:4px; |
| 42 | |
| 43 | .sidebar { |
| 44 | background-color: $base_color; |
| 45 | border-top: 1px solid $borders_color; |
| 46 | |
| 47 | border-bottom-left-radius:4px; |
| 48 | |
| 49 | &:backdrop { |
| 50 | background-color: $backdrop_base_color; |
| 51 | border-color: $backdrop_borders_color; |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | &.csd .sidebar { border-top-style: none; } |
| 56 | |
| 57 | .sidebar GtkLabel, |
| 58 | .sidebar label { padding: 6px 12px; } |
| 59 | |
| 60 | .sidebar GtkLabel.highlight, |
| 61 | .sidebar label.highlight { background-color: mix($bg_color, $fg_color, 80%); } |
| 62 | } |