gtk-4.0/widgets/_misc.scss 686 B raw
1
/********
2
 * Misc *
3
 ********/
4
//content view (grid/list)
5
.content-view {
6
  background-color: darken($bg_color,7%);
7
8
  &:hover {-gtk-icon-filter: brightness(1.2); }
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
}