Skip to content

Commit

Permalink
BUGFix: Gnome 42 - issue with app folders
Browse files Browse the repository at this point in the history
  • Loading branch information
thekomer committed May 10, 2022
1 parent ff2e5d1 commit e09bd2e
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 5 deletions.
21 changes: 21 additions & 0 deletions gnome-shell/v40/_common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1595,6 +1595,27 @@ StScrollBar {
box-shadow: none;
}

/* App Folders */
.app-well-app.app-folder {
background-color: lighten($bg_color, 7%);
border-radius: 12px;
}
// expanded folder
.app-folder-dialog { //style like the dash
background-color: $_dash_bg;
border: none;
.edit-folder-button {
@extend %button;

padding: 0;
width: 36px;
height: 36px;
border-radius: 18px;
& > StIcon { icon-size: 16px }
}
}


.app-well-app.app-folder > .overview-icon {
background-color: transparentize($osd_bg_color,.6);
}
Expand Down
26 changes: 21 additions & 5 deletions gnome-shell/v40/gnome-shell.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ stage {

/* WIDGETS */
/* Buttons */
.button {
.button, .app-folder-dialog .edit-folder-button {
color: #bfc3cd;
background-color: #171b2e;
box-shadow: none;
Expand All @@ -18,27 +18,27 @@ stage {
border: 1px solid #0b0d16;
border-radius: 6px;
padding: 4px 32px; }
.button:focus {
.button:focus, .app-folder-dialog .edit-folder-button:focus {
background-color: #1e233b;
color: #ffffff;
text-shadow: 0 1px black;
icon-shadow: 0 1px black;
box-shadow: none;
border: 1px solid #0b0d16; }
.button:insensitive {
.button:insensitive, .app-folder-dialog .edit-folder-button:insensitive {
color: #676a75;
background-color: rgba(33, 36, 48, 0.66);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
border: none;
text-shadow: none;
icon-shadow: none; }
.button:active {
.button:active, .app-folder-dialog .edit-folder-button:active {
color: #ff6a00;
background-color: rgba(14, 17, 29, 0.95);
border: 1px solid #0b0d16;
text-shadow: none;
icon-shadow: none; }
.button:hover {
.button:hover, .app-folder-dialog .edit-folder-button:hover {
background-color: #1c2138;
color: #ffffff;
border: 1px solid #0b0d16;
Expand Down Expand Up @@ -1435,6 +1435,22 @@ StScrollBar {
text-align: center;
box-shadow: none; }

/* App Folders */
.app-well-app.app-folder {
background-color: #1a1f35;
border-radius: 12px; }

.app-folder-dialog {
background-color: #090b13;
border: none; }
.app-folder-dialog .edit-folder-button {
padding: 0;
width: 36px;
height: 36px;
border-radius: 18px; }
.app-folder-dialog .edit-folder-button > StIcon {
icon-size: 16px; }

.app-well-app.app-folder > .overview-icon {
background-color: rgba(14, 17, 29, 0.35); }

Expand Down

0 comments on commit e09bd2e

Please sign in to comment.