PCv5/app/static/css/editor.css

48 lines
947 B
CSS

.editor .btn-group {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
align-items: flex-end;
}
.editor .btn-group .filler {
flex-grow: 1;
}
.editor .btn-group button {
padding: 6px;
background-color: var(--background);
}
.editor .btn-group button:hover {
background: var(--background-hover);
}
.editor .btn-group button > svg {
width: 20px;
height: 20px;
}
.editor .btn-group button > svg > path,
.editor .btn-group button > svg > rect {
fill: var(--icons);
}
.editor .btn-group button,
.editor .btn-group .separator {
margin: 0 8px 8px 0;
height: 32px;
}
.editor .btn-group > a {
margin: 0 0 8px 0;
}
.editor textarea {
min-height: 15rem;
}
.editor #editor_content_preview {
margin: 5px;
margin-top: 10px;
border: var(--border);
}
.separator {
display: inline-block;
width: 0;
border-left: 1px solid #d9d9d9;
border-right: 1px solid #ffffff;
color: transparent;
text-indent: -10px;
}