fix: darkmode ui bugs

This commit is contained in:
Ahmed Bouhuolia
2026-01-03 18:24:33 +02:00
parent 5767f1f603
commit ee92c2815b
21 changed files with 246 additions and 206 deletions

View File

@@ -8,12 +8,19 @@
.avatar.td {
.avatar {
--x-color-background: #adbcc9;
--x-color-text: #fff;
.bp4-dark & {
--x-color-background: rgba(255, 255, 255, 0.2);
--x-color-text: #fff;
}
display: inline-block;
background: #adbcc9;
background: var(--x-color-background);
border-radius: 50%;
text-align: center;
font-weight: 400;
color: #fff;
color: var(--x-color-text);
&[data-size='medium'] {
height: 30px;

View File

@@ -9,12 +9,19 @@
.avatar.td {
.avatar {
--x-color-background: #adbcc9;
--x-color-text: #fff;
.bp4-dark & {
--x-color-background: rgba(255, 255, 255, 0.2);
--x-color-text: #fff;
}
display: inline-block;
background: #adbcc9;
background: var(--x-color-background);
color: var(--x-color-text);
border-radius: 50%;
text-align: center;
font-weight: 400;
color: #fff;
&[data-size='medium'] {
height: 30px;