dark mode accommodations
This commit is contained in:
@@ -10,6 +10,11 @@
|
|||||||
.ant-table-cell {
|
.ant-table-cell {
|
||||||
color: rgba(0,0,0,.25)
|
color: rgba(0,0,0,.25)
|
||||||
}
|
}
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
.ant-table-cell {
|
||||||
|
color: rgba(255,255,255,.25)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.ant-table-cell {
|
.ant-table-cell {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
@@ -55,6 +60,11 @@
|
|||||||
.label {
|
.label {
|
||||||
color: #000;
|
color: #000;
|
||||||
}
|
}
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
.label {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.label {
|
.label {
|
||||||
@@ -104,4 +114,9 @@
|
|||||||
.ant-btn-text:hover {
|
.ant-btn-text:hover {
|
||||||
background-color: rgba(0,0,0,.1)
|
background-color: rgba(0,0,0,.1)
|
||||||
}
|
}
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
.ant-btn-text:hover {
|
||||||
|
background-color: rgba(255,255,255,.3)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user