ant-design/components/tabs/style/index.less

455 lines
8.9 KiB
Plaintext
Raw Normal View History

@import "../../style/themes/default";
@import "../../style/mixins/index";
2015-08-20 16:55:42 +08:00
@tab-prefix-cls: ant-tabs;
2015-06-10 19:50:02 +08:00
2015-08-20 16:55:42 +08:00
.@{tab-prefix-cls} {
2015-06-09 15:34:46 +08:00
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
2016-03-15 15:09:26 +08:00
&-bar {
outline: none;
}
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;
transition: transform 0.3s @ease-in-out;
2015-06-09 15:34:46 +08:00
transform-origin: 0 0;
}
2016-03-15 15:09:26 +08:00
&-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;
2016-03-01 16:43:16 +08:00
color: #999;
transition: color 0.3s ease;
&:hover {
color: #666;
}
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 {
2016-03-01 16:43:16 +08:00
cursor: not-allowed;
&,
&:hover {
color: #ccc;
}
2015-08-06 16:47:01 +08:00
}
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;
&-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
overflow: hidden;
white-space: nowrap;
2015-06-09 15:34:46 +08:00
}
&-nav {
box-sizing: border-box;
padding-left: 0;
2016-06-12 14:34:33 +08:00
transition: transform 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 {
display: inline-block;
2015-06-09 15:34:46 +08:00
height: 100%;
2016-03-07 19:25:59 +08:00
margin-right: 24px;
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%);
2016-03-11 16:21:32 +08:00
transform: translateZ(0);
2015-12-14 16:30:15 +08:00
}
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;
2016-03-11 16:21:32 +08:00
transform: translateZ(0);
2015-06-09 15:34:46 +08:00
}
}
2015-06-19 17:26:24 +08:00
&-mini &-nav-container {
font-size: 12px;
}
&-mini &-tab {
2016-03-07 19:25:59 +08:00
margin-right: 0;
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;
2016-03-28 11:29:20 +08:00
animation-duration: 0.4s;
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;
2016-03-11 16:21:32 +08:00
transform: translateZ(0);
2015-12-03 16:07:00 +08:00
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;
2016-03-28 11:29:20 +08:00
animation-duration: 0.4s;
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;
2016-03-11 16:21:32 +08:00
transform: translateZ(0);
2015-12-03 16:07:00 +08:00
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;
2016-03-28 11:29:20 +08:00
animation-duration: 0.4s;
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;
2016-03-11 16:21:32 +08:00
transform: translateZ(0);
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();
2016-03-28 11:29:20 +08:00
animation-duration: 0.4s;
2015-12-03 16:07:00 +08:00
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 {
2016-03-11 16:21:32 +08:00
transform: translateZ(0);
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 {
2016-04-17 17:56:06 +08:00
> .@{tab-prefix-cls}-bar {
2015-10-21 19:58:54 +08:00
border-bottom: 0;
2016-04-17 17:56:06 +08:00
.@{tab-prefix-cls}-tab {
float: none;
margin-right: 0;
margin-bottom: 16px;
2016-06-15 11:19:23 +08:00
display: block;
2016-04-17 17:56:06 +08:00
&:last-child {
margin-bottom: 0;
}
.@{tab-prefix-cls}-tab-inner {
padding: 8px 24px;
}
}
2015-10-22 11:36:41 +08:00
2016-04-17 17:56:06 +08:00
.@{tab-prefix-cls}-nav-scroll {
width: auto;
}
2015-10-21 19:58:54 +08:00
2016-04-17 17:56:06 +08:00
.@{tab-prefix-cls}-nav-container {
margin-bottom: 0;
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
}
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
}
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
overflow: hidden;
width: auto;
}
}
&-vertical&-left {
2016-04-17 17:56:06 +08:00
> .@{tab-prefix-cls}-bar {
2015-10-21 19:58:54 +08:00
float: left;
2015-12-17 12:04:12 +08:00
border-right: 1px solid @border-color-split;
margin-right: -1px;
margin-bottom: 0;
2016-04-17 17:56:06 +08:00
.@{tab-prefix-cls}-tab {
.@{tab-prefix-cls}-tab-inner {
text-align: right;
}
}
.@{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;
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 {
2016-04-17 17:56:06 +08:00
> .@{tab-prefix-cls}-bar {
2015-10-21 19:58:54 +08:00
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;
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;
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
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-12-14 16:30:15 +08:00
// card style
2016-05-10 11:26:48 +08:00
&&-card > &-bar &-nav-container {
2016-03-04 21:15:09 +08:00
height: 36px;
}
2016-05-10 11:26:48 +08:00
&&-card > &-bar &-ink-bar {
2015-12-14 16:30:15 +08:00
visibility: hidden;
}
2016-05-10 11:26:48 +08:00
&&-card > &-bar &-tab {
2015-12-14 16:30:15 +08:00
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
}
2016-05-10 11:26:48 +08:00
&&-card > &-bar &-tab-inner {
2015-12-17 11:51:49 +08:00
padding: 7px 16px 6px;
2016-02-24 20:12:01 +08:00
transition: all 0.3s @ease-in-out;
2015-12-14 16:30:15 +08:00
}
2016-05-10 11:26:48 +08:00
&&-card > &-bar &-tab-active {
2015-12-14 16:30:15 +08:00
background: #fff;
2016-03-11 16:21:32 +08:00
transform: translateZ(0);
2015-12-17 11:51:49 +08:00
border-color: @border-color-base;
color: @primary-color;
2015-12-14 16:30:15 +08:00
}
2016-05-10 11:26:48 +08:00
&&-card > &-bar &-tab-active &-tab-inner {
2015-12-17 11:51:49 +08:00
padding-bottom: 7px;
2016-03-11 16:21:32 +08:00
transform: translateZ(0);
2015-12-14 16:30:15 +08:00
}
2016-05-10 11:26:48 +08:00
&&-card > &-bar &-nav-wrap {
2015-12-14 16:30:15 +08:00
margin-bottom: 0;
}
2016-05-10 11:26:48 +08:00
&&-card > &-bar &-tab-inner .anticon-cross {
2015-12-14 22:16:25 +08:00
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);
2016-02-24 20:12:01 +08:00
transform-origin: 100% 50%;
2015-12-17 11:51:49 +08:00
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
}
}
2016-05-10 11:26:48 +08:00
&&-editable-card > &-bar &-tab:not(&-tab-active):hover &-tab-inner {
2016-02-24 20:12:01 +08:00
padding-left: 8px;
padding-right: 8px;
}
2016-05-10 11:26:48 +08:00
&&-card > &-bar &-tab-active .anticon-cross,
&&-card > &-bar &-tab:hover .anticon-cross {
2015-12-17 11:51:49 +08:00
width: 16px;
2016-03-11 16:21:32 +08:00
transform: translateZ(0);
2015-12-17 11:51:49 +08:00
}
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
}