117 lines
2.1 KiB
SCSS
117 lines
2.1 KiB
SCSS
.placeholder-ui {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 1em;
|
|
background-color: blend-primary-secondary(5%);
|
|
border: 1px solid $primary-low;
|
|
align-items: center;
|
|
margin-bottom: 0.5em;
|
|
|
|
.clear-placeholder {
|
|
svg {
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
|
|
.placeholders-container {
|
|
max-width: 90%;
|
|
margin: -1em 1em 0 0;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
flex: 1;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
a {
|
|
font-size: $font-down-1;
|
|
padding: 0.25em;
|
|
background: $primary-low;
|
|
border-radius: 3px;
|
|
color: $primary-medium;
|
|
margin-top: 1em;
|
|
|
|
&:hover {
|
|
background: $primary-low-mid;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
div.d-wrap[data-wrap="placeholder"] {
|
|
margin: 1em 0;
|
|
}
|
|
|
|
.d-wrap[data-wrap="placeholder"] {
|
|
padding: 0.5em;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
border-left: 5px solid $primary-low;
|
|
background-color: blend-primary-secondary(5%);
|
|
|
|
.discourse-placeholder-name {
|
|
width: 200px;
|
|
font-weight: 700;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
margin-right: 0.5em;
|
|
min-width: 250px;
|
|
}
|
|
|
|
p,
|
|
.discourse-placeholder-name {
|
|
font-size: $font-down-1;
|
|
color: dark-light-choose($primary-high, $secondary-low);
|
|
}
|
|
|
|
p {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 0;
|
|
}
|
|
|
|
.discourse-placeholder-value,
|
|
.discourse-placeholder-select {
|
|
box-sizing: border-box;
|
|
margin-left: 1em;
|
|
}
|
|
|
|
.discourse-placeholder-value {
|
|
width: 350px;
|
|
padding: 0.5em;
|
|
line-height: $line-height-small;
|
|
color: $primary;
|
|
background-color: $secondary;
|
|
border: 1px solid $primary-medium;
|
|
}
|
|
|
|
.discourse-placeholder-select {
|
|
width: 350px;
|
|
margin: 0.5em 0;
|
|
line-height: $line-height-small;
|
|
color: $primary;
|
|
background-color: $secondary;
|
|
border: 1px solid $primary-medium;
|
|
}
|
|
}
|
|
|
|
.discourse-placeholder-builder-modal {
|
|
.input {
|
|
input {
|
|
margin: 0;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.multi-select {
|
|
width: 100%;
|
|
}
|
|
|
|
.description {
|
|
font-size: $font-down-1;
|
|
color: $primary-medium;
|
|
margin: 0.25em 0 1em 0;
|
|
}
|
|
}
|