a4f7cfdff4
- increase the font size of clock elements - increase the size of user avatars - combines lock and login scss into one file - clean up the css for avatars - adjust the blur parameters of the screen shield Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2564>
54 lines
1.2 KiB
SCSS
54 lines
1.2 KiB
SCSS
// Rubberband for select-area screenshots
|
|
.select-area-rubberband {
|
|
background-color: transparentize($selected_bg_color,0.7);
|
|
border: 1px solid $selected_bg_color;
|
|
}
|
|
|
|
// User icon
|
|
.user-icon {
|
|
background-size: contain;
|
|
color: $osd_fg_color;
|
|
border-radius: 99px;
|
|
icon-size: $base_icon_size * 4; // 64px
|
|
|
|
& StIcon {
|
|
background-color: transparentize($osd_fg_color,0.95);
|
|
border-radius: 99px;
|
|
padding: $base_padding * 2 ; // 12px
|
|
width: $base_icon_size * 2.5; height: $base_icon_size * 2.5; // 40px;
|
|
}
|
|
|
|
&.user-avatar {
|
|
box-shadow:inset 0 0 0 1px transparentize($osd_fg_color, 0.9);
|
|
@if $is_highcontrast {
|
|
box-shadow:inset 0 0 0 1px $hc_inset_color;
|
|
}
|
|
}
|
|
}
|
|
|
|
.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;
|
|
@extend %caption;
|
|
color: $warning_color;
|
|
}
|
|
|
|
/* Workspace animation */
|
|
|
|
.workspace-animation {
|
|
background-color: $system_bg_color;
|
|
}
|
|
|
|
/* Tiled window previews */
|
|
.tile-preview {
|
|
background-color: transparentize($selected_bg_color,0.5);
|
|
border: 1px solid $selected_bg_color;
|
|
}
|