Skip to content

Commit

Permalink
Merge pull request #162 from smurphos/cinnamon-gwl
Browse files Browse the repository at this point in the history
Cinnamon - GWL - better distinguish focussed app from active apps. Visually match current window-list theme
  • Loading branch information
The feren OS Dev authored Sep 22, 2019
2 parents 8a83202 + 20c55e9 commit ef21295
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions cinnamon/cinnamon.css
Original file line number Diff line number Diff line change
Expand Up @@ -1727,17 +1727,25 @@ StScrollBar StButton#hhandle:focus {
transition-duration: 100;
}

.grouped-window-list-item-box:hover,
.grouped-window-list-item-box:focus {
.grouped-window-list-item-box:hover {
color: #ffffff;
border-image: url("panel-assets/item-active-hover.svg") 4;
border-image: url("panel-assets/item-hover.svg") 4;
transition-duration: 100;
}

.grouped-window-list-item-box:active,
.grouped-window-list-item-box:checked {
.grouped-window-list-item-box:checked,
.grouped-window-list-item-box:focus:hover,
.grouped-window-list-item-box:active:hover,
.grouped-window-list-item-box:checked:hover {
color: #ffffff;
border-image: url("panel-assets/item-active.svg") 4;
border-image: url("panel-assets/item-active-hover.svg") 4;
transition-duration: 100;
}

.grouped-window-list-item-box:focus {
color: #ffffff;
border-image: url("panel-assets/item-active.svg") 8;
transition-duration: 100;
}

Expand Down

0 comments on commit ef21295

Please sign in to comment.