2019-12-18 16:25:03 -05:00
|
|
|
// Rubberband for select-area screenshots
|
|
|
|
.select-area-rubberband {
|
2019-12-19 10:38:27 -05:00
|
|
|
background-color: transparentize($selected_bg_color,0.7);
|
|
|
|
border: 1px solid $selected_bg_color;
|
2019-12-18 16:25:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// User icon
|
|
|
|
.user-icon {
|
2019-12-19 10:38:27 -05:00
|
|
|
background-size: contain;
|
|
|
|
color: $osd_fg_color;
|
|
|
|
border-radius: 99px;
|
2020-11-01 03:55:45 -05:00
|
|
|
icon-size: $base_icon_size * 4; // 64px
|
2019-12-19 10:38:27 -05:00
|
|
|
&:hover {
|
|
|
|
color: lighten($osd_fg_color,30%);
|
|
|
|
}
|
2020-02-13 09:03:30 -05:00
|
|
|
|
|
|
|
& StIcon {
|
|
|
|
background-color: transparentize($osd_fg_color,0.95);
|
|
|
|
border-radius: 99px;
|
2020-11-01 03:55:45 -05:00
|
|
|
padding: $base_padding * 2 ; // 12px
|
|
|
|
width: $base_icon_size * 2.5; height: $base_icon_size * 2.5; // 40px;
|
2020-02-13 09:03:30 -05:00
|
|
|
}
|
2020-11-01 07:40:47 -05:00
|
|
|
|
|
|
|
&.user-avatar {
|
|
|
|
border: 2px $osd_fg_color;
|
|
|
|
}
|
2019-12-18 16:25:03 -05:00
|
|
|
}
|
|
|
|
|
2020-01-14 09:53:36 -05:00
|
|
|
.user-widget.vertical .user-icon {
|
2020-02-25 11:36:25 -05:00
|
|
|
icon-size: $base_icon_size * 6; // 128px
|
2020-02-20 10:10:36 -05:00
|
|
|
|
|
|
|
& StIcon {
|
2020-02-25 11:36:25 -05:00
|
|
|
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;
|
2020-02-20 10:10:36 -05:00
|
|
|
}
|
2020-01-14 09:53:36 -05:00
|
|
|
}
|
|
|
|
|
2019-12-18 16:25:03 -05:00
|
|
|
.lightbox { background-color: black; }
|
|
|
|
.flashspot { background-color: white; }
|
2019-12-19 15:56:45 -05:00
|
|
|
|
|
|
|
|
|
|
|
// Hidden
|
2020-01-23 16:36:09 -05:00
|
|
|
.hidden { color: rgba(0,0,0,0);}
|
|
|
|
|
|
|
|
// Caps-lock warning
|
|
|
|
.caps-lock-warning-label {
|
2020-01-20 08:55:24 -05:00
|
|
|
text-align: center;
|
2020-01-23 16:36:09 -05:00
|
|
|
padding-bottom: 8px;
|
|
|
|
@include fontsize($base_font_size - 1);
|
|
|
|
color: $warning_color;
|
|
|
|
}
|
2020-06-20 16:29:21 -04:00
|
|
|
|
|
|
|
/* Workspace animation */
|
|
|
|
|
|
|
|
.workspace-animation {
|
|
|
|
background-color: $system_bg_color;
|
|
|
|
}
|