This commit is contained in:
Mateusz Gruszczyński
2026-04-06 10:46:48 +02:00
parent 1ba1a26291
commit 0c7414101a
23 changed files with 962 additions and 355 deletions

View File

@@ -1,8 +1,6 @@
@import "@tabler/core/dist/css/tabler.min.css";
:root {
--tblr-primary: #111827;
--tblr-primary-rgb: 17, 24, 39;
--tblr-border-radius: 1rem;
--tblr-border-radius-lg: 1rem;
--tblr-border-radius-sm: 0.75rem;
@@ -62,8 +60,6 @@ body {
}
[data-bs-theme="dark"] {
--tblr-primary: #0f172a;
--tblr-primary-rgb: 15, 23, 42;
--tblr-body-bg: #06080d;
--ec-shell-bg: #06080d;
--ec-card-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
@@ -326,6 +322,28 @@ body {
border: 1px solid var(--ec-card-border);
}
.ec-category-picker {
z-index: 5;
}
.ec-category-picker .dropdown-menu,
.ec-category-picker-menu {
z-index: 1085;
}
[data-bs-theme="dark"] .btn-primary,
[data-bs-theme="dark"] .btn-success,
[data-bs-theme="dark"] .btn-danger,
[data-bs-theme="dark"] .btn-warning,
[data-bs-theme="dark"] .btn-info,
[data-bs-theme="dark"] .btn-outline-primary,
[data-bs-theme="dark"] .btn-outline-secondary,
[data-bs-theme="dark"] .btn-outline-danger,
[data-bs-theme="dark"] .btn-outline-info,
[data-bs-theme="dark"] .btn-outline-warning {
filter: none;
}
@media (max-width: 992px) {
.pv-subnav-shell,
@@ -375,3 +393,32 @@ body {
}
}
.ec-picker-badge {
color: var(--tblr-body-color);
background: rgba(var(--tblr-secondary-rgb), 0.16);
border: 1px solid rgba(var(--tblr-secondary-rgb), 0.18);
}
.ec-picker-dot {
min-width: 0.75rem;
min-height: 0.75rem;
border: 1px solid rgba(255, 255, 255, 0.28);
}
[data-bs-theme="dark"] .ec-picker-badge {
color: #f8fafc;
background: rgba(248, 250, 252, 0.12);
border-color: rgba(248, 250, 252, 0.18);
}
[data-bs-theme="dark"] .badge.bg-dark-lt {
color: #f8fafc;
background: rgba(248, 250, 252, 0.14) !important;
}
[data-bs-theme="dark"] .badge.bg-secondary {
color: #f8fafc;
}