pwm
pwm copied to clipboard
CSS-Fix for theme "water"
The "water"-theme is really pretty, but many text parts are not readable as they have the same color as the background in this theme.
I've fixed this with these changes:
In the sections "table td" and "table td.key" in style.css a "color: black" attribute must be added.
table td {
border: 2px solid #003333;
padding-left: 5px;
color: black;
}
table td.key {
text-align: right;
font-weight: bold;
padding-right: 10px;
width: 200px;
color: black;
}
Also I've added these two definitions:
table td.ng-binding {
color: white;
}
table td.noborder {
color: white;
}
Maybe this should be corrected in the source of the project. It might be that similar themes like "Tulip" etc. need similar fixes (I dod not test).
Please make a pull request.
@jrivard Done.