skypefacebook-workplaceoutlookemailmicrosoft-teamsdiscordmessengercustom-servicesmacoslinuxwindowsinboxwhatsappicloudtweetdeckhipchattelegramhangoutsslackgmail
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.1 KiB
57 lines
1.1 KiB
@include extjs-button-base( |
|
$base-cls: 'tab', |
|
$btn-display: block, |
|
$include-arrows: false |
|
); |
|
|
|
.#{$prefix}tab { |
|
z-index: 1; |
|
} |
|
|
|
.#{$prefix}tab-active { |
|
z-index: 3; |
|
} |
|
|
|
.#{$prefix}tab-button { |
|
// tab-button needs position relative because it contains an absolutely positioned |
|
// pseudo element to hold the focus outline in classic themes |
|
position: relative; |
|
} |
|
|
|
.#{$prefix}tab-close-btn { |
|
display: block; |
|
position: absolute; |
|
font-size: 0; |
|
line-height: 0; |
|
} |
|
|
|
.#{$prefix}tab-rotate-left { |
|
@include rotate-element($angle: 270); |
|
|
|
@if $include-rtl { |
|
&.#{$prefix}rtl { |
|
@include rotate-element($angle: 90); |
|
} |
|
} |
|
} |
|
|
|
.#{$prefix}tab-rotate-right { |
|
@include rotate-element($angle: 90); |
|
|
|
@if $include-rtl { |
|
&.#{$prefix}rtl { |
|
@include rotate-element($angle: 270); |
|
} |
|
} |
|
} |
|
|
|
// the corner elements of tabs can gain extra height when rotated. |
|
// setting width: 1px prevents this |
|
.#{$prefix}tab-tr, |
|
.#{$prefix}tab-br, |
|
.#{$prefix}tab-mr, |
|
.#{$prefix}tab-tl, |
|
.#{$prefix}tab-bl, |
|
.#{$prefix}tab-ml { |
|
width: 1px; |
|
}
|
|
|