Skip to content

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lassekongo83 committed May 28, 2020
1 parent 09f9548 commit dfc4a28
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 11 deletions.
2 changes: 1 addition & 1 deletion gtk/src/Stilo/gtk-3.0/_colors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ $osd_insensitive_bg_color: transparentize(mix($osd_fg_color, opacify($osd_bg_col
$osd_insensitive_fg_color: mix($osd_fg_color, opacify($osd_bg_color, 1), 50%);
$osd_borders_color: transparentize(black, 0.3);

$sidebar_bg_color: if($variant == 'light', mix($bg_color, $base_color, 50%), $bg_color);
$sidebar_bg_color: if($variant == 'light', mix($bg_color, $base_color, 50%), $dark_fill);
$base_hover_color: transparentize($fg_color, 0.95);

$tooltip_borders_color: transparentize(white, 0.9);
Expand Down
7 changes: 5 additions & 2 deletions gtk/src/Stilo/gtk-3.0/_custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -608,12 +608,15 @@ XfdesktopIconView.view {
> separator {
background-image: none;
background-size: 0;
background-color: transparent;
background-color: if($variant == 'light', transparent, $base_color);
}
}

// sidebar
.sidebar-row + separator { background-color: transparent; }
@if $variant == 'dark' {
.sidebar-row + separator { background-color: transparent; }
}
.sidebar { background-color: $sidebar_bg_color; }

// Without this nautilus iconview grabs the bg_color
notebook,
Expand Down
8 changes: 5 additions & 3 deletions gtk/src/Stilo/gtk-3.0/gtk-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ filechooser .path-bar.linked > button:checked, filechooser .path-bar.linked > bu

filechooser .path-bar.linked > button:checked, filechooser .path-bar.linked > button:checked:hover, filechooser .path-bar.linked > button:checked:backdrop:hover, filechooser .path-bar.linked > button:checked:hover, filechooser .path-bar.linked > button:checked:hover:hover, filechooser .path-bar.linked > button:checked:hover:backdrop:hover, filechooser .path-bar.linked > button:active:hover, filechooser .path-bar.linked > button:active:hover:hover, filechooser .path-bar.linked > button:active:hover:backdrop:hover { color: #ffffff; }

filechooser #pathbarbox { background-color: #2b2e30; border-bottom: 1px solid #212425; }
filechooser #pathbarbox { background-color: #2e3132; border-bottom: 1px solid #212425; }

.path-bar button.text-button, .path-bar button.image-button, .path-bar button { padding-left: 4px; padding-right: 4px; }

Expand Down Expand Up @@ -2058,10 +2058,12 @@ XfdesktopIconView.view .rubberband { border-radius: 0; }

.nautilus-window .searchbar-container { margin-top: -1px; }

.nautilus-window paned > separator { background-image: none; background-size: 0; background-color: transparent; }
.nautilus-window paned > separator { background-image: none; background-size: 0; background-color: #383b3d; }

.nautilus-window .sidebar-row + separator { background-color: transparent; }

.nautilus-window .sidebar { background-color: #2e3132; }

.nautilus-window notebook scrolledwindow { background-color: #383b3d; }

.nautilus-window .titlebar button:not(.titlebutton) { border-color: transparent; background-color: transparent; background-image: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); text-shadow: none; -gtk-icon-shadow: none; }
Expand Down Expand Up @@ -2098,7 +2100,7 @@ XfdesktopIconView.view .rubberband { border-radius: 0; }

.thunar .standard-view { border-width: 0; }

.thunar .sidebar .view, .thunar .sidebar iconview { background-color: #2b2e30; }
.thunar .sidebar .view, .thunar .sidebar iconview { background-color: #2e3132; }

.thunar .sidebar .view:hover, .thunar .sidebar iconview:hover { background-color: rgba(246, 246, 247, 0.05); }

Expand Down
8 changes: 5 additions & 3 deletions gtk/src/Stilo/gtk-3.0/gtk-stiloetto-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ filechooser .path-bar.linked > button:checked, filechooser .path-bar.linked > bu

filechooser .path-bar.linked > button:checked, filechooser .path-bar.linked > button:checked:hover, filechooser .path-bar.linked > button:checked:backdrop:hover, filechooser .path-bar.linked > button:checked:hover, filechooser .path-bar.linked > button:checked:hover:hover, filechooser .path-bar.linked > button:checked:hover:backdrop:hover, filechooser .path-bar.linked > button:active:hover, filechooser .path-bar.linked > button:active:hover:hover, filechooser .path-bar.linked > button:active:hover:backdrop:hover { color: #ffffff; }

filechooser #pathbarbox { background-color: #2b2e30; border-bottom: 1px solid #212425; }
filechooser #pathbarbox { background-color: #2e3132; border-bottom: 1px solid #212425; }

.path-bar button.text-button, .path-bar button.image-button, .path-bar button { padding-left: 4px; padding-right: 4px; }

Expand Down Expand Up @@ -2058,10 +2058,12 @@ XfdesktopIconView.view .rubberband { border-radius: 0; }

.nautilus-window .searchbar-container { margin-top: -1px; }

.nautilus-window paned > separator { background-image: none; background-size: 0; background-color: transparent; }
.nautilus-window paned > separator { background-image: none; background-size: 0; background-color: #383b3d; }

.nautilus-window .sidebar-row + separator { background-color: transparent; }

.nautilus-window .sidebar { background-color: #2e3132; }

.nautilus-window notebook scrolledwindow { background-color: #383b3d; }

.nautilus-window .titlebar button:not(.titlebutton) { border-color: transparent; background-color: transparent; background-image: none; box-shadow: inset 0 1px rgba(255, 255, 255, 0); text-shadow: none; -gtk-icon-shadow: none; }
Expand Down Expand Up @@ -2098,7 +2100,7 @@ XfdesktopIconView.view .rubberband { border-radius: 0; }

.thunar .standard-view { border-width: 0; }

.thunar .sidebar .view, .thunar .sidebar iconview { background-color: #2b2e30; }
.thunar .sidebar .view, .thunar .sidebar iconview { background-color: #2e3132; }

.thunar .sidebar .view:hover, .thunar .sidebar iconview:hover { background-color: rgba(246, 246, 247, 0.05); }

Expand Down
2 changes: 1 addition & 1 deletion gtk/src/Stilo/gtk-3.0/gtk-stiloetto.css
Original file line number Diff line number Diff line change
Expand Up @@ -2006,7 +2006,7 @@ XfdesktopIconView.view .rubberband { border-radius: 0; }

.nautilus-window paned > separator { background-image: none; background-size: 0; background-color: transparent; }

.nautilus-window .sidebar-row + separator { background-color: transparent; }
.nautilus-window .sidebar { background-color: #f1f1f1; }

.nautilus-window notebook scrolledwindow { background-color: #ffffff; }

Expand Down
2 changes: 1 addition & 1 deletion gtk/src/Stilo/gtk-3.0/gtk.css
Original file line number Diff line number Diff line change
Expand Up @@ -2006,7 +2006,7 @@ XfdesktopIconView.view .rubberband { border-radius: 0; }

.nautilus-window paned > separator { background-image: none; background-size: 0; background-color: transparent; }

.nautilus-window .sidebar-row + separator { background-color: transparent; }
.nautilus-window .sidebar { background-color: #f1f1f1; }

.nautilus-window notebook scrolledwindow { background-color: #ffffff; }

Expand Down

0 comments on commit dfc4a28

Please sign in to comment.