Skip to content

Commit

Permalink
Merge branch 'master' of github.com:vinceliuice/Qogir-theme
Browse files Browse the repository at this point in the history
  • Loading branch information
vinceliuice committed Dec 25, 2021
2 parents 63df5e7 + 4fb8593 commit 27d9c84
Show file tree
Hide file tree
Showing 11 changed files with 293 additions and 177 deletions.
2 changes: 1 addition & 1 deletion src/_sass/gtk/_colors-public.scss
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ $theme_text_color: currentColor;
@define-color content_view_bg #{"" + $base_color};

/* Very contrasty background for text views (@theme_text_color foreground) */
@define-color text_view_bg #{"" + if($variant == 'light', $base_color, darken($base_color,6%))};
@define-color text_view_bg #{"" + if($variant == 'light', $base_color, darken($base_color, 6%))};

//WM
@define-color wm_title alpha(#{"" + opacify($header_fg, 1)}, 0.8);
Expand Down
3 changes: 2 additions & 1 deletion src/_sass/gtk/_common-3.0.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1188,6 +1188,7 @@ actionbar {
padding: $cont_padding;
border-top: 1px solid $borders_color;
background-color: darken($bg_color, 3%);
border-radius: 0 0 $corner_radius $corner_radius;

> viewswitcher > box > button {
@extend %linked;
Expand Down Expand Up @@ -3260,7 +3261,7 @@ messagedialog { // Message Dialog styling
border-bottom: none;
border-top-left-radius: $material_radius;
border-top-right-radius: $material_radius;
box-shadow: inset 0 1px $highlight;
// box-shadow: inset 0 1px $highlight;

&:backdrop {
background-color: $dialog_bg;
Expand Down
11 changes: 7 additions & 4 deletions src/_sass/gtk/_darksidebar_widgets.scss
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,11 @@ filechooser {

// Dark icon background sidebars
.nautilus-window {
// &.csd.background, placessidebar list { background-color: transparent; }
background-color: $dark_sidebar_bg;
background-image: image($dark_sidebar_icon_bg);
background-size: 38px auto;
background-repeat: no-repeat;
border-radius: 0 0 $corner_radius;

paned > separator {
background-image: if($variant == 'light' and $titlebar == 'dark', _solid($base_color), _solid($dark_sidebar_border));
Expand All @@ -249,8 +253,7 @@ filechooser {
}

placessidebar.sidebar {
box-shadow: inset 38px 0 0 0 $dark_sidebar_icon_bg;
background-color: $dark_sidebar_bg;
background: none;

row.sidebar-row {
transition: none;
Expand Down Expand Up @@ -1151,7 +1154,7 @@ hdyleaflet {
// Password and Keys
//

leaflet {
window > hdyleaflet, window > leaflet {
> scrolledwindow > viewport.frame > list {
@extend %side_background;

Expand Down
2 changes: 2 additions & 0 deletions src/_sass/gtk/apps/_budgie.scss
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,8 @@
label { padding: 3px 8px; }

&:hover { background-color: rgba($fg_color, 0.05); }

&:selected { background-color: rgba($fg_color, 0.1); }
}

scrolledwindow.sidebar:not(.categories) { //AppMenu (Elementary)
Expand Down
8 changes: 8 additions & 0 deletions src/_sass/gtk/apps/_gnome.scss
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,14 @@ window.background { // gnome-terminal 3.32
&.unified { // >= 40.0
border-radius: $corner_radius;
}

placessidebar.sidebar {
border-bottom-left-radius: $corner_radius;
}

notebook, notebook > stack {
border-radius: 0 0 $corner_radius $corner_radius;
}
}

headerbar.titlebar {
Expand Down
79 changes: 49 additions & 30 deletions src/gtk/theme-3.0/gtk-dark.css

Large diffs are not rendered by default.

79 changes: 49 additions & 30 deletions src/gtk/theme-3.0/gtk-light.css

Large diffs are not rendered by default.

79 changes: 49 additions & 30 deletions src/gtk/theme-3.0/gtk.css

Large diffs are not rendered by default.

69 changes: 42 additions & 27 deletions src/gtk/theme-4.0/gtk-dark.css

Large diffs are not rendered by default.

69 changes: 42 additions & 27 deletions src/gtk/theme-4.0/gtk-light.css

Large diffs are not rendered by default.

69 changes: 42 additions & 27 deletions src/gtk/theme-4.0/gtk.css

Large diffs are not rendered by default.

0 comments on commit 27d9c84

Please sign in to comment.