High Contrast: fix drop states

https://bugzilla.gnome.org/show_bug.cgi?id=763823
This commit is contained in:
Jakub Steiner
2016-03-18 15:47:30 +01:00
parent fe31c5f4fd
commit ad9865126a
3 changed files with 31 additions and 8 deletions

View File

@ -2874,11 +2874,19 @@ messagedialog { // Message Dialog styling
}
}
GtkFileChooserDialog {
filechooser {
.dialog-action-box {
border-top: 1px solid $borders_color;
&:backdrop { border-top-color: $backdrop_borders_color; }
}
#pathbarbox { border-bottom: 1px solid $bg_color; }
}
filechooserbutton:drop(active) {
box-shadow: none;
border-color: transparent;
}
/***********
@ -3347,7 +3355,8 @@ button.circular { // FIXME: aggregate to buttons
*:drop(active):focus,
*:drop(active) {
border: 1px solid black;
border-color: $fg_color;
box-shadow: inset 0 0 0 2px fg_color;
}
stackswitcher button.text-button {

View File

@ -3060,10 +3060,16 @@ messagedialog.csd {
border-left-style: none;
border-bottom-left-radius: 7px; }
GtkFileChooserDialog .dialog-action-box {
filechooser .dialog-action-box {
border-top: 1px solid gray; }
GtkFileChooserDialog .dialog-action-box:backdrop {
filechooser .dialog-action-box:backdrop {
border-top-color: #737373; }
filechooser #pathbarbox {
border-bottom: 1px solid #000; }
filechooserbutton:drop(active) {
box-shadow: none;
border-color: transparent; }
/***********
* Sidebar *
@ -3583,7 +3589,8 @@ button.circular {
*:drop(active):focus,
*:drop(active) {
border: 1px solid black; }
border-color: #fff;
box-shadow: inset 0 0 0 2px fg_color; }
stackswitcher button.text-button {
min-width: 100px; }

View File

@ -3067,10 +3067,16 @@ messagedialog.csd {
border-left-style: none;
border-bottom-left-radius: 7px; }
GtkFileChooserDialog .dialog-action-box {
filechooser .dialog-action-box {
border-top: 1px solid gray; }
GtkFileChooserDialog .dialog-action-box:backdrop {
filechooser .dialog-action-box:backdrop {
border-top-color: #8d8d8d; }
filechooser #pathbarbox {
border-bottom: 1px solid #fff; }
filechooserbutton:drop(active) {
box-shadow: none;
border-color: transparent; }
/***********
* Sidebar *
@ -3590,7 +3596,8 @@ button.circular {
*:drop(active):focus,
*:drop(active) {
border: 1px solid black; }
border-color: #000;
box-shadow: inset 0 0 0 2px fg_color; }
stackswitcher button.text-button {
min-width: 100px; }