2025-10-25 08:59:09 +02:00
|
|
|
@use "sass:color";
|
2022-08-08 21:45:53 +02:00
|
|
|
@use "sass:math";
|
2019-11-12 20:18:02 +01:00
|
|
|
|
2025-10-26 11:33:54 +01:00
|
|
|
@use "../../global/config";
|
|
|
|
|
@use "../../global/common";
|
|
|
|
|
@use "../../functions/color" as *;
|
|
|
|
|
@use "../../mixins/vendor";
|
|
|
|
|
|
2019-11-12 20:18:02 +01:00
|
|
|
%expose_after {
|
|
|
|
|
&::after {
|
|
|
|
|
content: "";
|
|
|
|
|
display: block;
|
|
|
|
|
height: 48px;
|
2025-10-26 11:33:54 +01:00
|
|
|
background-color: rgba(basic_color(delta), 0.1) !important;
|
2019-11-12 20:18:02 +01:00
|
|
|
}
|
|
|
|
|
}
|
2025-10-26 11:33:54 +01:00
|
|
|
|
2019-11-12 20:18:02 +01:00
|
|
|
%expose_before {
|
|
|
|
|
&::before {
|
|
|
|
|
content: "";
|
|
|
|
|
display: block;
|
|
|
|
|
height: 48px;
|
2025-10-26 11:33:54 +01:00
|
|
|
background-color: rgba(basic_color(delta), 0.1) !important;
|
2019-11-12 20:18:02 +01:00
|
|
|
}
|
|
|
|
|
}
|
2025-10-26 11:33:54 +01:00
|
|
|
|
2019-11-12 20:18:02 +01:00
|
|
|
%expose {
|
|
|
|
|
&::before, &::after {
|
|
|
|
|
content: "";
|
|
|
|
|
display: block;
|
|
|
|
|
height: 48px;
|
2025-10-26 11:33:54 +01:00
|
|
|
background-color: rgba(basic_color(delta), 0.1) !important;
|
2019-11-12 20:18:02 +01:00
|
|
|
}
|
|
|
|
|
}
|
2025-10-26 11:33:54 +01:00
|
|
|
|
2022-08-08 21:45:53 +02:00
|
|
|
// %exp {
|
|
|
|
|
// }
|
2019-11-12 20:18:02 +01:00
|
|
|
%exp_hidden {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.exp_wrap {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.exp_overlay {
|
|
|
|
|
@extend %full_parent;
|
2025-10-26 11:33:54 +01:00
|
|
|
background-color: color.adjust(basic_color(alpha), $alpha: -0.6);
|
2019-11-12 20:18:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.exp_pop {
|
|
|
|
|
@extend %exp_hidden !optional;
|
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: 100;
|
2025-10-26 11:33:54 +01:00
|
|
|
top: config.$space_large;
|
|
|
|
|
left: config.$space_large;
|
|
|
|
|
padding: config.$space_half;
|
|
|
|
|
border: 4px solid config.$color_back_basic;
|
2019-11-12 20:18:02 +01:00
|
|
|
border-radius: 4px;
|
2025-10-26 11:33:54 +01:00
|
|
|
background-color: config.$color_back_basic;
|
2019-11-12 20:18:02 +01:00
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
2025-10-26 11:33:54 +01:00
|
|
|
|
2019-11-12 20:18:02 +01:00
|
|
|
.exp_marker_pop {
|
|
|
|
|
position: absolute;
|
2025-10-26 11:33:54 +01:00
|
|
|
top: math.div(-(config.$size_text_basic), 4) * 3;
|
|
|
|
|
right: math.div(-(config.$size_text_basic), 2);
|
|
|
|
|
width: config.$size_text_basic;
|
|
|
|
|
height: config.$size_text_basic;
|
|
|
|
|
border: config.$space_tiny solid config.$color_highlight_basic;
|
|
|
|
|
border-radius: config.$size_text_basic;
|
|
|
|
|
color: config.$color_highlight_basic;
|
|
|
|
|
background-color: config.$color_darkest;
|
2019-11-12 20:18:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.exp_expose {
|
|
|
|
|
@extend %expose !optional;
|
|
|
|
|
}
|
2025-10-26 11:33:54 +01:00
|
|
|
|
2019-11-12 20:18:02 +01:00
|
|
|
.exp_expose_pre {
|
|
|
|
|
@extend %expose_after;
|
|
|
|
|
}
|
2025-10-26 11:33:54 +01:00
|
|
|
|
2019-11-12 20:18:02 +01:00
|
|
|
.exp_expose_post {
|
|
|
|
|
@extend %expose_before;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.exp_overlay_btn {
|
|
|
|
|
position: fixed;
|
|
|
|
|
width: 3em;
|
|
|
|
|
height: 2em;
|
|
|
|
|
// padding: $space_basic $space_basic * 2;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
2025-10-26 11:33:54 +01:00
|
|
|
|
2019-11-12 20:18:02 +01:00
|
|
|
.exp_help_btn {
|
|
|
|
|
display: table;
|
2025-10-26 11:33:54 +01:00
|
|
|
right: config.$space_double;
|
|
|
|
|
bottom: config.$space_double;
|
|
|
|
|
background-color: rgba(config.$color_darkest, 0.4);
|
|
|
|
|
|
2019-11-12 20:18:02 +01:00
|
|
|
&:hover {
|
2025-10-26 11:33:54 +01:00
|
|
|
background-color: config.$color_brightest;
|
|
|
|
|
|
2019-11-12 20:18:02 +01:00
|
|
|
> .span_solo {
|
2025-10-26 11:33:54 +01:00
|
|
|
color: config.$color_darkest;
|
2019-11-12 20:18:02 +01:00
|
|
|
}
|
|
|
|
|
}
|
2025-10-26 11:33:54 +01:00
|
|
|
|
2019-11-12 20:18:02 +01:00
|
|
|
.span_solo {
|
|
|
|
|
display: table-cell;
|
2025-10-26 11:33:54 +01:00
|
|
|
color: rgba(config.$color_brightest, 0.8);
|
|
|
|
|
font-family: config.$family_text_mono;
|
2019-11-12 20:18:02 +01:00
|
|
|
font-size: 1.4em;
|
|
|
|
|
text-align: center;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.expose_height {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
2025-10-26 11:33:54 +01:00
|
|
|
background-color: rgba(basic_color(delta), 0.1) !important;
|
|
|
|
|
@include vendor.vendor-prefix(transition, height 0.5s ease);
|
2019-11-12 20:18:02 +01:00
|
|
|
}
|