popup move handle + resize

This commit is contained in:
Julie Blanc 2026-03-06 18:07:27 +01:00
parent 1dad95b726
commit 1832b031be
2 changed files with 46 additions and 3 deletions

View file

@ -535,9 +535,15 @@ input[type=number] {
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
z-index: 10;
width: 860px;
max-height: 600px;
height: 600px;
min-width: 480px;
max-width: 75vw;
min-height: 250px;
max-height: 70vh;
display: flex;
flex-direction: column;
resize: both;
overflow: hidden;
}
.popup-header {
@ -547,6 +553,12 @@ input[type=number] {
padding: 0.75rem 1rem;
border-bottom: 1px solid #e0e0e0;
background: #f9f9f9;
cursor: grab;
user-select: none;
}
.popup-header:active {
cursor: grabbing;
}
.header-left {