2016-04-27 20:44:36 +08:00
|
|
|
@import "../../style/themes/default";
|
|
|
|
@import "../../style/mixins/index";
|
2016-09-14 16:18:33 +08:00
|
|
|
@tab-prefix-cls: ~"@{ant-prefix}-tabs";
|
2017-08-04 22:25:30 +08:00
|
|
|
|
2017-01-23 14:09:37 +08:00
|
|
|
@import "./card-style";
|
2015-06-10 19:50:02 +08:00
|
|
|
|
2018-01-13 14:04:04 +08:00
|
|
|
@tab-bar-margin: 0 0 16px 0;
|
2018-01-13 01:27:18 +08:00
|
|
|
|
2018-01-18 13:41:21 +08:00
|
|
|
@tab-horizontal-margin: 0 32px 0 0;
|
2018-01-13 01:27:18 +08:00
|
|
|
@tab-vertical-margin: 0 0 16px 0;
|
|
|
|
|
|
|
|
@tab-horizontal-padding: 12px 16px;
|
|
|
|
@tab-vertical-padding: 8px 24px;
|
|
|
|
|
|
|
|
// The width (or height for vertical) of the scrolling arrow
|
|
|
|
@tab-scrolling-size: 32px;
|
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{tab-prefix-cls} {
|
2017-09-22 18:33:29 +08:00
|
|
|
.reset-component;
|
2015-06-09 15:34:46 +08:00
|
|
|
position: relative;
|
2015-12-02 18:06:16 +08:00
|
|
|
overflow: hidden;
|
2015-10-21 19:58:54 +08:00
|
|
|
.clearfix;
|
2015-06-09 15:34:46 +08:00
|
|
|
|
|
|
|
&-ink-bar {
|
|
|
|
z-index: 1;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
2015-10-22 11:36:41 +08:00
|
|
|
bottom: 1px;
|
2015-06-09 15:34:46 +08:00
|
|
|
box-sizing: border-box;
|
2015-06-14 14:17:10 +08:00
|
|
|
height: 2px;
|
2015-07-08 15:18:28 +08:00
|
|
|
background-color: @primary-color;
|
2015-06-09 15:34:46 +08:00
|
|
|
transform-origin: 0 0;
|
|
|
|
}
|
|
|
|
|
2016-03-15 15:09:26 +08:00
|
|
|
&-bar {
|
2017-10-24 15:29:10 +08:00
|
|
|
border-bottom: @border-width-base @border-style-base @border-color-split;
|
2018-01-13 01:27:18 +08:00
|
|
|
margin: @tab-bar-margin;
|
2017-03-02 16:11:58 +08:00
|
|
|
outline: none;
|
2017-08-16 21:05:52 +08:00
|
|
|
transition: padding .3s @ease-in-out;
|
2015-10-22 11:36:41 +08:00
|
|
|
}
|
|
|
|
|
2015-06-09 15:34:46 +08:00
|
|
|
&-nav-container {
|
2015-10-21 14:53:48 +08:00
|
|
|
overflow: hidden;
|
2017-07-12 17:32:31 +08:00
|
|
|
font-size: @tabs-title-font-size;
|
2015-06-19 17:26:24 +08:00
|
|
|
line-height: @line-height-base;
|
2015-06-09 15:34:46 +08:00
|
|
|
box-sizing: border-box;
|
|
|
|
position: relative;
|
|
|
|
white-space: nowrap;
|
2015-10-22 11:36:41 +08:00
|
|
|
margin-bottom: -1px;
|
2017-08-16 21:05:52 +08:00
|
|
|
transition: padding .3s @ease-in-out;
|
2015-06-14 14:17:10 +08:00
|
|
|
.clearfix;
|
2015-06-09 15:34:46 +08:00
|
|
|
|
2017-03-02 16:11:58 +08:00
|
|
|
&-scrolling {
|
2018-01-13 01:27:18 +08:00
|
|
|
padding-left: @tab-scrolling-size;
|
|
|
|
padding-right: @tab-scrolling-size;
|
2017-03-02 16:11:58 +08:00
|
|
|
}
|
2015-08-06 16:47:01 +08:00
|
|
|
}
|
|
|
|
|
2015-11-26 19:32:55 +08:00
|
|
|
&-tab-prev,
|
|
|
|
&-tab-next {
|
2015-06-09 15:34:46 +08:00
|
|
|
user-select: none;
|
2015-06-19 16:21:59 +08:00
|
|
|
z-index: 2;
|
2017-08-05 23:01:28 +08:00
|
|
|
width: 0;
|
2017-08-16 21:05:52 +08:00
|
|
|
height: 100%;
|
2015-06-09 15:34:46 +08:00
|
|
|
cursor: pointer;
|
2015-11-26 19:32:55 +08:00
|
|
|
border: 0;
|
2015-06-09 15:34:46 +08:00
|
|
|
background-color: transparent;
|
|
|
|
position: absolute;
|
2015-06-14 14:17:10 +08:00
|
|
|
text-align: center;
|
2016-11-08 20:45:56 +08:00
|
|
|
color: @text-color-secondary;
|
2017-08-16 21:05:52 +08:00
|
|
|
transition: width .3s @ease-in-out, opacity .3s @ease-in-out, color .3s @ease-in-out;
|
2017-08-05 23:01:28 +08:00
|
|
|
opacity: 0;
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
|
|
&.@{tab-prefix-cls}-tab-arrow-show {
|
|
|
|
opacity: 1;
|
2018-01-13 01:27:18 +08:00
|
|
|
width: @tab-scrolling-size;
|
2017-08-05 23:01:28 +08:00
|
|
|
height: 100%;
|
|
|
|
pointer-events: auto;
|
|
|
|
}
|
2016-03-01 16:43:16 +08:00
|
|
|
|
|
|
|
&:hover {
|
2016-11-08 20:50:59 +08:00
|
|
|
color: @text-color;
|
2016-03-01 16:43:16 +08:00
|
|
|
}
|
2015-06-09 15:34:46 +08:00
|
|
|
|
|
|
|
&-icon {
|
|
|
|
font-style: normal;
|
2015-06-19 16:21:59 +08:00
|
|
|
font-weight: bold;
|
2015-06-09 15:34:46 +08:00
|
|
|
font-variant: normal;
|
|
|
|
line-height: inherit;
|
|
|
|
vertical-align: baseline;
|
2017-06-29 14:20:41 +08:00
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
2017-07-17 15:55:03 +08:00
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
2015-06-09 15:34:46 +08:00
|
|
|
text-align: center;
|
|
|
|
text-transform: none;
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
display: block;
|
2015-06-14 14:17:10 +08:00
|
|
|
font-family: "anticon" !important;
|
2017-07-17 15:55:03 +08:00
|
|
|
.iconfont-size-under-12px(10px);
|
2015-06-09 15:34:46 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-06 16:47:01 +08:00
|
|
|
&-tab-btn-disabled {
|
2016-03-01 16:43:16 +08:00
|
|
|
cursor: not-allowed;
|
|
|
|
&,
|
|
|
|
&:hover {
|
2017-01-01 22:20:06 +08:00
|
|
|
color: @disabled-color;
|
2016-03-01 16:43:16 +08:00
|
|
|
}
|
2015-08-06 16:47:01 +08:00
|
|
|
}
|
|
|
|
|
2015-06-09 15:34:46 +08:00
|
|
|
&-tab-next {
|
|
|
|
right: 2px;
|
|
|
|
|
|
|
|
&-icon:before {
|
2016-09-18 09:54:47 +08:00
|
|
|
content: "\e61f";
|
2015-06-09 15:34:46 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-tab-prev {
|
|
|
|
left: 0;
|
|
|
|
&-icon:before {
|
2016-09-18 09:54:47 +08:00
|
|
|
content: "\e620";
|
2015-06-09 15:34:46 +08:00
|
|
|
}
|
2015-08-18 14:58:18 +08:00
|
|
|
:root & {
|
|
|
|
filter: none;
|
|
|
|
}
|
2015-06-09 15:34:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-nav-wrap {
|
|
|
|
overflow: hidden;
|
2015-06-14 16:49:27 +08:00
|
|
|
margin-bottom: -1px;
|
2015-06-09 15:34:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-nav-scroll {
|
2015-06-14 14:17:10 +08:00
|
|
|
overflow: hidden;
|
2016-06-13 15:26:39 +08:00
|
|
|
white-space: nowrap;
|
2015-06-09 15:34:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-nav {
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding-left: 0;
|
2017-08-16 21:05:52 +08:00
|
|
|
transition: transform 0.3s @ease-in-out;
|
2015-06-09 15:34:46 +08:00
|
|
|
position: relative;
|
|
|
|
margin: 0;
|
|
|
|
list-style: none;
|
2017-07-13 12:14:57 +08:00
|
|
|
display: inline-block;
|
2015-06-09 15:34:46 +08:00
|
|
|
|
2015-11-26 19:32:55 +08:00
|
|
|
&:before,
|
|
|
|
&:after {
|
2015-06-09 15:34:46 +08:00
|
|
|
display: table;
|
|
|
|
content: " ";
|
|
|
|
}
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
2015-12-14 16:30:15 +08:00
|
|
|
.@{tab-prefix-cls}-tab-disabled {
|
2015-06-09 15:34:46 +08:00
|
|
|
pointer-events: none;
|
|
|
|
cursor: default;
|
2017-01-01 22:20:06 +08:00
|
|
|
color: @disabled-color;
|
2015-06-09 15:34:46 +08:00
|
|
|
}
|
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{tab-prefix-cls}-tab {
|
2016-06-13 15:26:39 +08:00
|
|
|
display: inline-block;
|
2015-06-09 15:34:46 +08:00
|
|
|
height: 100%;
|
2018-01-13 01:27:18 +08:00
|
|
|
margin: @tab-horizontal-margin;
|
|
|
|
padding: @tab-horizontal-padding;
|
2015-06-09 15:34:46 +08:00
|
|
|
box-sizing: border-box;
|
|
|
|
position: relative;
|
|
|
|
|
2017-07-13 12:14:57 +08:00
|
|
|
&:last-child {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
2016-09-18 10:12:21 +08:00
|
|
|
transition: color 0.3s @ease-in-out;
|
|
|
|
cursor: pointer;
|
|
|
|
text-decoration: none;
|
2015-12-14 16:30:15 +08:00
|
|
|
|
2016-09-18 10:12:21 +08:00
|
|
|
&:hover {
|
2017-01-01 22:20:06 +08:00
|
|
|
color: @primary-5;
|
2016-09-18 10:12:21 +08:00
|
|
|
}
|
2015-06-15 16:11:28 +08:00
|
|
|
|
2016-09-18 10:12:21 +08:00
|
|
|
&:active {
|
2017-01-01 22:20:06 +08:00
|
|
|
color: @primary-7;
|
2016-09-18 10:12:21 +08:00
|
|
|
}
|
2017-09-27 22:32:49 +08:00
|
|
|
|
2016-09-18 10:12:21 +08:00
|
|
|
.@{iconfont-css-prefix} {
|
|
|
|
margin-right: 8px;
|
2015-06-09 15:34:46 +08:00
|
|
|
}
|
2015-12-14 16:30:15 +08:00
|
|
|
}
|
2015-06-09 15:34:46 +08:00
|
|
|
|
2016-09-18 10:12:21 +08:00
|
|
|
.@{tab-prefix-cls}-tab-active {
|
2015-12-14 16:30:15 +08:00
|
|
|
color: @primary-color;
|
2017-10-19 20:21:56 +08:00
|
|
|
font-weight: 500;
|
2015-06-09 15:34:46 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-18 21:17:18 +08:00
|
|
|
&-large &-nav-container {
|
|
|
|
font-size: @font-size-lg;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-large &-tab {
|
|
|
|
padding: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-small &-nav-container {
|
2016-11-08 20:57:07 +08:00
|
|
|
font-size: @font-size-base;
|
2015-06-19 17:26:24 +08:00
|
|
|
}
|
|
|
|
|
2017-10-18 21:17:18 +08:00
|
|
|
&-small &-tab {
|
2016-09-18 10:12:21 +08:00
|
|
|
padding: 8px 16px;
|
2015-06-09 15:34:46 +08:00
|
|
|
}
|
|
|
|
|
2016-09-18 10:12:21 +08:00
|
|
|
&:not(&-vertical) {
|
2016-12-21 12:00:42 +08:00
|
|
|
> .@{tab-prefix-cls}-content {
|
2016-12-07 10:39:26 +08:00
|
|
|
width: 100%;
|
2016-12-21 12:00:42 +08:00
|
|
|
|
|
|
|
> .@{tab-prefix-cls}-tabpane {
|
|
|
|
flex-shrink: 0;
|
|
|
|
width: 100%;
|
2017-05-10 21:29:52 +08:00
|
|
|
transition: opacity .45s;
|
2016-12-21 12:00:42 +08:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .@{tab-prefix-cls}-tabpane-inactive {
|
|
|
|
opacity: 0;
|
|
|
|
height: 0;
|
2017-08-04 17:58:32 +08:00
|
|
|
padding: 0 !important;
|
2017-05-23 17:59:27 +08:00
|
|
|
pointer-events: none;
|
2016-12-21 12:00:42 +08:00
|
|
|
}
|
2016-12-07 10:39:26 +08:00
|
|
|
}
|
2016-12-21 12:00:42 +08:00
|
|
|
> .@{tab-prefix-cls}-content-animated {
|
2016-09-18 10:12:21 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2016-12-07 10:39:26 +08:00
|
|
|
will-change: margin-left;
|
|
|
|
transition: margin-left 0.3s @ease-in-out;
|
2016-09-18 10:12:21 +08:00
|
|
|
}
|
2015-06-09 15:34:46 +08:00
|
|
|
}
|
2015-10-21 19:58:54 +08:00
|
|
|
|
|
|
|
&-vertical {
|
2016-04-17 17:56:06 +08:00
|
|
|
> .@{tab-prefix-cls}-bar {
|
2015-10-21 19:58:54 +08:00
|
|
|
border-bottom: 0;
|
2017-04-22 09:43:32 +08:00
|
|
|
height: 100%;
|
2017-08-16 21:05:52 +08:00
|
|
|
&-tab-prev, &-tab-next {
|
2018-01-13 01:27:18 +08:00
|
|
|
width: @tab-scrolling-size;
|
2017-08-16 21:05:52 +08:00
|
|
|
height: 0;
|
|
|
|
transition: height .3s @ease-in-out, opacity .3s @ease-in-out, color .3s @ease-in-out;
|
|
|
|
}
|
2017-08-05 23:01:28 +08:00
|
|
|
&-tab-prev.@{tab-prefix-cls}-tab-arrow-show,
|
|
|
|
&-tab-next.@{tab-prefix-cls}-tab-arrow-show {
|
|
|
|
width: 100%;
|
2018-01-13 01:27:18 +08:00
|
|
|
height: @tab-scrolling-size;
|
2017-08-05 23:01:28 +08:00
|
|
|
}
|
|
|
|
|
2016-04-17 17:56:06 +08:00
|
|
|
.@{tab-prefix-cls}-tab {
|
|
|
|
float: none;
|
2018-01-13 01:27:18 +08:00
|
|
|
margin: @tab-vertical-margin;
|
|
|
|
padding: @tab-vertical-padding;
|
2016-06-15 11:19:23 +08:00
|
|
|
display: block;
|
2016-09-18 10:12:21 +08:00
|
|
|
|
2016-04-17 17:56:06 +08:00
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
2015-10-22 11:36:41 +08:00
|
|
|
|
2017-08-05 23:01:28 +08:00
|
|
|
.@{tab-prefix-cls}-extra-content {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2016-04-17 17:56:06 +08:00
|
|
|
.@{tab-prefix-cls}-nav-scroll {
|
|
|
|
width: auto;
|
|
|
|
}
|
2015-10-21 19:58:54 +08:00
|
|
|
|
2017-04-22 09:43:32 +08:00
|
|
|
.@{tab-prefix-cls}-nav-container,
|
|
|
|
.@{tab-prefix-cls}-nav-wrap {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2016-04-17 17:56:06 +08:00
|
|
|
.@{tab-prefix-cls}-nav-container {
|
|
|
|
margin-bottom: 0;
|
2017-04-25 16:39:37 +08:00
|
|
|
|
|
|
|
&.@{tab-prefix-cls}-nav-container-scrolling {
|
2018-01-13 01:27:18 +08:00
|
|
|
padding: @tab-scrolling-size 0;
|
2017-04-25 16:39:37 +08:00
|
|
|
}
|
2015-10-21 19:58:54 +08:00
|
|
|
}
|
2016-04-17 17:56:06 +08:00
|
|
|
|
|
|
|
.@{tab-prefix-cls}-nav-wrap {
|
|
|
|
margin-bottom: 0;
|
2015-10-21 19:58:54 +08:00
|
|
|
}
|
|
|
|
|
2017-08-05 23:01:28 +08:00
|
|
|
.@{tab-prefix-cls}-nav {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2016-04-17 17:56:06 +08:00
|
|
|
.@{tab-prefix-cls}-ink-bar {
|
|
|
|
width: 2px;
|
|
|
|
left: auto;
|
|
|
|
height: auto;
|
2016-05-18 14:27:18 +08:00
|
|
|
top: 0;
|
2016-04-17 17:56:06 +08:00
|
|
|
}
|
2017-04-19 11:42:32 +08:00
|
|
|
|
2017-06-23 15:02:23 +08:00
|
|
|
.@{tab-prefix-cls}-tab-next {
|
|
|
|
width: 100%;
|
|
|
|
bottom: 0;
|
2018-01-13 01:27:18 +08:00
|
|
|
height: @tab-scrolling-size;
|
2017-06-23 15:02:23 +08:00
|
|
|
&-icon:before {
|
|
|
|
content: "\e61d";
|
|
|
|
}
|
2017-04-19 11:42:32 +08:00
|
|
|
}
|
|
|
|
|
2017-06-23 15:02:23 +08:00
|
|
|
.@{tab-prefix-cls}-tab-prev {
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
2018-01-13 01:27:18 +08:00
|
|
|
height: @tab-scrolling-size;
|
2017-06-23 15:02:23 +08:00
|
|
|
&-icon:before {
|
|
|
|
content: "\e61e";
|
|
|
|
}
|
2017-04-19 11:42:32 +08:00
|
|
|
}
|
|
|
|
}
|
2017-11-29 21:00:16 +08:00
|
|
|
|
|
|
|
> .@{tab-prefix-cls}-content {
|
|
|
|
overflow: hidden;
|
|
|
|
width: auto;
|
|
|
|
margin-top: 0 !important;
|
|
|
|
}
|
2015-10-21 19:58:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-vertical&-left {
|
2016-04-17 17:56:06 +08:00
|
|
|
> .@{tab-prefix-cls}-bar {
|
2015-10-21 19:58:54 +08:00
|
|
|
float: left;
|
2017-01-31 16:05:10 +08:00
|
|
|
border-right: @border-width-base @border-style-base @border-color-split;
|
2015-12-17 12:04:12 +08:00
|
|
|
margin-right: -1px;
|
|
|
|
margin-bottom: 0;
|
2016-04-17 17:56:06 +08:00
|
|
|
.@{tab-prefix-cls}-tab {
|
2016-09-18 10:12:21 +08:00
|
|
|
text-align: right;
|
2016-04-17 17:56:06 +08:00
|
|
|
}
|
|
|
|
.@{tab-prefix-cls}-nav-container {
|
|
|
|
margin-right: -1px;
|
|
|
|
}
|
|
|
|
.@{tab-prefix-cls}-nav-wrap {
|
|
|
|
margin-right: -1px;
|
|
|
|
}
|
|
|
|
.@{tab-prefix-cls}-ink-bar {
|
|
|
|
right: 1px;
|
2015-10-21 19:58:54 +08:00
|
|
|
}
|
|
|
|
}
|
2016-04-17 17:56:06 +08:00
|
|
|
> .@{tab-prefix-cls}-content {
|
2015-10-21 19:58:54 +08:00
|
|
|
padding-left: 24px;
|
2017-01-31 16:05:10 +08:00
|
|
|
border-left: @border-width-base @border-style-base @border-color-split;
|
2015-10-21 19:58:54 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-vertical&-right {
|
2016-04-17 17:56:06 +08:00
|
|
|
> .@{tab-prefix-cls}-bar {
|
2015-10-21 19:58:54 +08:00
|
|
|
float: right;
|
2017-01-31 16:05:10 +08:00
|
|
|
border-left: @border-width-base @border-style-base @border-color-split;
|
2015-10-22 11:36:41 +08:00
|
|
|
margin-left: -1px;
|
2015-12-17 12:04:12 +08:00
|
|
|
margin-bottom: 0;
|
2016-04-17 17:56:06 +08:00
|
|
|
.@{tab-prefix-cls}-nav-container {
|
|
|
|
margin-left: -1px;
|
|
|
|
}
|
|
|
|
.@{tab-prefix-cls}-nav-wrap {
|
|
|
|
margin-left: -1px;
|
|
|
|
}
|
|
|
|
.@{tab-prefix-cls}-ink-bar {
|
|
|
|
left: 1px;
|
|
|
|
}
|
2015-10-21 19:58:54 +08:00
|
|
|
}
|
2016-04-17 17:56:06 +08:00
|
|
|
> .@{tab-prefix-cls}-content {
|
2015-10-21 19:58:54 +08:00
|
|
|
padding-right: 24px;
|
2017-01-31 16:05:10 +08:00
|
|
|
border-right: @border-width-base @border-style-base @border-color-split;
|
2015-10-21 19:58:54 +08:00
|
|
|
}
|
|
|
|
}
|
2015-12-14 16:30:15 +08:00
|
|
|
|
2016-04-17 17:56:06 +08:00
|
|
|
&-bottom > &-bar {
|
2015-12-16 11:53:52 +08:00
|
|
|
margin-bottom: 0;
|
|
|
|
margin-top: 16px;
|
|
|
|
}
|
2015-06-12 15:39:01 +08:00
|
|
|
}
|
2016-09-18 10:12:21 +08:00
|
|
|
|
2017-05-10 21:29:52 +08:00
|
|
|
.@{tab-prefix-cls}-top .@{tab-prefix-cls}-ink-bar-animated,
|
|
|
|
.@{tab-prefix-cls}-bottom .@{tab-prefix-cls}-ink-bar-animated {
|
|
|
|
transition: transform .3s @ease-in-out, width .3s @ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.@{tab-prefix-cls}-left .@{tab-prefix-cls}-ink-bar-animated,
|
|
|
|
.@{tab-prefix-cls}-right .@{tab-prefix-cls}-ink-bar-animated {
|
|
|
|
transition: transform .3s @ease-in-out, height .3s @ease-in-out;
|
|
|
|
}
|
|
|
|
|
2016-09-18 10:12:21 +08:00
|
|
|
.no-flex,
|
2016-10-09 14:26:41 +08:00
|
|
|
.@{tab-prefix-cls}-no-animation,
|
2016-09-18 10:12:21 +08:00
|
|
|
.@{tab-prefix-cls}-vertical {
|
2016-12-21 12:00:42 +08:00
|
|
|
> .@{tab-prefix-cls}-content {
|
2017-02-08 17:15:14 +08:00
|
|
|
&-animated {
|
|
|
|
transform: none !important;
|
|
|
|
margin-left: 0 !important;
|
2016-09-18 10:12:21 +08:00
|
|
|
}
|
|
|
|
> .@{tab-prefix-cls}-tabpane-inactive {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|