PCv5/app/static/css/editor.css

23 lines
492 B
CSS

.editor div {
display: flex; flex-direction: row;
flex-wrap: wrap; align-items: center;
margin-bottom: 5px;
}
.editor button {
height: 25px; margin: 0 0px; padding: 0 3px;
border: var(--border); border-radius: 2px;
cursor: pointer;
background: var(--background);
}
.editor button > img {
opacity: .7;
}
.editor button:hover,
.editor button:focus {
border: var(--border-focused);
}
.editor button:hover > img,
.editor button:focus > img {
opacity: 1;
}