Merge pull request #307 from megax/patch2

GtkPaned css code converted sass format.
pull/309/head
Khurshid Alam 2016-04-05 22:45:14 +05:30
commit 7fd31b8edf
1 changed files with 21 additions and 24 deletions

View File

@ -83,30 +83,27 @@
GtkPaned {
-GtkPaned-handle-size: 1;
-gtk-icon-source: none;
margin: 0 $spacing;
&:dir(rtl) {
margin-right: 0;
margin-left: $spacing;
}
.pane-separator { background-color: shade($bg_color, .9); }
&.wide {
-GtkPaned-handle-size: 4;
margin: 0;
.pane-separator {
background-color: transparent;
border-style: none solid;
border-color: shade($bg_color, .9);
border-width: 1px;
}
&.vertical .pane-separator { border-style: solid none; }
}
}
GtkPaned:dir(rtl) {
margin-right: 0;
margin-left: $spacing;
}
GtkPaned .pane-separator { background-color: shade($bg_color, .9); }
GtkPaned.wide {
-GtkPaned-handle-size: 4;
margin: 0;
}
GtkPaned.wide .pane-separator {
background-color: transparent;
border-style: none solid;
border-color: shade($bg_color, .9);
border-width: 1px;
}
GtkPaned.wide.vertical .pane-separator { border-style: solid none; }
}