7 background-color: transparent;
8 @include background-gradient($tabbar-base-color, $tabbar-background-gradient);
9 font-size: $tab-font-size;
12 .#{$prefix}nlg .#{$prefix}tab-bar {
13 background-image: theme-background-image($theme-name, 'tab-bar/tab-bar-default-bg.gif');
16 .#{$prefix}tab-bar-default-plain,
17 .#{$prefix}nlg .#{$prefix}tab-bar-default-plain {
18 background: transparent none;
22 .#{$prefix}tab-bar-body {
24 border-color: $tabbar-border-color;
31 @mixin tab-bar-top($toolbarCls, $bodyCls, $stripCls, $body-padding, $body-border-width, $strip-border-width, $strip-height) {
32 .#{$prefix}#{$toolbarCls} {
33 .#{$prefix}#{$bodyCls} {
35 border-width: $body-border-width;
36 padding: $body-padding;
39 .#{$prefix}#{$stripCls} {
40 /*position strip from top rather than bottom to avoid off-by-one error in IE6*/
41 top: $tab-height + top($body-border-width) + top($body-padding);
42 border-width: $strip-border-width;
43 height: $strip-height - vertical($strip-border-width);
46 .#{$prefix}border-box {
47 .#{$prefix}#{$toolbarCls} {
48 .#{$prefix}#{$bodyCls} {
49 height: $tab-height + vertical($body-border-width) + vertical($body-padding);
52 .#{$prefix}#{$stripCls} {
53 height: $strip-height;
59 @mixin tab-bar-bottom($toolbarCls, $bodyCls, $stripCls, $body-padding, $body-border-width, $strip-border-width, $strip-height) {
60 .#{$prefix}#{$toolbarCls} {
61 .#{$prefix}#{$bodyCls} {
63 border-width: $body-border-width;
64 padding: $body-padding;
66 .#{$prefix}box-inner {
68 top: 0 - bottom($strip-border-width);
71 .#{$prefix}box-scroller,
72 .#{$prefix}box-scroller-left,
73 .#{$prefix}box-scroller-right {
74 height: $tab-height + bottom($body-padding) + bottom($strip-border-width);
78 .#{$prefix}#{$stripCls} {
79 top: top($body-border-width);
80 border-width: $strip-border-width;
81 height: $strip-height - vertical($strip-border-width);
84 .#{$prefix}border-box {
85 .#{$prefix}#{$toolbarCls} {
86 .#{$prefix}#{$bodyCls} {
87 height: $tab-height + vertical($body-border-width) + vertical($body-padding);
90 .#{$prefix}#{$stripCls} {
91 height: $strip-height;
103 $tabbar-top-body-padding,
104 $tabbar-top-body-border-width,
105 $tabbar-top-strip-border-width,
108 @include tab-bar-top(
110 "tab-bar-body-default-plain",
111 "tab-bar-strip-default-plain",
112 $tabbar-top-plain-body-padding,
113 $tabbar-top-plain-body-border-width,
114 $tabbar-top-strip-border-width,
119 @include tab-bar-bottom(
123 $tabbar-bottom-body-padding,
124 $tabbar-bottom-body-border-width,
125 $tabbar-bottom-strip-border-width,
129 @include tab-bar-bottom(
131 "tab-bar-body-default-plain",
132 "tab-bar-strip-default-plain",
133 $tabbar-bottom-plain-body-padding,
134 $tabbar-bottom-plain-body-border-width,
135 $tabbar-bottom-strip-border-width,
139 .#{$prefix}tab-bar-strip-default,
140 .#{$prefix}tab-bar-strip-default-plain {
147 border-color: $tabbar-strip-border-color;
148 background-color: $tabbar-strip-background-color;