modules.css defines .profile with a different border color than defined in style.css. For example, in the red theme, style.css defines the following:
.profile {
border: 1px solid #660000;
}
However, modules.css defines a different value:
.profile {
background: #fff;
padding: 5px;
border: 1px solid #ccc;
}
I removed the conflicting value in modules.css since style.css already defines theme-specific .profile borders for each color theme.
| Comment | File | Size | Author |
|---|---|---|---|
| modules.css_.patch | 34 bytes | dwmsyron |
Comments
Comment #1
frjo commented