mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 12:49:37 +03:00
dark mode accommodations
This commit is contained in:
parent
627fa54db5
commit
b4aad7ccf7
1 changed files with 15 additions and 0 deletions
|
@ -10,6 +10,11 @@
|
|||
.ant-table-cell {
|
||||
color: rgba(0,0,0,.25)
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
.ant-table-cell {
|
||||
color: rgba(255,255,255,.25)
|
||||
}
|
||||
}
|
||||
}
|
||||
.ant-table-cell {
|
||||
font-size: 12px;
|
||||
|
@ -55,6 +60,11 @@
|
|||
.label {
|
||||
color: #000;
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
.label {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.label {
|
||||
|
@ -104,4 +114,9 @@
|
|||
.ant-btn-text:hover {
|
||||
background-color: rgba(0,0,0,.1)
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
.ant-btn-text:hover {
|
||||
background-color: rgba(255,255,255,.3)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue