Journal seems to have some display issues on the Features module feature detail ("View") screens. See attached screenshot in Garland and Rubik.

CommentFileSizeAuthor
rubik.gif16.87 KBtraviscarden
garland.gif44.27 KBtraviscarden

Comments

traviscarden’s picture

Adding the following CSS fixes the problem perfectly in both Garland and Rubik without any negative consequences elsewhere that I can see...

#edit-journal-entry-wrapper {
  clear: left;
}

...but Journal only includes its CSS file on Journal configuration screens (as opposed to with every form where the Journal entry field appears), so I don't know where to put the code. Otherwise I would supply a patch. In the meantime, I'm just excluding the field from this form using the following code in my settings.php per the instructions in Journal's README:

$conf = array(
  'journal_form_ids' => array(
    'features_admin_components' => 0,
  ),
);
sun’s picture

What do you think? Should we exclude those forms? They're kinda edge-casey... but in the end, huge changes can be done by reverting components... :-/

traviscarden’s picture

We could always include journal.css on all admin screens so we could add CSS to fix the display.