257 lines
5.2 KiB
SCSS
257 lines
5.2 KiB
SCSS
|
@mixin esri-editor__prompt($contextColor) {
|
||
|
background-color: var(--calcite-ui-background);
|
||
|
border-top: solid 3px $contextColor;
|
||
|
color: $font-color;
|
||
|
@include defaultBoxShadow();
|
||
|
padding: $cap-spacing $side-spacing;
|
||
|
position: absolute;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
max-height: 85%;
|
||
|
|
||
|
display: flex;
|
||
|
flex-flow: column nowrap;
|
||
|
|
||
|
animation: esri-fade-in-up 250ms ease-in-out;
|
||
|
|
||
|
.esri-editor__prompt__header {
|
||
|
color: $contextColor;
|
||
|
display: flex;
|
||
|
margin-bottom: $cap-spacing;
|
||
|
flex: 0 0 auto;
|
||
|
align-items: center;
|
||
|
gap: $side-spacing--half;
|
||
|
|
||
|
&__heading {
|
||
|
color: $heading-color;
|
||
|
margin: 0 $side-spacing--quarter;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.esri-editor__prompt__message {
|
||
|
color: inherit;
|
||
|
font-weight: $font-weight;
|
||
|
word-break: break-word;
|
||
|
flex: 1 1 auto;
|
||
|
overflow: auto;
|
||
|
overflow-x: hidden;
|
||
|
padding: 0 0 $cap-spacing 0;
|
||
|
}
|
||
|
|
||
|
.esri-editor__prompt__divider {
|
||
|
color: inherit;
|
||
|
margin: 0 0 $cap-spacing 0;
|
||
|
border-bottom: $border;
|
||
|
border-color: $border-color--subtle;
|
||
|
flex: 0 0 auto;
|
||
|
}
|
||
|
|
||
|
.esri-editor__prompt__actions {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@mixin editor() {
|
||
|
$headerOrFooterHeight: 56px;
|
||
|
$border: 1px solid $border-color;
|
||
|
$panel-background-color: var(--calcite-ui-background);
|
||
|
|
||
|
.esri-editor {
|
||
|
background-color: $panel-background-color;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
height: 100%;
|
||
|
position: relative;
|
||
|
|
||
|
.esri-item-list {
|
||
|
background-color: transparent;
|
||
|
}
|
||
|
|
||
|
.esri-item-list__group {
|
||
|
margin-left: 0;
|
||
|
margin-right: 0;
|
||
|
|
||
|
&:first-of-type {
|
||
|
margin-top: 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.esri-item-list__filter-container,
|
||
|
.esri-item-list__filter-container--sticky {
|
||
|
background-color: var(--calcite-ui-background);
|
||
|
margin-bottom: 10px;
|
||
|
padding: 10px 0;
|
||
|
}
|
||
|
|
||
|
.esri-feature-form {
|
||
|
width: 100%;
|
||
|
padding: 0;
|
||
|
|
||
|
.esri-feature-form__label:last-child {
|
||
|
margin-bottom: 12px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
$template-item-content-end-margin: 0.75rem; // Matches default spacing used by Calcite
|
||
|
|
||
|
&__template-item-content-end {
|
||
|
display: block;
|
||
|
margin-inline: $template-item-content-end-margin;
|
||
|
|
||
|
&--success {
|
||
|
--calcite-ui-icon-color: var(--calcite-ui-success);
|
||
|
}
|
||
|
&--error {
|
||
|
--calcite-ui-icon-color: var(--calcite-ui-danger);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&__template-item-loader {
|
||
|
margin-inline: $template-item-content-end-margin;
|
||
|
color: $border-color--active;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.esri-editor__content {
|
||
|
justify-content: center;
|
||
|
align-items: flex-start;
|
||
|
flex: 1 1 auto;
|
||
|
min-height: 20vh;
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
|
||
|
animation: esri-fade-in 250ms ease-in-out;
|
||
|
transition: min-height 250ms ease-in-out;
|
||
|
&:empty {
|
||
|
min-height: 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.esri-editor__content-group {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
flex: 1 0 100%;
|
||
|
}
|
||
|
|
||
|
.esri-editor__scroller {
|
||
|
overflow-y: auto;
|
||
|
padding-top: $cap-spacing--half;
|
||
|
padding-bottom: $cap-spacing;
|
||
|
}
|
||
|
|
||
|
.esri-expand__content {
|
||
|
.esri-editor {
|
||
|
.esri-feature-form {
|
||
|
max-height: fit-content;
|
||
|
overflow-y: visible;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.esri-editor__actions {
|
||
|
display: flex;
|
||
|
width: 100%;
|
||
|
row-gap: $cap-spacing--half;
|
||
|
|
||
|
calcite-button {
|
||
|
flex-grow: 1;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.esri-editor__help-message {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: flex-start;
|
||
|
width: 100%;
|
||
|
padding-inline: calc(#{$side-spacing} - 0.5rem); // Align with the editor content
|
||
|
}
|
||
|
|
||
|
.esri-editor__prompt--info {
|
||
|
@include esri-editor__prompt(var(--calcite-ui-info));
|
||
|
}
|
||
|
|
||
|
.esri-editor__prompt--warning {
|
||
|
@include esri-editor__prompt(var(--calcite-ui-warning));
|
||
|
}
|
||
|
|
||
|
.esri-editor__prompt--danger {
|
||
|
@include esri-editor__prompt(var(--calcite-ui-danger));
|
||
|
}
|
||
|
|
||
|
.esri-editor__overlay {
|
||
|
position: absolute;
|
||
|
overflow: hidden;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
top: 0;
|
||
|
background-color: $background-color--overlay;
|
||
|
}
|
||
|
|
||
|
.esri-editor__panel-toolbar {
|
||
|
--divider-border: 1px solid var(--calcite-ui-border-2);
|
||
|
|
||
|
background-color: var(--calcite-ui-foreground-1);
|
||
|
border-bottom: var(--divider-border);
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
}
|
||
|
|
||
|
.esri-editor__panel-content {
|
||
|
position: relative;
|
||
|
height: auto;
|
||
|
min-height: 20vh;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
padding-top: 0;
|
||
|
padding-bottom: 0;
|
||
|
|
||
|
&__section {
|
||
|
padding: $cap-spacing $side-spacing;
|
||
|
position: relative;
|
||
|
|
||
|
&__group {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
flex: 1 0 100%;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&__message {
|
||
|
display: flex;
|
||
|
flex-basis: 100%;
|
||
|
flex-grow: 1;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
font-size: var(--calcite-font-size-0);
|
||
|
padding: 0 15px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.esri-editor__panel-content__scrim-container {
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
.esri-editor__settings {
|
||
|
width: 100%;
|
||
|
border: 0;
|
||
|
}
|
||
|
|
||
|
.esri-editor__feature-templates-container {
|
||
|
.esri-feature-templates {
|
||
|
width: 100%;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.esri-editor__notice {
|
||
|
margin-bottom: $cap-spacing;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@if $include_Editor == true {
|
||
|
@include editor();
|
||
|
}
|