ant-design/style/components/tabs.less

442 lines
8.5 KiB
Plaintext
Raw Normal View History

2015-08-20 16:55:42 +08:00
@tab-prefix-cls: ant-tabs;
2015-06-10 19:50:02 +08:00
@effect-duration: .3s;
2015-06-09 15:34:46 +08:00
2015-08-20 16:55:42 +08:00
.@{tab-prefix-cls} {
2015-06-09 15:34:46 +08:00
outline: none;
box-sizing: border-box;
position: relative;
overflow: hidden;
2015-10-21 19:58:54 +08:00
.clearfix;
2015-12-14 16:30:15 +08:00
color: @text-color;
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: scaleX(1);
transform-origin: 0 0;
2015-06-10 19:50:02 +08:00
&-transition-forward {
2015-07-23 15:04:12 +08:00
transition: right 0.3s @ease-in-out,
left 0.3s @ease-in-out 0.3s * 0.3;
2015-06-09 15:34:46 +08:00
}
2015-06-10 19:50:02 +08:00
&-transition-backward {
2015-07-23 15:04:12 +08:00
transition: right 0.3s @ease-in-out 0.3s * 0.3,
left 0.3s @ease-in-out;
2015-06-09 15:34:46 +08:00
}
}
2015-10-22 11:36:41 +08:00
&-tabs-bar {
2015-12-14 16:30:15 +08:00
border-bottom: 1px solid @border-color-base;
2015-10-22 11:36:41 +08:00
margin-bottom: 16px;
}
2015-06-09 15:34:46 +08:00
&-nav-container {
2015-10-21 14:53:48 +08:00
overflow: hidden;
2015-06-09 15:34:46 +08:00
font-size: 14px;
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;
2015-06-14 14:17:10 +08:00
.clearfix;
2015-06-09 15:34:46 +08:00
}
2015-08-06 16:47:01 +08:00
&-nav-container-scrolling {
padding-left: 32px;
padding-right: 32px;
}
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;
2015-06-09 15:34:46 +08:00
margin-right: -2px;
2015-11-14 14:09:08 +08:00
margin-top: 3px;
2015-06-09 15:34:46 +08:00
width: 32px;
height: 100%;
2015-06-14 14:17:10 +08:00
line-height: 32px;
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;
2015-06-09 15:34:46 +08:00
&-icon {
position: relative;
display: inline-block;
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;
text-align: center;
text-transform: none;
font-family: sans-serif;
2015-12-17 11:51:49 +08:00
.iconfont-size-under-12px(10px);
2015-06-09 15:34:46 +08:00
&:before {
display: block;
2015-06-14 14:17:10 +08:00
font-family: "anticon" !important;
2015-06-09 15:34:46 +08:00
}
}
}
2015-08-06 16:47:01 +08:00
&-tab-btn-disabled {
cursor: default;
color: #ccc;
pointer-events: none;
}
2015-06-09 15:34:46 +08:00
&-tab-next {
right: 2px;
&-icon:before {
2015-11-12 22:59:25 +08:00
content: "\e600";
2015-06-09 15:34:46 +08:00
}
}
&-tab-prev {
left: 0;
2015-08-20 16:47:41 +08:00
&-icon {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}
2015-06-09 15:34:46 +08:00
&-icon:before {
2015-11-13 14:58:49 +08:00
content: "\e601";
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
width: 99999px;
overflow: hidden;
2015-06-09 15:34:46 +08:00
}
&-nav {
box-sizing: border-box;
padding-left: 0;
2015-07-23 15:04:12 +08:00
transition: left 0.5s @ease-in-out;
2015-06-09 15:34:46 +08:00
position: relative;
margin: 0;
list-style: none;
2015-06-14 14:17:10 +08:00
float: left;
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;
2015-06-12 20:21:13 +08:00
2015-10-21 14:53:48 +08:00
.@{tab-prefix-cls}-tab-inner {
2015-06-12 20:21:13 +08:00
color: #ccc;
}
2015-06-09 15:34:46 +08:00
}
2015-08-20 16:55:42 +08:00
.@{tab-prefix-cls}-tab {
2015-06-09 15:34:46 +08:00
float: left;
height: 100%;
2015-06-19 15:45:40 +08:00
margin-right: 28px;
2015-06-09 15:34:46 +08:00
box-sizing: border-box;
position: relative;
2015-12-14 22:16:25 +08:00
&-inner {
2015-06-19 15:45:40 +08:00
padding: 8px 20px;
2015-07-23 15:04:12 +08:00
transition: color 0.3s @ease-in-out;
2015-06-14 14:17:10 +08:00
display: block;
2015-12-14 16:30:15 +08:00
cursor: pointer;
text-decoration: none;
&:hover {
color: tint(@primary-color, 20%);
}
&:active {
color: shade(@primary-color, 5%);
}
2015-06-15 16:11:28 +08:00
.anticon {
width: 14px;
height: 14px;
2015-06-19 15:45:40 +08:00
margin-right: 8px;
2015-06-15 16:11:28 +08:00
}
2015-06-09 15:34:46 +08:00
}
2015-12-14 16:30:15 +08:00
}
2015-06-09 15:34:46 +08:00
2015-12-14 22:16:25 +08:00
.@{tab-prefix-cls}-tab-active .@{tab-prefix-cls}-tab-inner {
2015-12-14 16:30:15 +08:00
color: @primary-color;
2015-06-09 15:34:46 +08:00
}
}
2015-06-19 17:26:24 +08:00
&-mini &-nav-container {
font-size: 12px;
}
&-mini &-tab {
2015-06-19 17:31:37 +08:00
margin-right: 24px;
2015-12-14 22:16:25 +08:00
.@{tab-prefix-cls}-tab-inner {
2015-06-19 17:31:37 +08:00
padding: 8px 16px;
}
2015-06-19 17:26:24 +08:00
}
2015-06-09 15:34:46 +08:00
&-tabpane-hidden {
display: none;
}
&-content {
position: relative;
width: 100%;
}
2015-06-10 19:50:02 +08:00
&-slide-horizontal-backward-enter {
2015-12-03 16:07:00 +08:00
.motion-common();
animation-play-state: paused;
animation-timing-function: @ease-in-out-quint;
opacity: 0;
2015-06-09 15:34:46 +08:00
}
2015-06-10 19:50:02 +08:00
&-slide-horizontal-backward-enter&-slide-horizontal-backward-enter-active {
2015-12-03 16:07:00 +08:00
animation-name: antMoveLeftIn;
animation-play-state: running;
2015-06-09 15:34:46 +08:00
}
2015-06-10 19:50:02 +08:00
&-slide-horizontal-backward-leave {
2015-06-09 15:34:46 +08:00
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
2015-12-03 16:07:00 +08:00
.motion-common();
animation-play-state: paused;
animation-timing-function: @ease-in-out-quint;
2015-06-09 15:34:46 +08:00
}
2015-06-10 19:50:02 +08:00
&-slide-horizontal-backward-leave&-slide-horizontal-backward-leave-active {
2015-12-03 16:07:00 +08:00
animation-name: antMoveRightOut;
animation-play-state: running;
2015-06-09 15:34:46 +08:00
}
2015-06-10 19:50:02 +08:00
&-slide-horizontal-forward-enter {
2015-12-03 16:07:00 +08:00
.motion-common();
animation-play-state: paused;
animation-timing-function: @ease-in-out-quint;
opacity: 0;
2015-06-09 15:34:46 +08:00
}
2015-06-10 19:50:02 +08:00
&-slide-horizontal-forward-enter&-slide-horizontal-forward-enter-active {
2015-12-03 16:07:00 +08:00
animation-name: antMoveRightIn;
animation-play-state: running;
2015-06-09 15:34:46 +08:00
}
2015-06-10 19:50:02 +08:00
&-slide-horizontal-forward-leave {
2015-06-09 15:34:46 +08:00
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
2015-12-03 16:07:00 +08:00
.motion-common();
animation-play-state: paused;
animation-timing-function: @ease-in-out-quint;
2015-06-09 15:34:46 +08:00
}
2015-06-10 19:50:02 +08:00
&-slide-horizontal-forward-leave&-slide-horizontal-forward-leave-active {
2015-12-03 16:07:00 +08:00
animation-name: antMoveLeftOut;
animation-play-state: running;
2015-06-09 15:34:46 +08:00
}
2015-10-21 19:58:54 +08:00
&-vertical {
.@{tab-prefix-cls}-tab {
float: none;
margin-right: 0;
margin-bottom: 16px;
&:last-child {
margin-bottom: 0;
}
2015-12-14 22:16:25 +08:00
.@{tab-prefix-cls}-tab-inner {
2015-10-21 19:58:54 +08:00
padding: 8px 24px;
}
}
.@{tab-prefix-cls}-nav-scroll {
width: auto;
}
2015-10-22 11:36:41 +08:00
.@{tab-prefix-cls}-tabs-bar {
2015-10-21 19:58:54 +08:00
border-bottom: 0;
}
2015-10-22 11:36:41 +08:00
.@{tab-prefix-cls}-nav-container {
margin-bottom: 0;
}
2015-10-21 19:58:54 +08:00
.@{tab-prefix-cls}-nav-wrap {
margin-bottom: 0;
}
.@{tab-prefix-cls}-ink-bar {
width: 2px;
left: auto;
height: auto;
&-transition-forward {
transition: bottom 0.3s @ease-in-out,
top 0.3s @ease-in-out 0.3s * 0.3;
}
&-transition-backward {
transition: bottom 0.3s @ease-in-out 0.3s * 0.3,
top 0.3s @ease-in-out;
}
}
.@{tab-prefix-cls}-container {
margin-bottom: 0;
}
.@{tab-prefix-cls}-content {
overflow: hidden;
width: auto;
}
}
&-vertical&-left {
.@{tab-prefix-cls}-tabs-bar {
float: left;
2015-12-17 12:04:12 +08:00
border-right: 1px solid @border-color-split;
margin-right: -1px;
margin-bottom: 0;
2015-10-21 19:58:54 +08:00
}
.@{tab-prefix-cls}-tab {
2015-12-14 22:16:25 +08:00
.@{tab-prefix-cls}-tab-inner {
2015-10-21 19:58:54 +08:00
text-align: right;
}
}
2015-10-22 11:36:41 +08:00
.@{tab-prefix-cls}-nav-container {
margin-right: -1px;
}
2015-10-21 19:58:54 +08:00
.@{tab-prefix-cls}-nav-wrap {
margin-right: -1px;
}
.@{tab-prefix-cls}-ink-bar {
2015-10-22 11:36:41 +08:00
right: 1px;
2015-10-21 19:58:54 +08:00
}
.@{tab-prefix-cls}-content {
padding-left: 24px;
2015-12-15 22:10:50 +08:00
border-left: 1px solid @border-color-split;
2015-10-21 19:58:54 +08:00
}
}
&-vertical&-right {
.@{tab-prefix-cls}-tabs-bar {
float: right;
2015-12-15 22:10:50 +08:00
border-left: 1px solid @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;
2015-10-21 19:58:54 +08:00
}
.@{tab-prefix-cls}-nav-container {
margin-left: -1px;
}
.@{tab-prefix-cls}-nav-wrap {
margin-left: -1px;
}
.@{tab-prefix-cls}-ink-bar {
2015-10-22 11:36:41 +08:00
left: 1px;
2015-10-21 19:58:54 +08:00
}
.@{tab-prefix-cls}-content {
padding-right: 24px;
2015-12-15 22:10:50 +08:00
border-right: 1px solid @border-color-split;
2015-10-21 19:58:54 +08:00
}
}
2015-12-14 16:30:15 +08:00
2015-12-16 11:53:52 +08:00
&-bottom &-tabs-bar {
margin-bottom: 0;
margin-top: 16px;
}
2015-12-14 16:30:15 +08:00
// card style
&&-card &-ink-bar {
visibility: hidden;
}
&&-card &-tab {
margin: 0;
2015-12-17 11:51:49 +08:00
border: 1px solid transparent;
2015-12-14 16:30:15 +08:00
border-bottom: 0;
2015-12-17 11:51:49 +08:00
border-radius: 6px 6px 0 0;
transition: all 0.3s @ease-in-out;
2015-12-17 12:33:34 +08:00
background: #f9f9f9;
2015-12-17 11:51:49 +08:00
margin-right: 2px;
2015-12-14 16:30:15 +08:00
}
&&-card &-tab-inner {
2015-12-17 11:51:49 +08:00
padding: 7px 16px 6px;
2015-12-14 16:30:15 +08:00
}
&&-card &-tab-active {
background: #fff;
2015-12-17 11:51:49 +08:00
border-color: @border-color-base;
color: @primary-color;
2015-12-14 16:30:15 +08:00
}
&&-card &-tab-active &-tab-inner {
2015-12-17 11:51:49 +08:00
padding-bottom: 7px;
2015-12-14 16:30:15 +08:00
}
&&-card &-nav-wrap {
margin-bottom: 0;
}
2015-12-14 22:16:25 +08:00
&&-card &-tab-inner .anticon-cross {
margin-right: 0;
color: #999;
2015-12-17 11:51:49 +08:00
transition: all 0.3s @ease-in-out;
.iconfont-size-under-12px(9px);
width: 0;
text-align: right;
vertical-align: middle;
overflow: hidden;
2015-12-14 22:16:25 +08:00
&:hover {
2015-12-17 11:51:49 +08:00
color: #404040;
2015-12-17 15:05:05 +08:00
font-weight: bold;
2015-12-14 22:16:25 +08:00
}
}
2015-12-17 11:51:49 +08:00
&&-card &-tab-active .anticon-cross,
&&-card &-tab:hover .anticon-cross {
width: 16px;
}
2015-12-14 22:16:25 +08:00
&-extra-content {
float: right;
line-height: 32px;
.@{tab-prefix-cls}-new-tab {
width: 20px;
height: 20px;
line-height: 20px;
text-align: center;
cursor: pointer;
border-radius: 3px;
border: 1px solid @border-color-base;
font-size: 12px;
2015-12-15 11:38:27 +08:00
.iconfont-size-under-12px(10px);
2015-12-17 11:51:49 +08:00
color: #999;
2015-12-14 22:16:25 +08:00
transition: color 0.3s ease;
&:hover {
2015-12-17 11:51:49 +08:00
color: #404040;
2015-12-14 22:16:25 +08:00
}
}
}
2015-06-12 15:39:01 +08:00
}