2023-06-02 16:53:32 +02:00
|
|
|
@use 'sass:color';
|
2023-05-31 18:10:09 +02:00
|
|
|
@use '../breakpoints';
|
2023-06-02 16:53:32 +02:00
|
|
|
@use '../config/color/brand';
|
2023-06-12 16:23:41 +02:00
|
|
|
@use '../visual-design/typography';
|
2023-05-31 18:10:09 +02:00
|
|
|
|
2023-06-12 18:59:27 +02:00
|
|
|
.playground {
|
|
|
|
display: grid;
|
|
|
|
grid-template:
|
|
|
|
'header' auto
|
|
|
|
'main' 1fr
|
|
|
|
'footer' auto / 100%;
|
|
|
|
min-height: 100vh;
|
|
|
|
|
|
|
|
#main-content {
|
|
|
|
display: grid;
|
|
|
|
grid-template:
|
|
|
|
'editor' 1fr
|
|
|
|
'alert' min-content;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-12 16:23:41 +02:00
|
|
|
// Use smaller sizes for condensed header
|
2023-06-09 18:24:33 +02:00
|
|
|
.sl-r-banner-playground {
|
2023-06-12 16:23:41 +02:00
|
|
|
--h1-size: var(--sl-font-size--xx-large);
|
|
|
|
--h1-size-lg: var(--sl-playground-heading);
|
|
|
|
}
|
2023-06-09 18:24:33 +02:00
|
|
|
|
2023-06-12 18:59:27 +02:00
|
|
|
.sl-l-section-playground {
|
|
|
|
display: grid;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2023-06-09 18:24:33 +02:00
|
|
|
|
2023-06-12 18:59:27 +02:00
|
|
|
.playground-actions {
|
|
|
|
flex-direction: row-reverse;
|
|
|
|
}
|
2023-05-31 18:10:09 +02:00
|
|
|
|
2023-06-12 18:59:27 +02:00
|
|
|
#playground-copied-alert {
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity 0.3s linear;
|
2023-06-09 18:24:33 +02:00
|
|
|
|
2023-06-12 18:59:27 +02:00
|
|
|
&.show {
|
|
|
|
opacity: 1;
|
2023-05-31 18:10:09 +02:00
|
|
|
}
|
|
|
|
}
|
2023-06-02 16:53:32 +02:00
|
|
|
|
2023-06-12 18:59:27 +02:00
|
|
|
.playground-actions {
|
|
|
|
gap: var(--sl-gutter--double);
|
|
|
|
}
|
|
|
|
|
2023-06-12 16:28:38 +02:00
|
|
|
.playground-alert {
|
|
|
|
padding-left: var(--sl-gutter);
|
|
|
|
padding-right: var(--sl-gutter);
|
|
|
|
}
|
|
|
|
|
2023-06-12 18:59:27 +02:00
|
|
|
|
|
|
|
// Playground Editor area
|
|
|
|
.sl-c-playground {
|
|
|
|
--sl-c-callout--block-margin: 0;
|
|
|
|
display: grid;
|
2023-06-02 16:53:32 +02:00
|
|
|
gap: var(--sl-gutter);
|
|
|
|
|
2023-06-12 18:59:27 +02:00
|
|
|
@include breakpoints.sl-breakpoint--medium {
|
|
|
|
grid-template:
|
|
|
|
'sass css' 1fr
|
|
|
|
'debug debug' minmax(0, auto) / 50% 50%;
|
2023-06-02 16:53:32 +02:00
|
|
|
}
|
2023-06-12 18:59:27 +02:00
|
|
|
}
|
2023-06-02 18:52:24 +02:00
|
|
|
|
2023-06-12 18:59:27 +02:00
|
|
|
// Precompiled and Compiled code container
|
|
|
|
.sl-c-playground__code-editor-wrapper {
|
|
|
|
background-color: var(--sl-color-editor-background);
|
|
|
|
border: var(--sl-border--small) solid var(--sl-color--code-background-darker);
|
|
|
|
display: grid;
|
|
|
|
}
|
2023-06-06 22:25:37 +02:00
|
|
|
|
2023-06-12 18:59:27 +02:00
|
|
|
.sl-c-playground__console-wrapper {
|
|
|
|
grid-area: debug;
|
|
|
|
min-width: calc((100% - var(--sl-gutter)) / 2);
|
|
|
|
}
|
2023-06-07 21:45:42 +02:00
|
|
|
|
2023-06-12 18:59:27 +02:00
|
|
|
[data-code='precompiled'] {
|
|
|
|
--sl-color-editor-background: var(--sl-color--white);
|
|
|
|
grid-template-rows: min-content 1fr;
|
|
|
|
}
|
2023-06-07 21:13:23 +02:00
|
|
|
|
2023-06-12 18:59:27 +02:00
|
|
|
[data-code='compiled'] {
|
|
|
|
--sl-color-editor-background: var(--sl-color--code-background);
|
|
|
|
grid-template-rows: min-content minmax(0, auto) 1fr;
|
|
|
|
}
|
2023-06-07 21:13:23 +02:00
|
|
|
|
|
|
|
|
2023-06-12 18:59:27 +02:00
|
|
|
.ͼ1 {
|
|
|
|
height: 100%;
|
2023-06-07 21:13:23 +02:00
|
|
|
}
|
2023-06-12 18:59:27 +02:00
|
|
|
|
|
|
|
#editor {
|
|
|
|
cursor: text;
|
|
|
|
|
2023-06-12 16:28:38 +02:00
|
|
|
}
|
2023-06-07 21:13:23 +02:00
|
|
|
|
2023-06-12 18:59:27 +02:00
|
|
|
.console {
|
2023-06-12 20:38:42 +02:00
|
|
|
font-family: typography.$sl-font-family--code;
|
2023-06-12 18:59:27 +02:00
|
|
|
min-height: 2em;
|
|
|
|
max-height: 500px;
|
|
|
|
margin: 0;
|
2023-06-02 18:52:24 +02:00
|
|
|
|
2023-06-12 18:59:27 +02:00
|
|
|
hr,
|
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2023-06-06 22:25:37 +02:00
|
|
|
|
2023-06-12 18:59:27 +02:00
|
|
|
$console-type-colors: (
|
|
|
|
'error': red,
|
|
|
|
'warn': orange,
|
|
|
|
'debug': green,
|
|
|
|
);
|
2023-06-12 16:28:38 +02:00
|
|
|
|
2023-06-12 18:59:27 +02:00
|
|
|
@each $name, $color in $console-type-colors {
|
|
|
|
.console-type-#{$name} {
|
|
|
|
color: $color;
|
2023-06-02 18:52:24 +02:00
|
|
|
}
|
2023-06-12 16:28:38 +02:00
|
|
|
}
|
2023-06-07 21:13:23 +02:00
|
|
|
|
2023-06-12 20:38:27 +02:00
|
|
|
> div {
|
|
|
|
display: flex;
|
|
|
|
}
|
2023-06-02 18:52:24 +02:00
|
|
|
|
2023-06-12 20:38:27 +02:00
|
|
|
.console-location {
|
|
|
|
min-width: 7em;
|
|
|
|
}
|
2023-06-12 18:59:27 +02:00
|
|
|
}
|
|
|
|
|
2023-06-02 18:52:24 +02:00
|
|
|
|
|
|
|
|
2023-06-12 18:59:27 +02:00
|
|
|
.sl-c-playground__editor-tabbar {
|
|
|
|
background-color: var(--sl-color--code-background-darker);
|
|
|
|
|
|
|
|
$sassoptions: 'scss', 'indented';
|
2023-06-12 16:28:38 +02:00
|
|
|
@each $option in $sassoptions {
|
|
|
|
&[data-active='#{$option}'] [data-value='#{$option}'] {
|
2023-06-12 18:59:27 +02:00
|
|
|
--color-tab-bg: var(--sl-color--white);
|
|
|
|
--color-button-text: var(--text, var(--sl-color--pale-sky));
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
--color-tab-bg: var(--sl-color--white);
|
|
|
|
--color-button-text: var(--text, var(--sl-color--pale-sky));
|
|
|
|
}
|
2023-06-02 18:52:24 +02:00
|
|
|
}
|
|
|
|
}
|
2023-06-05 20:40:15 +02:00
|
|
|
|
2023-06-12 16:28:38 +02:00
|
|
|
$cssoptions: 'expanded', 'compressed';
|
|
|
|
@each $option in $cssoptions {
|
|
|
|
&[data-active='#{$option}'] [data-value='#{$option}'] {
|
2023-06-12 18:59:27 +02:00
|
|
|
--color-tab-bg: var(--sl-color--code-background);
|
|
|
|
--color-button-text: var(--text, var(--sl-color--pale-sky));
|
2023-06-12 16:28:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-06-05 20:40:15 +02:00
|
|
|
|
2023-06-12 16:28:38 +02:00
|
|
|
#code-editor-error-alert {
|
|
|
|
display: none;
|
|
|
|
font-weight: typography.$sl-font-weight--bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
[data-compiler-has-error='true'] {
|
|
|
|
#code-editor-error-alert {
|
|
|
|
display: block;
|
2023-06-05 20:40:15 +02:00
|
|
|
}
|
2023-06-02 16:53:32 +02:00
|
|
|
}
|
2023-06-12 16:28:38 +02:00
|
|
|
|
|
|
|
[data-tabbar~='item'] {
|
|
|
|
padding: var(--sl-gutter--half);
|
|
|
|
}
|