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.

CommentFileSizeAuthor
modules.css_.patch34 bytesdwmsyron
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

frjo’s picture

Status: Needs review » Closed (fixed)