mirror of
https://github.com/vinceliuice/WhiteSur-gtk-theme.git
synced 2025-06-06 07:23:02 +00:00
78 lines
1.7 KiB
SCSS
78 lines
1.7 KiB
SCSS
// Rubberband for select-area screenshots
|
|
.select-area-rubberband {
|
|
border: 1px solid $primary_color;
|
|
border-radius: 3px;
|
|
|
|
@if $shell_version == 'old' {
|
|
background-color: transparentize($primary_color, 0.3);
|
|
} @else {
|
|
background-color: st-transparentize($primary_color, 0.3);
|
|
}
|
|
}
|
|
|
|
// User icon
|
|
.user-icon {
|
|
background-size: contain;
|
|
color: $light_alt_fg_color;
|
|
border-radius: $circular_radius;
|
|
border: none;
|
|
// box-shadow: 0 3px 8px rgba(black, 0.25);
|
|
icon-size: $base_icon_size * 4; // 64px
|
|
|
|
&:hover {
|
|
color: lighten($osd_fg_color, 30%);
|
|
}
|
|
|
|
& StIcon {
|
|
background-color: $light_track_color;
|
|
border-radius: $circular_radius;
|
|
padding: $base_padding * 2; // 12px
|
|
width: $base_icon_size * 2.5;
|
|
height: $base_icon_size * 2.5; // 40px;
|
|
}
|
|
|
|
&.user-avatar {
|
|
border: none;
|
|
box-shadow: inset 0 0 0 1px transparentize($light_alt_fg_color, 0.9);
|
|
}
|
|
|
|
.popup-menu & {
|
|
color: $alt_fg_color;
|
|
|
|
StIcon {
|
|
background-color: $track_color;
|
|
}
|
|
}
|
|
}
|
|
|
|
.user-widget.vertical .user-icon {
|
|
icon-size: $base_icon_size * 6; // 128px
|
|
|
|
& StIcon {
|
|
padding: $base_padding * 3 + 2px; // 20px
|
|
padding-top: $base_padding * 3; // 18 px
|
|
padding-bottom: $base_padding * 3 + 4px; // 22px
|
|
width: $base_icon_size * 5.5; height: $base_icon_size * 5.5; // 88px;
|
|
}
|
|
}
|
|
|
|
.lightbox { background-color: black; }
|
|
.flashspot { background-color: white; }
|
|
|
|
// Hidden
|
|
.hidden { color: rgba(0,0,0,0); }
|
|
|
|
// Caps-lock warning
|
|
.caps-lock-warning-label {
|
|
text-align: center;
|
|
padding-bottom: 8px;
|
|
color: $warning_color;
|
|
@extend %caption;
|
|
}
|
|
|
|
/* Workspace animation */
|
|
|
|
.workspace-animation {
|
|
background-color: $solid_osd_bg_color;
|
|
}
|