when the canvas width is smaller then the with of the #page-title + primary tabs, one element is getting below the other. nice so far. but the negative margin on the tabs causes that the the label of the tab gets cut. (see attachments)

it gets fixed when you adjust the margin of the tabs like this:

ul.primary {
    margin: 0 0 -3px;
}

but I cannot see what causes the 3px gap in the first place. maybe this should better be fixed instead of adding negative margins to other elements

CommentFileSizeAuthor
#1 style.css_.txt17.02 KBloominade
less_space.png35.43 KBloominade
much_space.png27.86 KBloominade
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

loominade’s picture

Status: Active » Needs review
FileSize
17.02 KB

I figured out a solution:

style.css line 297:

ul.primary {
    border-bottom: medium none;
    float: right;
    font-size: 12px;
    line-height: 30px;
    margin: 0;
    padding: 3px 0 0 8px;
    text-transform: uppercase;
}

style.css line 310:

ul.primary li a, ul.primary li a.active, ul.primary li a:active, ul.primary li a:visited, ul.primary li a:hover, ul.primary li.active a {
    background-color: #A6A7A2;
    border-color: #A6A7A2;
    border-radius: 8px 8px 0 0;
    border-style: solid;
    border-width: 1px 1px 0;
    color: #000000;
    font-weight: bold;
    padding: 7px 20px;
}
TravisCarden’s picture

Status: Needs review » Fixed

This appears to have been fixed in the latest dev release.

Status: Fixed » Closed (fixed)

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