$tabbar-background-color: dynamic($base-color);
$tabbar-background-gradient: dynamic(null);
$tabbar-color: dynamic(null);
$tabbar-border-width: dynamic(null);
$tabbar-border-style: dynamic(null);
$tabbar-border-color: dynamic($panel-header-border-color);
$tabbar-box-shadow: dynamic(null);
$tabbar-font-weight: dynamic(null);
$tabbar-font-size: dynamic(null);
$tabbar-font-size-big: dynamic(null);
$tabbar-line-height: dynamic(null);
$tabbar-line-height-big: dynamic(null);
$tabbar-font-family: dynamic(null);
$tabbar-padding: dynamic(null);
$tabbar-padding-big: dynamic(null);
$tabbar-horizontal-spacing: dynamic(.4em);
$tabbar-horizontal-spacing-big: dynamic(null);
$tabbar-vertical-spacing: dynamic(null);
$tabbar-vertical-spacing-big: dynamic(null);
$tabbar-title-color: dynamic(null);
$tabbar-title-font-weight: dynamic($tabbar-font-weight);
$tabbar-title-font-size: dynamic($tabbar-font-size);
$tabbar-title-font-size-big: dynamic($tabbar-font-size-big);
$tabbar-title-font-family: dynamic(null);
$tabbar-min-height: dynamic($toolbar-min-height);
$tabbar-min-height-big: dynamic($toolbar-min-height-big);
@mixin tabbar-ui(
$ui: null,
$xtype: tabbar,
$background-color: null,
$background-gradient: null,
$color: null,
$border-width: null,
$border-style: null,
$border-color: null,
$box-shadow: null,
$font-weight: null,
$font-size: null,
$font-size-big: null,
$line-height: null,
$line-height-big: null,
$font-family: null,
$padding: null,
$padding-big: null,
$horizontal-spacing: null,
$horizontal-spacing-big: null,
$vertical-spacing: null,
$vertical-spacing-big: null,
$title-color: null,
$title-font-weight: null,
$title-font-size: null,
$title-font-size-big: null,
$title-font-family: null,
$min-height: null,
$min-height-big: null
) {
@include toolbar-ui(
$ui: $ui,
$xtype: $xtype,
$background-color: $background-color,
$background-gradient: $background-gradient,
$color: $color,
$border-width: $border-width,
$border-style: $border-style,
$border-color: $border-color,
$box-shadow: $box-shadow,
$font-weight: $font-weight,
$font-size: $font-size,
$font-size-big: $font-size-big,
$line-height: $line-height,
$line-height-big: $line-height-big,
$font-family: $font-family,
$padding: $padding,
$padding-big: $padding-big,
$horizontal-spacing: $horizontal-spacing,
$horizontal-spacing-big: $horizontal-spacing-big,
$vertical-spacing: $vertical-spacing,
$vertical-spacing-big: $vertical-spacing-big,
$title-color: $title-color,
$title-font-weight: $title-font-weight,
$title-font-size: $title-font-size,
$title-font-size-big: $title-font-size-big,
$title-font-family: $title-font-family,
$min-height: $min-height,
$min-height-big: $min-height-big
);
}