2021-08-16 03:25:52 -04:00
|
|
|
// Screenshot UI
|
2021-08-16 03:29:26 -04:00
|
|
|
.icon-label-button-container {
|
|
|
|
spacing: $base_spacing;
|
|
|
|
font-size: $base_font_size - 3pt;
|
|
|
|
|
|
|
|
StIcon {
|
|
|
|
icon-size: 32px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-28 14:53:38 -05:00
|
|
|
$screenshot_ui_panel_padding: 18px;
|
|
|
|
$screenshot_ui_shot_cast_margin: 21px;
|
|
|
|
$screenshot_ui_shot_cast_border_radius: 12px;
|
|
|
|
$screenshot_ui_panel_border_radius: $screenshot_ui_shot_cast_border_radius + $screenshot_ui_shot_cast_margin;
|
|
|
|
$screenshot_ui_shot_cast_spacing: 3px;
|
|
|
|
|
2021-08-16 11:16:11 -04:00
|
|
|
$screenshot_ui_button_red: #e01b24;
|
|
|
|
|
2021-08-16 03:25:52 -04:00
|
|
|
.screenshot-ui-panel {
|
|
|
|
background-color: $osd_bg_color;
|
2022-01-28 14:53:38 -05:00
|
|
|
border-radius: $screenshot_ui_panel_border_radius;
|
|
|
|
padding: $screenshot_ui_panel_padding;
|
|
|
|
// Reduce the bottom padding a little to accommodate the large capture button.
|
|
|
|
padding-bottom: $screenshot_ui_panel_padding - 6px;
|
2021-08-16 03:25:52 -04:00
|
|
|
margin-bottom: $base_margin * 8;
|
|
|
|
spacing: $base_padding * 2;
|
|
|
|
}
|
2022-01-23 05:53:35 -05:00
|
|
|
|
|
|
|
.screenshot-ui-close-button {
|
|
|
|
background-color: $osd_bg_color;
|
2022-02-02 12:22:20 -05:00
|
|
|
color: $osd_fg_color;
|
2022-01-23 05:53:35 -05:00
|
|
|
border-radius: 99px;
|
2022-02-02 12:22:20 -05:00
|
|
|
padding: 6px;
|
|
|
|
height: 30px;
|
|
|
|
width: 30px;
|
|
|
|
box-shadow: -1px 1px 5px 0px rgba(0,0,0,0.5);
|
|
|
|
margin-top: 8px;
|
2022-01-23 05:53:35 -05:00
|
|
|
|
2022-02-02 12:22:20 -05:00
|
|
|
&.left { margin-left: 8px; }
|
|
|
|
&.right { margin-right: 8px; }
|
2022-01-23 05:53:35 -05:00
|
|
|
|
2022-02-02 12:22:20 -05:00
|
|
|
& StIcon { icon-size: 24px; }
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: lighten($osd_bg_color, 15%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
color: transparentize($osd_fg_color, 0.2);
|
|
|
|
background-color: darken($osd_bg_color, 5%);
|
2022-01-23 05:53:35 -05:00
|
|
|
}
|
|
|
|
}
|
2022-01-15 10:23:32 -05:00
|
|
|
|
|
|
|
.screenshot-ui-type-button {
|
|
|
|
padding: $base_padding * 2 $base_padding * 3;
|
2022-01-28 14:53:38 -05:00
|
|
|
border-radius: $screenshot_ui_panel_border_radius - $screenshot_ui_panel_padding;
|
2022-01-15 10:23:32 -05:00
|
|
|
font-weight: bold;
|
|
|
|
&:hover, &:focus { background-color: $hover_bg_color; }
|
|
|
|
&:active { background-color: $active_bg_color; }
|
|
|
|
&:checked { background-color: $hover_bg_color; }
|
|
|
|
&:insensitive { color: $insensitive_fg_color; }
|
|
|
|
}
|
|
|
|
|
|
|
|
.screenshot-ui-capture-button {
|
|
|
|
width: 36px;
|
|
|
|
height: 36px;
|
|
|
|
border-radius: 99px;
|
|
|
|
border: 4px white;
|
|
|
|
padding: 4px;
|
|
|
|
|
|
|
|
.screenshot-ui-capture-button-circle {
|
|
|
|
background-color: white;
|
|
|
|
transition-duration: 200ms;
|
|
|
|
&:hover, &:focus { background-color: $hover_bg_color; }
|
|
|
|
border-radius: 99px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover, &:focus {
|
|
|
|
.screenshot-ui-capture-button-circle {
|
|
|
|
background-color: darken(white, 15%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
.screenshot-ui-capture-button-circle {
|
|
|
|
background-color: darken(white, 50%);
|
|
|
|
}
|
|
|
|
}
|
2021-08-16 11:16:11 -04:00
|
|
|
|
|
|
|
&:cast {
|
|
|
|
.screenshot-ui-capture-button-circle {
|
|
|
|
background-color: $screenshot_ui_button_red;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover, &:focus {
|
|
|
|
.screenshot-ui-capture-button-circle {
|
|
|
|
background-color: darken($screenshot_ui_button_red, 15%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
.screenshot-ui-capture-button-circle {
|
|
|
|
background-color: darken($screenshot_ui_button_red, 30%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.screenshot-ui-shot-cast-container {
|
|
|
|
background-color: $hover_bg_color;
|
2022-01-28 14:53:38 -05:00
|
|
|
border-radius: $screenshot_ui_shot_cast_border_radius;
|
|
|
|
padding: $screenshot_ui_shot_cast_spacing;
|
|
|
|
spacing: $screenshot_ui_shot_cast_spacing;
|
2021-08-16 11:16:11 -04:00
|
|
|
|
2022-01-28 14:53:38 -05:00
|
|
|
&:ltr { margin-left: $screenshot_ui_shot_cast_margin - $screenshot_ui_panel_padding; }
|
|
|
|
&:rtl { margin-right: $screenshot_ui_shot_cast_margin - $screenshot_ui_panel_padding; }
|
2021-08-16 11:16:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.screenshot-ui-shot-cast-button {
|
|
|
|
padding: $base_padding $base_padding * 1.5;
|
|
|
|
background-color: transparent;
|
|
|
|
&:hover, &:focus { background-color: lighten($hover_bg_color, 5%); }
|
|
|
|
&:active { background-color: $active_bg_color; }
|
|
|
|
&:checked { background-color: white; color: black; }
|
|
|
|
|
2022-01-28 14:53:38 -05:00
|
|
|
border-radius: $screenshot_ui_shot_cast_border_radius - $screenshot_ui_shot_cast_spacing;
|
2021-08-16 11:16:11 -04:00
|
|
|
|
|
|
|
StIcon {
|
|
|
|
icon-size: $base_icon_size;
|
|
|
|
}
|
2022-01-15 10:23:32 -05:00
|
|
|
}
|
|
|
|
|
2021-08-16 11:12:05 -04:00
|
|
|
.screenshot-ui-show-pointer-button {
|
|
|
|
padding: $base_padding * 2;
|
|
|
|
border-radius: 99px;
|
|
|
|
background-color: $hover_bg_color;
|
|
|
|
&:hover, &:focus { background-color: lighten($hover_bg_color, 5%); }
|
|
|
|
&:active { background-color: $active_bg_color; }
|
|
|
|
&:checked { background-color: darken($hover_bg_color, 10%); }
|
|
|
|
|
|
|
|
StIcon {
|
|
|
|
icon-size: $base_icon_size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-16 07:34:49 -04:00
|
|
|
.screenshot-ui-area-indicator-shade {
|
|
|
|
background-color: rgba(0, 0, 0, .3);
|
|
|
|
}
|
|
|
|
|
|
|
|
.screenshot-ui-area-selector {
|
|
|
|
.screenshot-ui-area-indicator-shade {
|
|
|
|
background-color: rgba(0, 0, 0, .5);
|
|
|
|
}
|
|
|
|
|
|
|
|
.screenshot-ui-area-indicator-selection {
|
|
|
|
border: 2px white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.screenshot-ui-area-selector-handle {
|
|
|
|
border-radius: 99px;
|
|
|
|
background-color: white;
|
|
|
|
box-shadow: 0 1px 3px 2px rgba(0, 0, 0, 0.2);
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
}
|
|
|
|
|
2021-08-16 11:06:35 -04:00
|
|
|
.screenshot-ui-window-selector {
|
|
|
|
background-color: $system_bg_color;
|
|
|
|
|
|
|
|
.screenshot-ui-window-selector-window-container {
|
|
|
|
margin: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:primary-monitor {
|
|
|
|
.screenshot-ui-window-selector-window-container {
|
|
|
|
// Make some room for the panel.
|
|
|
|
margin-bottom: 200px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.screenshot-ui-window-selector-window-border {
|
|
|
|
transition-duration: 200ms;
|
|
|
|
border-radius: 18px;
|
|
|
|
border: 6px transparent;
|
|
|
|
}
|
|
|
|
|
2021-12-17 00:58:00 -05:00
|
|
|
.screenshot-ui-window-selector-check {
|
|
|
|
transition-duration: 200ms;
|
|
|
|
color: transparent;
|
|
|
|
border-radius: 99px;
|
|
|
|
border-width: 12px;
|
|
|
|
icon-size: 24px;
|
|
|
|
}
|
|
|
|
|
2021-08-16 11:06:35 -04:00
|
|
|
.screenshot-ui-window-selector-window {
|
|
|
|
&:hover {
|
|
|
|
.screenshot-ui-window-selector-window-border {
|
|
|
|
border-color: darken($selected_bg_color, 15%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&:checked {
|
|
|
|
.screenshot-ui-window-selector-window-border {
|
|
|
|
border-color: $selected_bg_color;
|
|
|
|
background-color: transparentize($selected_bg_color, 0.8);
|
|
|
|
}
|
2021-12-17 00:58:00 -05:00
|
|
|
|
|
|
|
.screenshot-ui-window-selector-check {
|
|
|
|
color: white;
|
|
|
|
background-color: $selected_bg_color;
|
|
|
|
}
|
2021-08-16 11:06:35 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-15 10:23:32 -05:00
|
|
|
.screenshot-ui-screen-selector {
|
|
|
|
transition-duration: 200ms;
|
|
|
|
background-color: rgba(0, 0, 0, .5);
|
|
|
|
|
|
|
|
&:hover { background-color: rgba(0, 0, 0, .3); }
|
|
|
|
&:active { background-color: rgba(0, 0, 0, .7); }
|
|
|
|
&:checked {
|
|
|
|
background-color: transparent;
|
|
|
|
border: 2px white;
|
|
|
|
}
|
|
|
|
}
|
2021-12-10 08:25:09 -05:00
|
|
|
|
|
|
|
.screenshot-ui-tooltip {
|
|
|
|
color: $osd_fg_color;
|
|
|
|
background-color: $osd_bg_color;
|
|
|
|
border-radius: 99px;
|
|
|
|
padding: $base_padding $base_padding * 2;
|
|
|
|
text-align: center;
|
|
|
|
-y-offset: 24px;
|
|
|
|
}
|