mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-06-13 19:15:03 +00:00
56 lines
855 B
CSS
56 lines
855 B
CSS
#box-drag-container {
|
|
position: relative;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
#pdf-canvas {
|
|
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.384);
|
|
width: 100%;
|
|
}
|
|
|
|
.draggable-buttons-box {
|
|
position: relative;
|
|
top: 0;
|
|
padding: 10px;
|
|
width: calc(100% + 4.4rem);
|
|
display: flex;
|
|
gap: 5px;
|
|
z-index: 5;
|
|
margin-left: -2.2rem;
|
|
}
|
|
|
|
.draggable-buttons-box>button {
|
|
z-index: 4;
|
|
background-color: rgba(13, 110, 253, 0.1);
|
|
flex: 1 1 auto;
|
|
min-width: 2.5rem;
|
|
max-width: 4rem;
|
|
}
|
|
|
|
|
|
.draggable-canvas {
|
|
border: 1px solid red;
|
|
position: absolute;
|
|
touch-action: none;
|
|
user-select: none;
|
|
top: 0px;
|
|
left: 0;
|
|
}
|
|
|
|
.input-with-icon {
|
|
position: relative;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.input-with-icon .icon {
|
|
position: absolute;
|
|
left: 0.5rem;
|
|
pointer-events: none;
|
|
color: #aaa;
|
|
}
|
|
|
|
.input-with-icon input {
|
|
padding-left: 2.2rem;
|
|
}
|