brvphoenix / luci-app-wrtbwmon

Bandwidth monitor for OpenWRT
251 stars 53 forks source link

Dark mode GUI needs some fixing #55

Closed piterq closed 1 year ago

piterq commented 2 years ago

There is improper bright background in the header: image

The summary (total) row is hard to read due to grey backgroud: image

Suggested fixes

1. Remove this line from details.js:

tc = (pc >= 80 ? 'white' : '#404040');

2. Change this code in wrtbwmon.css file:

.tr.table-totals {
    background: #e0e0e0 !important;
}

to this code:

.tr.table-totals {
    font-weight: bold;
}
HahahahaChen commented 1 year ago

I think you can make a pull request