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

44 lines
1.0 KiB
SCSS
Raw Normal View History

2014-11-23 17:06:45 +00:00
@import "functions";
@import "global";
/**************
! Window frame
***************/
.window-frame {
2014-11-13 19:59:02 +00:00
border: none;
border-radius: $roundness $roundness 0 0;
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23),
0 0 0 1px mix(shade($titlebar_bg_color, 0.7), $titlebar_fg_color, 0.21);
/* this is used for the resize cursor area */
2014-11-13 19:59:02 +00:00
margin: $spacing * 3;
&:backdrop {
2014-11-13 19:59:02 +00:00
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24),
0 0 0 1px mix(shade($titlebar_bg_color, 0.7), $titlebar_fg_color, 0.12);
}
&.tiled { border-radius: 0; }
&.csd {
&.popup {
border-radius: 0;
2014-11-13 19:59:02 +00:00
box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23),
0 0 0 1px mix(shade($titlebar_bg_color, 0.7), $titlebar_fg_color, 0.21);
}
&.tooltip {
2014-11-13 19:59:02 +00:00
border-radius: $roundness;
box-shadow: none;
}
&.message-dialog {
2014-11-13 19:59:02 +00:00
border-radius: $roundness;
box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23),
0 0 0 1px mix(shade($titlebar_bg_color, 0.7), $titlebar_fg_color, 0.21);
}
}
}