250c833895
Also updates a lot of other things (brush size now independent from scale factor, split some files, and a lot other things; removed erase safeguard as now erase is supported by undo/redo; tried adding github prettier autoformatting to pull requests; may have some other things as well Signed-off-by: Victor Seiji Hariki <victorseijih@gmail.com> Former-commit-id: 0ba21f23c69f9dca2c3189a838b945900b01f81d
32 lines
534 B
CSS
32 lines
534 B
CSS
/* UI Floating Windows */
|
|
.floating-window {
|
|
position: fixed;
|
|
width: 250px;
|
|
height: auto;
|
|
z-index: 999;
|
|
}
|
|
|
|
.floating-window-title {
|
|
cursor: move;
|
|
background-color: rgba(104, 104, 104, 0.75);
|
|
|
|
user-select: none;
|
|
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
padding-top: 5px;
|
|
padding-bottom: 5px;
|
|
margin-bottom: auto;
|
|
font-size: 1.5em;
|
|
color: black;
|
|
text-align: center;
|
|
border-top-left-radius: 10px;
|
|
border-top-right-radius: 10px;
|
|
border: solid;
|
|
border-bottom: none;
|
|
border-color: black;
|
|
}
|
|
|
|
.draggable {
|
|
cursor: move;
|
|
}
|