Browse Source

dark mode accommodations

pull/1886/head
gingervitis 6 years ago committed by Gabe Kangas
parent
commit
50e729318c
  1. 15
      web/styles/chat.scss

15
web/styles/chat.scss

@ -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)
}
}
} }

Loading…
Cancel
Save