mirror of
https://github.com/luneko/SweetTokyoNight.git
synced 2025-12-13 15:29:53 +01:00
Cinnamon: Fix missing hover effect on some elements #133
This commit is contained in:
@@ -50,7 +50,10 @@
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
min-height: 24px;
|
||||
&:hover { color: $selected_bg_color; }
|
||||
&:hover {
|
||||
background: transparent;
|
||||
color: $selected_bg_color;
|
||||
}
|
||||
&:selected,
|
||||
&:active,
|
||||
&:checked { @include button(active-header); }
|
||||
|
||||
@@ -965,8 +965,18 @@ button:backdrop {
|
||||
border-width: 1px; }
|
||||
|
||||
.primary-toolbar
|
||||
button, .primary-toolbar .raised
|
||||
button {
|
||||
-gtk-icon-shadow: none; }
|
||||
.primary-toolbar
|
||||
button:hover, .primary-toolbar
|
||||
button:focus, .primary-toolbar .raised
|
||||
button:hover, .primary-toolbar .raised
|
||||
button:focus {
|
||||
color: #fefefe;
|
||||
outline-color: rgba(254, 254, 254, 0.3);
|
||||
background-color: #c50ed2;
|
||||
text-shadow: none; }
|
||||
|
||||
.stack-switcher > button.needs-attention > label,
|
||||
.stack-switcher > button.needs-attention > image, stacksidebar row.needs-attention > label {
|
||||
@@ -6344,6 +6354,7 @@ ConversationListView {
|
||||
margin-bottom: 5px;
|
||||
min-height: 24px; }
|
||||
.nemo-window toolbar.primary-toolbar button:hover {
|
||||
background: transparent;
|
||||
color: #c50ed2; }
|
||||
.nemo-window toolbar.primary-toolbar button:selected, .nemo-window toolbar.primary-toolbar button:active, .nemo-window toolbar.primary-toolbar button:checked {
|
||||
border-radius: 23px;
|
||||
|
||||
@@ -965,8 +965,18 @@ button:backdrop {
|
||||
border-width: 1px; }
|
||||
|
||||
.primary-toolbar
|
||||
button, .primary-toolbar .raised
|
||||
button {
|
||||
-gtk-icon-shadow: none; }
|
||||
.primary-toolbar
|
||||
button:hover, .primary-toolbar
|
||||
button:focus, .primary-toolbar .raised
|
||||
button:hover, .primary-toolbar .raised
|
||||
button:focus {
|
||||
color: #fefefe;
|
||||
outline-color: rgba(254, 254, 254, 0.3);
|
||||
background-color: #c50ed2;
|
||||
text-shadow: none; }
|
||||
|
||||
.stack-switcher > button.needs-attention > label,
|
||||
.stack-switcher > button.needs-attention > image, stacksidebar row.needs-attention > label {
|
||||
@@ -6344,6 +6354,7 @@ ConversationListView {
|
||||
margin-bottom: 5px;
|
||||
min-height: 24px; }
|
||||
.nemo-window toolbar.primary-toolbar button:hover {
|
||||
background: transparent;
|
||||
color: #c50ed2; }
|
||||
.nemo-window toolbar.primary-toolbar button:selected, .nemo-window toolbar.primary-toolbar button:active, .nemo-window toolbar.primary-toolbar button:checked {
|
||||
border-radius: 23px;
|
||||
|
||||
@@ -352,7 +352,15 @@ button {
|
||||
@extend %linked;
|
||||
}
|
||||
|
||||
.primary-toolbar & { -gtk-icon-shadow: none; } // tango icons don't need shadows
|
||||
.primary-toolbar &, .primary-toolbar .raised & { // tango icons don't need shadows
|
||||
-gtk-icon-shadow: none;
|
||||
|
||||
&:hover,
|
||||
&:focus {
|
||||
@include button(hover,$selected_bg_color,$selected_fg_color);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.linked > &,
|
||||
.linked > &:hover,
|
||||
|
||||
Reference in New Issue
Block a user