Migrate to Mantine v8 and Design Changes (#961)

* mantine v8 migration

* various design changes and improvements
This commit is contained in:
Jeff 2025-06-24 00:04:36 -07:00 committed by GitHub
parent bea55d48a8
commit c1330d92b2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
473 changed files with 12469 additions and 11607 deletions

View file

@ -0,0 +1,62 @@
.queue-container {
position: relative;
display: flex;
height: 100%;
:global(.ag-header) {
display: none;
}
:global(.ag-theme-alpine-dark) {
--ag-header-background-color: rgb(0 0 0 / 0%) !important;
--ag-background-color: rgb(0 0 0 / 0%) !important;
--ag-odd-row-background-color: rgb(0 0 0 / 0%) !important;
}
:global(.ag-row) {
&::before {
background: rgb(0 0 0 / 10%) !important;
border: none !important;
}
}
:global(.ag-row-hover) {
background: rgb(0 0 0 / 10%) !important;
}
}
.active-tab-indicator {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background: var(--theme-colors-foreground);
}
.header-item-wrapper {
position: relative;
z-index: 2;
display: flex;
gap: 0;
}
.grid-container {
position: relative;
display: grid;
grid-template-rows: auto minmax(0, 1fr);
grid-template-columns: 1fr;
padding: 1rem;
&::before {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
content: '';
background: var(--theme-colors-background);
border-radius: 5px;
opacity: var(--opacity, 1);
}
}