44cf9c0e70
Been working on this when I could the last few days. Not quite infinity. Middle mouse button drag, ctrl mouse wheel zoom. Signed-off-by: Victor Seiji Hariki <victorseijih@gmail.com>
46 lines
594 B
CSS
46 lines
594 B
CSS
/* Debug floating window */
|
|
#layer-preview .preview-canvas {
|
|
background-color: white;
|
|
width: 100%;
|
|
height: 150px;
|
|
}
|
|
|
|
#layer-manager .menu-container {
|
|
height: 200px;
|
|
}
|
|
|
|
.layer-render-target {
|
|
position: fixed;
|
|
background-color: #466;
|
|
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
top: 0;
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.layer-render-target .collection {
|
|
position: absolute;
|
|
}
|
|
|
|
.layer-render-target .collection > .collection-input-overlay {
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
left: 0;
|
|
|
|
z-index: 10;
|
|
}
|
|
|
|
.layer-render-target canvas {
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
}
|