delete me

This commit is contained in:
DanielS
2026-05-29 14:14:04 +02:00
parent bd1bd52c6c
commit 5462784c1f
621 changed files with 2047 additions and 750 deletions

View File

@@ -1073,3 +1073,105 @@ input:checked + .toggle-slider::before {
color: var(--text-muted);
font-size: 11px;
}
/* Learn Tab specific styles */
.learn-articles-list {
scrollbar-width: thin;
scrollbar-color: var(--border-glass) transparent;
}
.learn-article-item {
padding: 8px 12px;
border-radius: var(--border-radius-sm);
background: rgba(255, 255, 255, 0.02);
border: 1px solid var(--border-glass);
color: var(--text-secondary);
font-size: 13px;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: all 0.2s ease;
}
.learn-article-item:hover {
background: rgba(99, 102, 241, 0.06);
border-color: rgba(99, 102, 241, 0.3);
color: var(--text-primary);
}
.learn-article-item.selected {
background: rgba(99, 102, 241, 0.15);
border-color: var(--color-primary);
color: var(--text-primary);
box-shadow: 0 0 10px rgba(99, 102, 241, 0.15);
font-weight: 500;
}
.learn-article-item .item-plu {
font-family: monospace;
font-size: 11px;
background: rgba(255, 255, 255, 0.05);
padding: 2px 6px;
border-radius: 4px;
color: var(--text-muted);
}
.learn-article-item.selected .item-plu {
background: rgba(99, 102, 241, 0.3);
color: #a5b4fc;
}
.gallery-item-wrapper {
position: relative;
border-radius: var(--border-radius-md);
border: 1px solid var(--border-glass);
background: rgba(0, 0, 0, 0.3);
aspect-ratio: 4/3;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
transition: all 0.2s ease;
}
.gallery-item-wrapper:hover {
transform: scale(1.03);
border-color: var(--color-accent);
box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
}
.gallery-item-img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.gallery-item-delete-btn {
position: absolute;
top: 6px;
right: 6px;
width: 22px;
height: 22px;
background: rgba(239, 68, 68, 0.9);
border: none;
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
opacity: 0;
transition: all 0.2s ease;
font-size: 11px;
font-weight: bold;
box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.gallery-item-wrapper:hover .gallery-item-delete-btn {
opacity: 1;
}
.gallery-item-delete-btn:hover {
background: var(--color-danger);
transform: scale(1.1);
}