genarato alcuni partials e corretto drop down

This commit is contained in:
fabio
2026-02-23 17:09:35 +01:00
parent 3fc01cc4f7
commit 2552b8ad8f
35 changed files with 587 additions and 221 deletions

View File

@@ -901,6 +901,9 @@
.mx-auto {
margin-inline: auto;
}
.my-2 {
margin-block: calc(var(--spacing) * 2);
}
.my-4 {
margin-block: calc(var(--spacing) * 4);
}
@@ -1460,6 +1463,9 @@
.w-10 {
width: calc(var(--spacing) * 10);
}
.w-40 {
width: calc(var(--spacing) * 40);
}
.w-44 {
width: calc(var(--spacing) * 44);
}
@@ -1549,6 +1555,9 @@
border-color: var(--color-blue-600);
}
}
.min-w-\[95px\] {
min-width: 95px;
}
.flex-1 {
flex: 1;
}
@@ -1734,6 +1743,9 @@
.overflow-y-auto {
overflow-y: auto;
}
.rounded {
border-radius: 0.25rem;
}
.rounded-full {
border-radius: calc(infinity * 1px);
}
@@ -2083,6 +2095,9 @@
stroke: var(--color-gray-700) !important;
}
}
.object-cover {
object-fit: cover;
}
.apexcharts-legend {
.apexcharts-canvas & {
padding: 0 !important;
@@ -2138,6 +2153,9 @@
.py-0\.5 {
padding-block: calc(var(--spacing) * 0.5);
}
.py-1 {
padding-block: calc(var(--spacing) * 1);
}
.py-2 {
padding-block: calc(var(--spacing) * 2);
}
@@ -2274,6 +2292,10 @@
--tw-leading: calc(var(--spacing) * 9);
line-height: calc(var(--spacing) * 9);
}
.leading-none {
--tw-leading: 1;
line-height: 1;
}
.leading-relaxed {
--tw-leading: var(--leading-relaxed);
line-height: var(--leading-relaxed);
@@ -2600,11 +2622,6 @@
margin-inline-start: calc(var(--spacing) * 4);
}
}
.md\:me-0 {
@media (width >= 48rem) {
margin-inline-end: calc(var(--spacing) * 0);
}
}
.md\:mt-0 {
@media (width >= 48rem) {
margin-top: calc(var(--spacing) * 0);
@@ -2900,6 +2917,16 @@
}
}
}
@layer utilities {
.flag-lang {
width: 32px;
height: 22px;
}
.flag-lang-ch {
width: 22px;
height: 22px;
}
}
@layer base {
.tooltip-arrow,.tooltip-arrow:before {
position: absolute;

5
web/static/vendor/flags/ch.svg vendored Normal file
View File

@@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true">
<rect width="24" height="24" fill="#d52b1e"/>
<rect x="10" y="5" width="4" height="14" fill="#ffffff"/>
<rect x="5" y="10" width="14" height="4" fill="#ffffff"/>
</svg>

After

Width:  |  Height:  |  Size: 255 B

5
web/static/vendor/flags/de.svg vendored Normal file
View File

@@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3 2" aria-hidden="true">
<rect width="3" height="0.6667" x="0" y="0" fill="#000000"/>
<rect width="3" height="0.6667" x="0" y="0.6667" fill="#dd0000"/>
<rect width="3" height="0.6667" x="0" y="1.3333" fill="#ffce00"/>
</svg>

After

Width:  |  Height:  |  Size: 284 B

11
web/static/vendor/flags/en.svg vendored Normal file
View File

@@ -0,0 +1,11 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 30" aria-hidden="true">
<clipPath id="s"><path d="M0,0 v30 h60 v-30 z"/></clipPath>
<clipPath id="t"><path d="M30,15 h30 v15 z v-30 h-30 z h-30 v15 z v15 h30 z"/></clipPath>
<g clip-path="url(#s)">
<path d="M0,0 v30 h60 v-30 z" fill="#012169"/>
<path d="M0,0 L60,30 M60,0 L0,30" stroke="#fff" stroke-width="6"/>
<path d="M0,0 L60,30 M60,0 L0,30" clip-path="url(#t)" stroke="#C8102E" stroke-width="4"/>
<path d="M30,0 v30 M0,15 h60" stroke="#fff" stroke-width="10"/>
<path d="M30,0 v30 M0,15 h60" stroke="#C8102E" stroke-width="6"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 628 B

12
web/static/vendor/flags/en_us.svg vendored Normal file
View File

@@ -0,0 +1,12 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 190 100" aria-hidden="true">
<rect width="190" height="100" fill="#b22234"/>
<g fill="#fff">
<rect y="7.69" width="190" height="7.69"/>
<rect y="23.08" width="190" height="7.69"/>
<rect y="38.46" width="190" height="7.69"/>
<rect y="53.85" width="190" height="7.69"/>
<rect y="69.23" width="190" height="7.69"/>
<rect y="84.62" width="190" height="7.69"/>
</g>
<rect width="76" height="53.85" fill="#3c3b6e"/>
</svg>

After

Width:  |  Height:  |  Size: 502 B

5
web/static/vendor/flags/fr.svg vendored Normal file
View File

@@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3 2" aria-hidden="true">
<rect width="1" height="2" x="0" y="0" fill="#0055a4"/>
<rect width="1" height="2" x="1" y="0" fill="#ffffff"/>
<rect width="1" height="2" x="2" y="0" fill="#ef4135"/>
</svg>

After

Width:  |  Height:  |  Size: 259 B

5
web/static/vendor/flags/it.svg vendored Normal file
View File

@@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3 2" aria-hidden="true">
<rect width="1" height="2" x="0" y="0" fill="#009246"/>
<rect width="1" height="2" x="1" y="0" fill="#ffffff"/>
<rect width="1" height="2" x="2" y="0" fill="#ce2b37"/>
</svg>

After

Width:  |  Height:  |  Size: 259 B