by roundabout, Saturday, 6 March 2021, 23:31:32 (1615073492), pushed by roundabout, Sunday, 11 May 2025, 13:22:56 (1746969776)
Author identity: nana-4 <hnmaigo@gmail.com>
9d36765f30dc83f9f1df170404df907a003ef8bc
src/gtk/sass/_common-3.20.scss
@@ -81,11 +81,11 @@
// color: $on-surface;
&:hover {
box-shadow: inset 0 0 0 9999px overlay("hover", $on-surface);
box-shadow: inset 0 0 0 9999px overlay("hover-alt", $on-surface);
}
&:selected:hover {
box-shadow: inset 0 0 0 9999px overlay("hover", $primary);
box-shadow: inset 0 0 0 9999px overlay("hover-alt", $primary);
}
&:disabled {
@@ -1845,7 +1845,7 @@ treeview.view {
border-radius: 0;
background-clip: border-box;
color: hint($on-surface);
@include ink-color($on-surface);
@include ink-color($on-surface, $hover-alt: true);
@include list-item;
&:disabled {
@@ -2267,7 +2267,7 @@ notebook {
border-radius: 0;
color: hint($on-surface);
@extend %ripple;
@include ink-color($on-surface);
@include ink-color($on-surface, $hover-alt: true);
&:disabled {
color: disabled-hint($on-surface);
@@ -3354,7 +3354,7 @@ row {
&.activatable {
@extend %ripple;
@include ink-color($on-surface);
@include ink-color($on-surface, $hover-alt: true);
@include list-item;
// this is for indicathing which row generated a popover
@@ -3367,7 +3367,7 @@ row {
&:selected {
background-color: $overlay-selected;
@include ink-color($primary);
@include ink-color($primary, $hover-alt: true);
&.has-open-popup {
background-color: overlay("activated", $primary, $background: $overlay-selected);
@@ -3654,7 +3654,7 @@ stacksidebar.sidebar {
background-color: overlay("activated", $primary);
color: $primary;
font-weight: 500;
@include ink-color($primary);
@include ink-color($primary, $hover-alt: true);
}
+ row {
@@ -3722,7 +3722,7 @@ placessidebar.sidebar {
background-color: overlay("activated", $primary);
color: $primary;
font-weight: 500;
@include ink-color($primary);
@include ink-color($primary, $hover-alt: true);
image.sidebar-icon {
color: $primary;
src/gtk/sass/_drawing-3.20.scss
@@ -119,10 +119,10 @@ $ripple-active-transition-duration: $duration, $ripple-fade-in-duration, 0ms, 0m
}
}
@mixin ink-color($color, $elevation: false, $opacity-modifier: 0) {
@mixin ink-color($color, $elevation: false, $hover-alt: false, $opacity-modifier: 0) {
$hover: "hover";
@if $elevation {
@if $hover-alt or $elevation {
$hover: "hover-alt";
}