Skip to content

Commit

Permalink
theme-pack: [IE9IE10]Tab position jumping
Browse files Browse the repository at this point in the history
  • Loading branch information
scribetw committed Nov 14, 2017
1 parent 86bba74 commit d7161ce
Showing 1 changed file with 26 additions and 7 deletions.
33 changes: 26 additions & 7 deletions zul/src/archive/web/js/zul/tab/less/tabbox.less
Expand Up @@ -430,13 +430,6 @@
.z-tabs-content {
display: table;
}
.z-tabbox {
&-top, &-left, &-right, &-bottom {
.z-tab {
min-height: 48px;
}
}
}
}

// ZK-2158: Tab should not be click on blank area next to last tab
Expand All @@ -448,3 +441,29 @@
}
}
}

// IE9/IE10 bug: min-height ignores border-box
.ie9, .ie10 {
.z-tabbox {
&-top, &-left, &-right, &-bottom {
.z-tab {
height: 48px;
}
}
&-left-scroll,
&-right-scroll {
min-height: 0;
height: 48px;
}
}
}

.ie11 {
.z-tabbox {
&-top, &-left, &-right, &-bottom {
.z-tab {
min-height: 48px;
}
}
}
}

0 comments on commit d7161ce

Please sign in to comment.