2019-11-12 20:18:02 +01:00
|
|
|
// Custom extends and mixins
|
|
|
|
|
// ------------------------------------------------------------------------------
|
2025-10-26 11:33:54 +01:00
|
|
|
@use "mixins";
|
|
|
|
|
@use "extends";
|
|
|
|
|
@use "../../global/config";
|
2019-11-12 20:18:02 +01:00
|
|
|
|
|
|
|
|
// Editor module styles
|
|
|
|
|
// ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
%wip {
|
2025-10-26 11:33:54 +01:00
|
|
|
border-right: config.$space_basic solid rgba(crimson, 0.8);
|
2019-11-12 20:18:02 +01:00
|
|
|
background-color: rgba(crimson, 0.1) !important;
|
|
|
|
|
}
|
|
|
|
|
.wip {
|
|
|
|
|
@extend %wip;
|
|
|
|
|
&::before, &::after {
|
|
|
|
|
content: "";
|
|
|
|
|
display: block;
|
|
|
|
|
height: 48px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.wip_txt {
|
|
|
|
|
@extend %wip;
|
|
|
|
|
}
|