numix-gtk-theme/gtk-3.0/scss/widgets/_window.scss

58 lines
1.2 KiB
SCSS
Raw Normal View History

2014-11-23 17:06:45 +00:00
/**************
! Window frame
***************/
@include exports("window") {
2015-08-06 19:39:22 +00:00
%window {
box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22),
0 0 0 1px $wm_border_focused;
2015-01-23 18:54:03 +00:00
2015-08-06 19:39:22 +00:00
&:backdrop {
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23),
0 0 0 1px $wm_border_unfocused;
}
}
2015-01-23 18:54:03 +00:00
2015-08-06 19:39:22 +00:00
.window-frame {
@extend %window;
2015-01-23 18:54:03 +00:00
2015-08-06 19:39:22 +00:00
border: none;
border-radius: $roundness $roundness 0 0;
2015-08-06 19:39:22 +00:00
/* this is used for the resize cursor area */
margin: $spacing * 3;
2015-08-06 19:39:22 +00:00
&.tiled { border-radius: 0; }
2015-08-06 21:53:14 +00:00
&.solid-csd {
border-radius: 0;
margin: 1px;
background-color: $bg_color;
box-shadow: none;
}
2015-08-06 19:39:22 +00:00
&.csd {
&.popup {
@extend %window;
2015-01-23 18:54:03 +00:00
2015-08-06 19:39:22 +00:00
border-radius: 0;
}
2015-08-06 19:39:22 +00:00
&.tooltip {
border-radius: $roundness;
box-shadow: none;
}
2015-08-06 19:39:22 +00:00
&.message-dialog {
@extend %window;
2015-01-23 18:54:03 +00:00
2015-08-06 19:39:22 +00:00
border-radius: $roundness;
}
}
2015-08-06 21:53:14 +00:00
&.ssd {
&.maximized { border-radius: 0; }
}
2015-08-06 19:39:22 +00:00
}
}