PCv5/app/static/less/editor.less

52 lines
736 B
Plaintext

@import "vars";
.editor {
.btn-group {
display: flex;
justify-content: space-between;
margin: 0 0 8px 0;
.filler {
flex-grow: 1;
}
button {
width: 32px;
height: 32px;
/* This centers the 20x20 SVG in the button */
padding: 6px;
background-color: var(--background);
&:hover {
background: var(--background-hover);
}
& > svg {
width: 20px;
height: 20px;
& > path, & > rect {
fill: var(--icons);
}
}
}
button, .separator {
margin: 0 8px 0 0;
}
}
textarea {
min-height: 15rem;
}
}
// From gitea
.separator {
display: inline-block;
width: 0;
border-left: 1px solid #d9d9d9;
border-right: 1px solid #fff;
color: transparent;
text-indent: -10px;
}