fix color picker z-index (always above)
All checks were successful
Deploy / Build and Deploy to Production (push) Successful in 16s

This commit is contained in:
isUnknown 2026-01-09 17:03:11 +01:00
parent 83455b7098
commit e229deb0f6
5 changed files with 20 additions and 19 deletions

View file

@ -5,7 +5,7 @@
background: white; background: white;
border-radius: 8px; border-radius: 8px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
z-index: 10000; z-index: 10;
width: 860px; width: 860px;
max-height: 600px; max-height: 600px;
display: flex; display: flex;

View file

@ -529,7 +529,7 @@ input[type=number] {
background: white; background: white;
border-radius: 8px; border-radius: 8px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
z-index: 10000; z-index: 10;
width: 860px; width: 860px;
max-height: 600px; max-height: 600px;
display: flex; display: flex;

File diff suppressed because one or more lines are too long

View file

@ -22,18 +22,24 @@ Customcss:
background: rgba(255, 255, 255, 1); background: rgba(255, 255, 255, 1);
} }
p { body {
font-family: DM Sans; font-family: "DM Sans", sans-serif;
font-style: normal; text-align: left;
font-weight: 400; color: rgb(190, 9, 9);
font-size: 16px; }
text-align: start;
color: rgb(0, 0, 0);
background: rgba(113, 54, 255, 0.1);
margin: 0px;
padding: 0px;
background: blue; p {
text-align: right;
font-size: 14px;
margin: 0mm;
font-weight: 300;
font-family: Arial;
font-style: italic;
padding-top: 20mm;
padding-right: 20mm;
padding-bottom: 20mm;
padding-left: 20mm;
padding: 0mm;
} }
---- ----

View file

@ -675,11 +675,6 @@ onMounted(async () => {
height: 1.5rem; height: 1.5rem;
} }
/* Coloris color picker - ensure it's always on top */
:deep(.clr-picker) {
z-index: 10000 !important;
}
/* Coloris button - ensure it's clickable and visible */ /* Coloris button - ensure it's clickable and visible */
:deep(.clr-field button) { :deep(.clr-field button) {
pointer-events: auto !important; pointer-events: auto !important;