cesy: "Cesy" - An old-fashioned quill and ink (Default)
Cesy ([personal profile] cesy) wrote in [community profile] style_system2009-09-22 01:52 pm

Problems with background colour on Negatives tags page

Layout info: http://www.dreamwidth.org/customize/advanced/layersource?id=77107
Preview: http://cesy.dreamwidth.org/?s2id=90539

The content section of the tags page has just the paler grey background, the same as the page background, not the dark background I used for the entries. How can I get a dark background on the tags page, so it's readable, without losing the grey page background on Recent Entries? Do I have to use CSS, or is there a colour property I'm missing? Is it a bug that this doesn't work automatically?
ninetydegrees: Art: self-portrait (Default)

[personal profile] ninetydegrees 2009-09-22 08:06 pm (UTC)(link)
I think it's a bug because the same happens with default themes. The problem is that the tags page doesn't use the same CSS as other pages. The container is called tags-container so:

    .entry, .entry-wrapper, .comment, .comment-wrapper {
        min-height: 110px;
        border:5px solid $*color_entry_border;
        padding: 5px;
        $entry_background;
        color: $*color_entry_text;
    }


should be

    .entry, .entry-wrapper, .comment, .comment-wrapper, .tags-container {
        min-height: 110px;
        border:5px solid $*color_entry_border;
        padding: 5px;
        $entry_background;
        color: $*color_entry_text;
    }


This won't style the tags box exactly as entries but at least you'll have a background color.
afuna: Cat under a blanket. Text: "Cats are just little people with Fur and Fangs" (Default)

[personal profile] afuna 2009-09-23 02:24 am (UTC)(link)
I agree with this comment *g*