Skip to content

Commit

Permalink
Bug where CSS intended for tab labels was also affecting layout conta…
Browse files Browse the repository at this point in the history
…iners inside of the tab panes. Fixes #4233.
  • Loading branch information
wkeese committed Dec 6, 2007
1 parent 3e26be0 commit 4a14e4f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions themes/dijit.css
Original file line number Diff line number Diff line change
Expand Up @@ -959,27 +959,27 @@ img.dijitColorPaletteUnder {
/* Tab */


.dijitTabContainer .dijitAlignTop {
.dijitTabLabels-top {
/* position the tab labels row down by 1 px, and on top of the dijitTabPaneWrapper
so the buttons can overlay the tab pane properly */
top:1px !important;
z-index:10;
}

.dijitTabContainer .dijitAlignBottom {
.dijitTabLabels-bottom {
/* position the tab labels row up by 1 px so they overlap */
margin-top:-1px !important;
z-index:10;
}

.dijitTabContainer .dijitAlignLeft {
.dijitTabLabels-left-h {
/* position the tab labels left by 1 px so they overlap */
margin-right:-1px !important;
z-index:10;
}

.dijitTabContainer .dijitAlignRight {
/* position the tab labels row up by 1 px, and on top of the dijitTabPaneWrapper
.dijitTabLabels-right-h {
/* position the tab labels right by 1 px, on top of the dijitTabPaneWrapper
so the buttons can overlay the tab pane properly */
margin-left:-1px !important;
z-index:10;
Expand Down

0 comments on commit 4a14e4f

Please sign in to comment.