Files
numix-blue-gtk-theme/gtk-3.0/scss/widgets/_window.scss
T

58 lines
1.2 KiB
SCSS
Raw Normal View History

2014-11-23 22:36:45 +05:30
/**************
! Window frame
***************/
@include exports("window") {
2015-08-07 01:09:22 +05:30
%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-08-07 01:09:22 +05:30
&: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-24 00:24:03 +05:30
2015-08-07 01:09:22 +05:30
.window-frame {
@extend %window;
2015-01-24 00:24:03 +05:30
2015-08-07 01:09:22 +05:30
border: none;
border-radius: $roundness $roundness 0 0;
2015-01-24 00:24:03 +05:30
2015-08-07 01:09:22 +05:30
/* this is used for the resize cursor area */
margin: $spacing * 3;
2015-08-07 01:09:22 +05:30
&.tiled { border-radius: 0; }
2015-08-07 03:23:14 +05:30
&.solid-csd {
border-radius: 0;
margin: 1px;
background-color: $bg_color;
box-shadow: none;
}
2015-08-07 01:09:22 +05:30
&.csd {
&.popup {
@extend %window;
2015-01-24 00:24:03 +05:30
2015-08-07 01:09:22 +05:30
border-radius: 0;
}
2015-08-07 01:09:22 +05:30
&.tooltip {
border-radius: $roundness;
box-shadow: none;
}
2015-08-07 01:09:22 +05:30
&.message-dialog {
@extend %window;
2015-01-24 00:24:03 +05:30
2015-08-07 01:09:22 +05:30
border-radius: $roundness;
}
}
2015-08-07 03:23:14 +05:30
&.ssd {
&.maximized { border-radius: 0; }
}
2015-08-07 01:09:22 +05:30
}
}