Skip to content
This repository has been archived by the owner on Oct 28, 2019. It is now read-only.

Commit

Permalink
Make app tabs not vertically float (in tab overflow mode)
Browse files Browse the repository at this point in the history
  • Loading branch information
garrett committed Jun 25, 2011
1 parent 7215b89 commit eed2b01
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions theme/chrome/browser/browser.css
Original file line number Diff line number Diff line change
Expand Up @@ -1425,10 +1425,21 @@ richlistitem[type~="action"][actiontype="switchtab"] > .ac-url-box > .ac-action-
-moz-border-image: url(tabbrowser/adwaita-tab-unselected-new-right.png) 3 6 1 6 / 3px 6px 1px 6px stretch !important;
}

/* Floating pinned/app tabs */
#tabbrowser-tabs[positionpinnedtabs] > .tabbrowser-tab[pinned] {
min-height: 18px; /* corresponds to the max. height of non-textual tab contents, i.e. the tab close button */
}

/* Make the pinned/app tabs not appear to float */
#tabbrowser-tabs[positionpinnedtabs] > .tabbrowser-tab[pinned] .tab-icon-image,
#tabbrowser-tabs[positionpinnedtabs] .tab-throbber[pinned] {
margin: 4px 0 3px;
}
#tabbrowser-tabs[positionpinnedtabs] > .tabbrowser-tab[pinned][selected=true] .tab-icon-image,
#tabbrowser-tabs[positionpinnedtabs] .tab-throbber[pinned][selected] {
margin: 4px 0;
}

.tabbrowser-tab:focus > .tab-stack {
outline: 1px dotted;
}
Expand Down

0 comments on commit eed2b01

Please sign in to comment.