Because of how Rubik treats form item fonts, the color module's 20em width of the color selection fields is not enough, which breaks the field when selected (see the image, left broken (20em), right fixed (30em)). Please incorporate the fix in the Rubik theme to have the color module work.

/* color module */
#palette .form-item {
    width: 30em !important;
}
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

alexrayu’s picture

Even better like this (fixing the "jumping" margins).

/* color module fix */
#palette .form-item {
    width: 30em !important;
    height: 2em;
    line-height: 2em;
    margin: 0.5em 0;
}
haydeniv’s picture

Issue summary: View changes
FileSize
853 bytes

I had to take this a bit further to get some of the styling right when in a panels modal and when you hover over color set.

haydeniv’s picture

Status: Needs review » Fixed

Committed to dev 6dab0ce

Thanks!

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.