discourse/app/assets/stylesheets/common/d-editor.scss

120 lines
1.7 KiB
SCSS

.d-editor {
border: 1px solid $primary-low;
}
.d-editor-container {
padding: 0 10px 13px 10px;
}
.d-editor-overlay {
position: absolute;
background-color: black;
opacity: 0.8;
z-index: 1000;
}
.d-editor-modals {
position: absolute;
z-index: 1001;
}
.d-editor .d-editor-modal {
min-width: 400px;
position: absolute;
background-color: $secondary;
border: 1px solid $primary-low;
padding: 1em;
top: 25px;
input {
width: 98%;
}
h3 {
margin-bottom: 0.5em;
}
}
.d-editor-button-bar {
margin: 5px;
padding: 0;
height: 20px;
overflow: hidden;
button {
background-color: transparent;
padding: 2px 4px;
float: left;
margin-right: 6px;
min-width: 20px;
}
.btn:not(.no-text) {
font-size: 1.2em;
}
.btn.bold {
font-weight: bolder;
}
.btn.italic {
font-style: italic;
}
.btn.heading {
font-family: Palatino, Cambria, Georgia, "Times New Roman", serif;
font-weight: bold;
}
}
.d-editor-spacer {
width: 1px;
height: 20px;
margin-right: 8px;
margin-left: 5px;
background-color: $primary-low;
display: inline-block;
float: left;
}
.d-editor-input {
color: $primary;
width: 98%;
height: 200px;
&:disabled {
background-color: $primary-low;
}
}
.d-editor-preview {
color: $primary;
border: 1px dashed $primary-low;
overflow: auto;
cursor: default;
margin-top: 8px;
padding: 8px 8px 0 8px;
video {
max-width: 100%;
max-height: 500px;
height: auto;
}
audio {
max-width: 100%;
}
&.hidden {
width: 0;
visibility: hidden;
}
}
.composing-whisper {
.d-editor-preview {
font-style: italic;
color: $primary-medium !important;
}
}
.d-editor-preview > *:first-child {
margin-top: 0;
}