mirror of
https://git.meshkee.com/Meshkee/dashboards.git
synced 2026-08-12 06:40:57 +04:30
RTL carousels/FABs, special key+title fields, slider gallery fixes, and dashboard SSL sync agent for super-admin. Co-authored-by: Cursor <cursoragent@cursor.com>
61 lines
1.2 KiB
CSS
61 lines
1.2 KiB
CSS
.list {
|
|
background: var(--glass-bg);
|
|
backdrop-filter: blur(20px);
|
|
-webkit-backdrop-filter: blur(20px);
|
|
border: 1px solid var(--glass-border);
|
|
border-radius: var(--radius);
|
|
box-shadow: var(--glass-shadow);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.empty {
|
|
padding: 48px 24px;
|
|
text-align: center;
|
|
font-size: 14px;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.error {
|
|
margin-bottom: 16px;
|
|
padding: 12px 14px;
|
|
font-size: 13px;
|
|
color: #b91c1c;
|
|
background: rgba(239, 68, 68, 0.08);
|
|
border: 1px solid rgba(239, 68, 68, 0.25);
|
|
border-radius: var(--radius-sm);
|
|
}
|
|
|
|
.fabDock {
|
|
position: fixed;
|
|
inset-inline-end: 32px;
|
|
inset-inline-start: auto;
|
|
bottom: 32px;
|
|
z-index: 110;
|
|
}
|
|
|
|
.addFab {
|
|
width: 56px;
|
|
height: 56px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 50%;
|
|
color: white;
|
|
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
|
|
box-shadow: 0 8px 24px rgba(var(--primary-rgb) / 0.4);
|
|
transition: transform 0.2s, box-shadow 0.2s;
|
|
}
|
|
|
|
.addFab:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 12px 28px rgba(var(--primary-rgb) / 0.45);
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.fabDock {
|
|
inset-inline-end: 20px;
|
|
inset-inline-start: auto;
|
|
bottom: 20px;
|
|
}
|
|
}
|