PCv5/app/static/css/editor.css

39 lines
777 B
CSS

.editor .btn-group {
display: flex;
justify-content: space-between;
margin: 0 0 8px 0;
}
.editor .btn-group .filler {
flex-grow: 1;
}
.editor .btn-group button {
width: 32px;
height: 32px;
padding: 4px;
background-color: var(--background);
}
.editor .btn-group button:hover {
background: var(--background-hover);
}
.editor .btn-group button > svg {
width: 25px;
}
.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 0 0;
}
.editor textarea {
min-height: 15rem;
}
.separator {
display: inline-block;
width: 0;
border-left: 1px solid #d9d9d9;
border-right: 1px solid #ffffff;
color: transparent;
text-indent: -10px;
}