2023-05-25 17:25:11 -04:00
|
|
|
// Screenshot UI
|
|
|
|
|
2024-03-25 13:34:36 -04:00
|
|
|
$screenshot_ui_panel_padding: $base_padding * 3;
|
|
|
|
$screenshot_ui_panel_border_radius: $modal_radius * 2;
|
|
|
|
$screenshot_ui_button_red: $red_4;
|
2023-05-25 17:25:11 -04:00
|
|
|
|
|
|
|
.screenshot-ui-panel {
|
|
|
|
@extend %osd_panel;
|
|
|
|
border-radius: $screenshot_ui_panel_border_radius;
|
|
|
|
padding: $screenshot_ui_panel_padding;
|
|
|
|
// Reduce the bottom padding a little to accommodate the large capture button.
|
2024-03-25 13:34:36 -04:00
|
|
|
padding-bottom: $screenshot_ui_panel_padding - $base_padding;
|
2023-05-25 17:25:11 -04:00
|
|
|
margin-bottom: 4em;
|
|
|
|
spacing: $base_padding * 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.screenshot-ui-close-button {
|
|
|
|
@extend .window-close; // copy window close button
|
|
|
|
padding: $base_padding !important; // but with more padding
|
2024-03-25 13:34:36 -04:00
|
|
|
margin-top: $base_margin * 3;
|
2023-05-25 17:25:11 -04:00
|
|
|
box-shadow: 0 2px 4px 0 $shadow_color;
|
2024-03-25 13:34:36 -04:00
|
|
|
&.left { margin-left: $base_margin * 3;}
|
|
|
|
&.right { margin-right: $base_margin * 3;}
|
2023-05-25 17:25:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.screenshot-ui-type-button {
|
|
|
|
@extend %osd_button_flat;
|
|
|
|
min-width: 48px;
|
2024-03-25 13:34:36 -04:00
|
|
|
padding: $base_padding * 2 $base_padding * 3;
|
2023-05-25 17:25:11 -04:00
|
|
|
border-radius: $screenshot_ui_panel_border_radius - $screenshot_ui_panel_padding;
|
2024-03-25 13:34:36 -04:00
|
|
|
|
|
|
|
.icon-label-button-container {
|
|
|
|
@extend %caption;
|
|
|
|
spacing: $scaled_padding;
|
|
|
|
|
|
|
|
> StIcon { icon-size: $large_icon_size;}
|
|
|
|
}
|
2023-05-25 17:25:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.screenshot-ui-capture-button {
|
2024-03-25 13:34:36 -04:00
|
|
|
width: $large_icon_size;
|
|
|
|
height: $large_icon_size;
|
|
|
|
border-radius: $forced_circular_radius;
|
2023-05-25 17:25:11 -04:00
|
|
|
border: 4px $osd_fg_color;
|
2024-03-25 13:34:36 -04:00
|
|
|
padding: $base_margin;
|
2023-05-25 17:25:11 -04:00
|
|
|
|
|
|
|
.screenshot-ui-capture-button-circle {
|
|
|
|
background-color: $osd_fg_color;
|
|
|
|
transition-duration: 200ms;
|
|
|
|
&:hover, &:focus { background-color: $hover_bg_color;}
|
2024-03-25 13:34:36 -04:00
|
|
|
border-radius: $forced_circular_radius;
|
2023-05-25 17:25:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&:hover, &:focus {
|
|
|
|
.screenshot-ui-capture-button-circle {
|
2024-03-25 13:34:36 -04:00
|
|
|
background-color: darken($osd_fg_color, 20%);
|
2023-05-25 17:25:11 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
.screenshot-ui-capture-button-circle {
|
|
|
|
background-color: darken($osd_fg_color, 50%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:cast {
|
|
|
|
.screenshot-ui-capture-button-circle {
|
|
|
|
background-color: $screenshot_ui_button_red;
|
|
|
|
}
|
|
|
|
&:hover, &:focus {
|
|
|
|
.screenshot-ui-capture-button-circle {
|
|
|
|
background-color: lighten($screenshot_ui_button_red, 5%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&:active {
|
|
|
|
.screenshot-ui-capture-button-circle {
|
|
|
|
background-color: darken($screenshot_ui_button_red, 7%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.screenshot-ui-shot-cast-container {
|
2023-10-09 22:24:14 -04:00
|
|
|
background-color: transparentize($osd_fg_color,0.9);
|
2024-03-25 13:34:36 -04:00
|
|
|
border-radius: $forced_circular_radius;
|
|
|
|
padding: $base_padding * 0.5;
|
|
|
|
spacing: $base_padding * 0.5;
|
2023-05-25 17:25:11 -04:00
|
|
|
|
2024-03-25 13:34:36 -04:00
|
|
|
@if $contrast == 'high' {
|
|
|
|
@include draw_hc_inset();
|
|
|
|
}
|
2023-05-25 17:25:11 -04:00
|
|
|
}
|
|
|
|
|
2024-03-25 13:34:36 -04:00
|
|
|
// non-standard button style
|
2023-05-25 17:25:11 -04:00
|
|
|
.screenshot-ui-shot-cast-button {
|
2024-03-25 13:34:36 -04:00
|
|
|
padding: $base_padding $base_padding * 2;
|
2023-05-25 17:25:11 -04:00
|
|
|
background-color: transparent;
|
2024-03-25 13:34:36 -04:00
|
|
|
border-radius: $forced_circular_radius;
|
|
|
|
|
|
|
|
@if $contrast == 'high' {
|
|
|
|
@include draw_hc_inset();
|
|
|
|
}
|
|
|
|
|
|
|
|
> StIcon { icon-size: $base_icon_size;}
|
|
|
|
|
2023-10-09 22:24:14 -04:00
|
|
|
&:hover, &:focus { background-color: transparentize($osd_fg_color, 0.8);}
|
|
|
|
&:active { background-color: transparentize($osd_fg_color, .5);}
|
|
|
|
&:checked { background-color: $osd_fg_color; color: $osd_bg_color;}
|
2023-05-25 17:25:11 -04:00
|
|
|
&:insensitive { color: transparentize($osd_fg_color, 0.5);}
|
|
|
|
}
|
|
|
|
|
|
|
|
.screenshot-ui-show-pointer-button {
|
|
|
|
@extend %osd_button_flat;
|
2024-03-25 13:34:36 -04:00
|
|
|
@extend .icon-button;
|
2023-05-25 17:25:11 -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 {
|
2024-03-25 13:34:36 -04:00
|
|
|
border-radius: $forced_circular_radius;
|
2023-05-25 17:25:11 -04:00
|
|
|
background-color: white;
|
|
|
|
box-shadow: 0 1px 3px 2px $shadow_color;
|
2024-03-25 13:34:36 -04:00
|
|
|
width: $medium_icon_size;
|
|
|
|
height: $medium_icon_size;
|
2023-05-25 17:25:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.screenshot-ui-window-selector {
|
2024-03-25 13:34:36 -04:00
|
|
|
background-color: $system_base_color;
|
2023-05-25 17:25:11 -04:00
|
|
|
|
|
|
|
.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: $modal_radius;
|
|
|
|
border: 6px transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.screenshot-ui-window-selector-check {
|
|
|
|
transition-duration: 200ms;
|
|
|
|
color: transparent;
|
2024-03-25 13:34:36 -04:00
|
|
|
border-radius: $forced_circular_radius;
|
2023-05-25 17:25:11 -04:00
|
|
|
border-width: 12px;
|
2024-03-25 13:34:36 -04:00
|
|
|
icon-size: $medium_icon_size;
|
2023-05-25 17:25:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.screenshot-ui-window-selector-window {
|
|
|
|
&:hover {
|
|
|
|
.screenshot-ui-window-selector-window-border {
|
2024-09-19 20:40:52 -04:00
|
|
|
border-color: st-darken(-st-accent-color, 15%);
|
2023-05-25 17:25:11 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
&:checked {
|
|
|
|
.screenshot-ui-window-selector-window-border {
|
2024-09-19 20:40:52 -04:00
|
|
|
border-color: -st-accent-color;
|
|
|
|
background-color: st-transparentize(-st-accent-color, 0.8);
|
2023-05-25 17:25:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.screenshot-ui-window-selector-check {
|
2024-09-19 20:40:52 -04:00
|
|
|
color: -st-accent-fg-color;
|
|
|
|
background-color: -st-accent-color;
|
2023-05-25 17:25:11 -04: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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.screenshot-ui-tooltip {
|
2023-10-09 22:24:14 -04:00
|
|
|
@extend %tooltip;
|
2023-05-25 17:25:11 -04:00
|
|
|
text-align: center;
|
2024-03-25 13:34:36 -04:00
|
|
|
-y-offset: $base_margin * 6;
|
2023-05-25 17:25:11 -04:00
|
|
|
}
|