pwm icon indicating copy to clipboard operation
pwm copied to clipboard

CSS-Fix for theme "water"

Open jacotec opened this issue 6 years ago • 2 comments

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).

jacotec avatar Dec 08 '19 08:12 jacotec

Please make a pull request.

jrivard avatar Dec 08 '19 23:12 jrivard

@jrivard Done.

jacotec avatar Dec 09 '19 01:12 jacotec