mirror of
https://github.com/vinceliuice/WhiteSur-gtk-theme.git
synced 2025-06-08 00:13:02 +00:00
24 lines
639 B
SCSS
24 lines
639 B
SCSS
![]() |
// Pointer location
|
||
|
.ripple-pointer-location {
|
||
|
width: 48px;
|
||
|
height: 48px;
|
||
|
border-radius: 24px; // radius equals the size of the box to give us the curve
|
||
|
background-color: lighten(transparentize($primary_color, 0.7), 30%);
|
||
|
box-shadow: 0 0 2px 2px lighten($primary_color, 20%);
|
||
|
}
|
||
|
|
||
|
// Pointer accessibility notifications
|
||
|
.pie-timer {
|
||
|
width: 60px;
|
||
|
height: 60px;
|
||
|
-pie-border-width: 3px;
|
||
|
-pie-border-color: $primary_color;
|
||
|
-pie-background-color: lighten(transparentize($primary_color, 0.7), 40%);
|
||
|
}
|
||
|
|
||
|
// Screen zoom/Magnifier
|
||
|
.magnifier-zoom-region {
|
||
|
border: 2px solid $primary_color;
|
||
|
&.full-screen { border-width: 0; }
|
||
|
}
|