discourse-placeholder-theme.../common/common.scss

76 lines
1.5 KiB
SCSS
Raw Normal View History

div.d-wrap[data-wrap="placeholder"] {
margin: 1em 0;
}
.d-wrap[data-wrap="placeholder"] {
2019-05-14 05:18:12 -04:00
padding: 0.5em;
display: flex;
align-items: center;
justify-content: space-between;
2021-06-01 05:31:53 -04:00
border-left: 5px solid var(--primary-low);
2021-06-01 05:34:59 -04:00
background-color: var(--blend-primary-secondary-5);
2019-05-14 05:18:12 -04:00
.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 {
2023-12-05 17:15:32 -05:00
font-size: var(--font-down-1);
2021-06-01 05:38:29 -04:00
color: var(--primary-or-secondary);
}
p {
display: flex;
flex-direction: column;
margin: 0;
2019-05-14 05:18:12 -04:00
}
.discourse-placeholder-value,
.discourse-placeholder-select {
box-sizing: border-box;
margin-left: 1em;
2019-05-14 05:18:12 -04:00
}
.discourse-placeholder-value {
width: 350px;
2019-05-14 05:18:12 -04:00
padding: 0.5em;
2023-12-05 17:15:32 -05:00
line-height: var(--line-height-small);
2021-06-01 05:31:53 -04:00
color: var(--primary);
background-color: var(--secondary);
border: 1px solid var(--primary-medium);
2019-05-14 05:18:12 -04:00
}
.discourse-placeholder-select {
width: 350px;
2019-05-14 05:18:12 -04:00
margin: 0.5em 0;
2023-12-05 17:15:32 -05:00
line-height: var(--line-height-small);
2021-06-01 05:31:53 -04:00
color: var(--primary);
background-color: var(--secondary);
border: 1px solid var(--primary-medium);
2019-05-14 05:18:12 -04:00
}
}
2023-12-05 17:15:32 -05:00
.placeholder-builder {
.input input {
margin: 0;
width: 100%;
}
.multi-select {
width: 100%;
}
.description {
font-size: $font-down-1;
2021-06-01 05:31:53 -04:00
color: var(--primary-medium);
margin: 0.25em 0 1em 0;
}
}