gtk-4.0/widgets/_action-bars.scss 518 B raw
1
/***************
2
* Action bars *
3
***************/
4
5
.action-bar, actionbar > revealer > box {
6
  background-color: darken($bg_color, 10%);
7
  border: solid $borders_color;
8
  border-width: 1px 0 0 0;
9
  color: $fg_color;
10
  box-shadow: none;
11
12
  &:backdrop {
13
    background-color: darken($backdrop_bg_color, 10%);
14
    box-shadow: none;
15
  }
16
17
  &:first-child {
18
    border-radius: 6px 6px 0px 0px;
19
    border-width: 1px 1px 0px 1px;
20
  }
21
22
  &:last-child {
23
    border-radius: 0 0 6px 6px;
24
    border-width: 0px 1px 1px 1px;
25
  }
26
}