Skip to content

Commit

Permalink
Orchidea: fix grouped-window-list-item-box active issue
Browse files Browse the repository at this point in the history
  • Loading branch information
azorzi-fbk committed Nov 10, 2024
1 parent 1132260 commit 4b2bcf7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion Orchidea/files/Orchidea/cinnamon/cinnamon.css
Original file line number Diff line number Diff line change
Expand Up @@ -1534,7 +1534,7 @@ StScrollBar StButton#vhandle:active {

.grouped-window-list-badge {
border-radius: 9999px;
background: rgba(255, 255, 255, 0.25);
background: rgba(0, 0, 0, 0.9);
}

.grouped-window-list-button-label {
Expand Down Expand Up @@ -1577,6 +1577,11 @@ StScrollBar StButton#vhandle:active {
color: #dedede;
}

.grouped-window-list-item-box:active {
background: rgba(230, 230, 230, 0.25);
color: #dedede;
}

.grouped-window-list-item-box:focus {
background: #3281ea;
color: #dedede;
Expand Down
7 changes: 6 additions & 1 deletion Orchidea/src/sass/_common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1372,7 +1372,7 @@ $keyboard_active_bg_color: if($variant == 'light', darken($keyboard_bg_color, 20
}
.grouped-window-list-badge {
border-radius: $circular_radius;
background: rgba($inverse_fg_color, 0.25);
background: rgba(0, 0, 0, 0.9);
}
.grouped-window-list-button-label {
padding-left: 4px;
Expand Down Expand Up @@ -1412,6 +1412,11 @@ $keyboard_active_bg_color: if($variant == 'light', darken($keyboard_bg_color, 20
color: $panel_fg_color;
}

.grouped-window-list-item-box:active {
background: darken($color: rgba($inverse_fg_color, 0.25), $amount: 10%);
color: $panel_fg_color;
}

.grouped-window-list-item-box:focus {
background: $primary_color;
color: $panel_fg_color;
Expand Down

0 comments on commit 4b2bcf7

Please sign in to comment.