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

141 lines
2.0 KiB
SCSS
Raw Normal View History

.d-editor-container {
2017-11-08 04:39:26 -05:00
display: flex;
flex-grow: 1;
}
.d-editor-overlay {
position: absolute;
background-color: black;
opacity: 0.8;
z-index: 1000;
}
.d-editor-modals {
position: absolute;
z-index: 1001;
}
2017-11-08 04:39:26 -05:00
.d-editor {
display: flex;
flex-grow: 1;
min-height: 0;
}
.d-editor .d-editor-modal {
min-width: 400px;
position: absolute;
background-color: $secondary;
2017-06-11 22:20:14 -04:00
border: 1px solid $primary-low;
padding: 1em;
top: 25px;
input {
width: 98%;
}
h3 {
margin-bottom: 0.5em;
}
}
2017-11-08 04:39:26 -05:00
.d-editor-textarea-wrapper,
.d-editor-preview-wrapper {
flex: 1;
}
.d-editor-textarea-wrapper {
display: flex;
flex-direction: column;
background-color: $secondary;
position: relative;
}
.d-editor-preview-wrapper {
margin-left: 5px;
max-width: 50%;
display: flex;
flex-direction: column;
background: $secondary;
}
.d-editor-button-bar {
2017-11-08 04:39:26 -05:00
display: flex;
align-items: center;
border-bottom: 2px solid $primary-low;
min-height: 30px;
button {
background-color: transparent;
2017-11-08 04:39:26 -05:00
color: $primary-medium;
}
.btn:not(.no-text) {
font-size: 1.2em;
}
.btn.bold {
font-weight: bolder;
}
.btn.italic {
font-style: italic;
}
}
.d-editor-spacer {
width: 1px;
height: 20px;
2017-11-08 04:39:26 -05:00
margin: 0 5px;
2017-06-11 22:20:14 -04:00
background-color: $primary-low;
display: inline-block;
}
2017-11-08 04:39:26 -05:00
.d-editor-input,
.d-editor-preview {
box-shadow: none;
box-sizing: border-box;
height: 100%;
margin: 0;
min-height: auto;
width: 100%;
word-wrap: break-word;
flex-grow: 1;
&:focus {
box-shadow: none;
border: 0;
outline: 0;
}
}
2017-11-08 04:39:26 -05:00
.d-editor-plugin {
display: flex;
overflow: auto;
}
.d-editor-input {
border: 0;
padding: 7px;
overflow-x: hidden;
}
.d-editor-preview {
2017-06-11 22:20:14 -04:00
border: 1px dashed $primary-low;
overflow: auto;
cursor: default;
2017-11-08 04:39:26 -05:00
background-color: $secondary;
padding: 7px;
}
2017-11-08 04:39:26 -05:00
.composing-whisper .d-editor-preview {
font-style: italic;
color: $primary-medium !important;
}
.d-editor-preview > *:first-child {
margin-top: 0;
}
2017-11-08 04:39:26 -05:00
.hide-preview .d-editor-preview-wrapper {
display: none;
flex: 0;
}