Release v0.2.10: Update package-lock.json and CI config

This commit is contained in:
Joan
2025-12-30 18:51:21 +01:00
parent 8b31011334
commit 592f38827e
108 changed files with 2755 additions and 1112 deletions

View File

@@ -0,0 +1,86 @@
.language-selector {
position: relative;
display: inline-block;
}
.language-btn {
display: flex;
align-items: center;
gap: 0.4rem;
padding: 0.5rem 0.75rem;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 6px;
color: #fff;
cursor: pointer;
font-size: 0.9rem;
transition: all 0.2s;
}
.language-btn:hover {
background: rgba(255, 255, 255, 0.15);
border-color: rgba(255, 255, 255, 0.3);
}
.lang-flag {
font-size: 1.1rem;
}
.lang-code {
font-weight: 500;
letter-spacing: 0.5px;
}
.language-dropdown {
position: absolute;
top: 100%;
right: 0;
margin-top: 0.25rem;
background: #1a1a2e;
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 8px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
overflow: hidden;
opacity: 0;
visibility: hidden;
transform: translateY(-8px);
transition: all 0.2s ease;
z-index: 1000;
min-width: 140px;
}
.language-selector:hover .language-dropdown,
.language-selector:focus-within .language-dropdown {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.lang-option {
display: flex;
align-items: center;
gap: 0.6rem;
width: 100%;
padding: 0.65rem 1rem;
border: none;
background: transparent;
color: #ccc;
cursor: pointer;
text-align: left;
font-size: 0.9rem;
transition: all 0.15s;
}
.lang-option:hover {
background: rgba(255, 255, 255, 0.1);
color: #fff;
}
.lang-option.active {
background: rgba(100, 100, 255, 0.2);
color: #8bf;
}
.lang-name {
font-weight: 400;
}