Files
SweetTokyoNight/gtk-3.0/widgets/_popovers.scss
2018-08-10 21:21:51 -05:00

46 lines
883 B
SCSS

/***************
* Popovers *
***************/
popover.background {
padding: 2px;
border-radius: 5px;
background: if( $variant == 'light', linear-gradient(to bottom, #fff 20%, #fff), linear-gradient(to bottom, lighten($bg_color, 2%), darken($bg_color, 2%)));
.csd &, & { border: 1px solid $borders_color; }
box-shadow: 0 4px 6px $menu_shadow_color;
&:backdrop {
background-color: $backdrop_bg_color;
box-shadow: none;
}
> list,
> .view,
> toolbar {
border-style: none;
background-color: transparent;
}
.csd &, & {
&.touch-selection,
&.magnifier {
@extend %osd;
border: 1px solid transparentize(white, 0.9);
button { @extend %osd_button };
}
&.osd { @extend %osd; }
}
separator { margin: 3px; }
list separator { margin: 0px; }
checkbutton,
radiobutton { @extend modelbutton.flat; }
}