Skip to content

Commit

Permalink
Merge branch 'main' of github.com:vinceliuice/Colloid-gtk-theme
Browse files Browse the repository at this point in the history
  • Loading branch information
vinceliuice committed Dec 31, 2021
2 parents a8def92 + 2612d5d commit 5a046f7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/main/gtk-3.0/gtk-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -4129,7 +4129,7 @@ decoration:backdrop {
.ssd decoration {
border: none;
border-radius: 12px 12px 0 0;
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.75);
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.75);
}

.metacity decoration {
Expand Down
2 changes: 1 addition & 1 deletion src/main/gtk-3.0/gtk-light.css
Original file line number Diff line number Diff line change
Expand Up @@ -4123,7 +4123,7 @@ decoration:backdrop {
.ssd decoration {
border: none;
border-radius: 12px 12px 0 0;
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.12);
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.metacity decoration {
Expand Down
2 changes: 1 addition & 1 deletion src/main/gtk-3.0/gtk.css
Original file line number Diff line number Diff line change
Expand Up @@ -4132,7 +4132,7 @@ decoration:backdrop {
.ssd decoration {
border: none;
border-radius: 12px 12px 0 0;
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.12);
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.metacity decoration {
Expand Down
4 changes: 2 additions & 2 deletions src/sass/gtk/_common-3.0.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3701,9 +3701,9 @@ decoration {
border-radius: $window-radius $window-radius 0 0;

@if $rimless == 'true' {
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
box-shadow: none;
} @else {
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 0 0 1px $window-border; // just doing borders, wm draws actual shadows
box-shadow: 0 0 0 1px $window-border; // just doing borders, wm draws actual shadows
}
}

Expand Down

0 comments on commit 5a046f7

Please sign in to comment.