gtk-3.0/widgets/_app-notifications.scss 537 B raw
1
/*********************
2
 * App Notifications *
3
 *********************/
4
.app-notification,
5
.app-notification.frame {
6
  @extend %osd;
7
8
  padding: 10px;
9
  border-radius: 0 0 5px 5px;
10
  background-color: $osd_bg_color;
11
  background-image: linear-gradient(to bottom, transparentize(black, 0.8),
12
                                               transparent 2px);
13
  background-clip: padding-box;
14
15
  &:backdrop {
16
    background-image: none;
17
    transition: $backdrop_transition;
18
  }
19
20
  button { @extend %osd_button; }
21
22
  border { border: none; }
23
}