Adwaita: try to make scrollbars near paned separator usable.

This commit is contained in:
Lapo Calamandrei 2014-06-14 19:06:26 +02:00
parent 4406386ad9
commit fd53732035
3 changed files with 13 additions and 3 deletions

View File

@ -1659,7 +1659,11 @@ GtkFileChooserDialog .dialog-action-box {
GtkPaned {
// This is actually the invisible area of the paned separator, not a margin...
margin: 16px; //drag area of the separator
margin: 0 16px 16px 0; //drag area of the separator
&:dir(rtl) {
margin-right: 0;
margin-left: 16px;
}
}
.pane-separator {

View File

@ -2172,7 +2172,10 @@ GtkFileChooserDialog .dialog-action-box {
color: #383e3e; }
GtkPaned {
margin: 16px; }
margin: 0 16px 16px 0; }
GtkPaned:dir(rtl) {
margin-right: 0;
margin-left: 16px; }
.pane-separator {
background-image: linear-gradient(to bottom, #1c1f1f); }

View File

@ -2170,7 +2170,10 @@ GtkFileChooserDialog .dialog-action-box {
color: #dfdfdf; }
GtkPaned {
margin: 16px; }
margin: 0 16px 16px 0; }
GtkPaned:dir(rtl) {
margin-right: 0;
margin-left: 16px; }
.pane-separator {
background-image: linear-gradient(to bottom, #a1a1a1); }