gtk-3.0/widgets/_popovers.scss 788 B raw
1
/***************
2
 * Popovers   *
3
 ***************/
4
5
popover.background {
6
  padding: 2px;
7
  border-radius: 5px;
8
  background: $main_dark_color;
9
10
  .csd &, & { border: 1px solid $borders_color; }
11
12
  box-shadow: 0 4px 6px $menu_shadow_color;
13
  
14
  &:backdrop {
15
    background-color: $backdrop_bg_color;
16
    box-shadow: none;
17
  }
18
19
  > list,
20
  > .view,
21
  > toolbar {
22
    border-style: none;
23
    background-color: transparent;
24
  }
25
26
  .csd &, & {
27
    &.touch-selection,
28
    &.magnifier {
29
      @extend %osd;
30
31
      border: 1px solid transparentize(white, 0.9);
32
33
      button { @extend %osd_button };
34
    }
35
36
    &.osd { @extend %osd; }
37
  }
38
39
  separator { margin: 3px; }
40
41
  list separator { margin: 0px; }
42
43
  list row { padding: 8px; }
44
45
  checkbutton,
46
  radiobutton { @extend modelbutton.flat; }
47
}