Adds a padding around windows and dialogs to make them resizable

This commit is contained in:
Hombre
2016-12-16 01:41:35 +01:00
parent 1901f3a440
commit 11dfc71775

View File

@@ -46,17 +46,22 @@ window.background {
} }
headerbar { headerbar {
box-shadow: none;
background-color: #262626; background-color: #262626;
padding: 3px; padding: 0;
margin: 0; margin: 0;
border-radius: 0; border-radius: 0;
border-style: none none solid none;
background-image: none; background-image: none;
} }
window > decoration { window > decoration, dialog > decoration {
box-shadow: none; box-shadow: none;
margin: 0px; margin: 0px;
background-color: #484848; border-style: none;
border-radius: 0;
padding: 3px;
background-color: #262626;
} }
dialog.background { dialog.background {