mirror of
https://github.com/luneko/SweetTokyoNight.git
synced 2025-12-13 15:29:53 +01:00
29 lines
625 B
SCSS
29 lines
625 B
SCSS
/*********************
|
|
* App Notifications *
|
|
*********************/
|
|
.app-notification,
|
|
.app-notification.frame {
|
|
@extend %osd;
|
|
|
|
padding: 10px;
|
|
border-radius: 0 0 5px 5px;
|
|
background-color: $osd_bg_color;
|
|
background-image: linear-gradient(to bottom, transparentize(black, 0.8),
|
|
transparent 2px);
|
|
background-clip: padding-box;
|
|
|
|
&:backdrop {
|
|
background-image: none;
|
|
transition: $backdrop_transition;
|
|
}
|
|
|
|
button, button.flat {
|
|
@include button(osd);
|
|
&:hover {
|
|
background: lighten($osd_bg_color, 12%);
|
|
}
|
|
}
|
|
|
|
border { border: none; }
|
|
}
|