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

409 lines
8.2 KiB
Plaintext
Raw Normal View History

@import "../../style/themes/default";
@import "../../style/mixins/index";
@tab-prefix-cls: ~"@{ant-prefix}-tabs";
2017-08-04 22:25:30 +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-18 13:41:21 +08:00
@tab-horizontal-margin: 0 32px 0 0;
@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} {
.reset-component;
2015-06-09 15:34:46 +08:00
position: relative;
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;
margin: @tab-bar-margin;
2017-03-02 16:11:58 +08:00
outline: none;
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;
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;
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 {
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;
width: 0;
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;
color: @text-color-secondary;
transition: width .3s @ease-in-out, opacity .3s @ease-in-out, color .3s @ease-in-out;
opacity: 0;
pointer-events: none;
&.@{tab-prefix-cls}-tab-arrow-show {
opacity: 1;
width: @tab-scrolling-size;
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;
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 {
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 {
content: "\e61f";
2015-06-09 15:34:46 +08:00
}
}
&-tab-prev {
left: 0;
&-icon:before {
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;
white-space: nowrap;
2015-06-09 15:34:46 +08:00
}
&-nav {
box-sizing: border-box;
padding-left: 0;
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;
color: @disabled-color;
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%;
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;
}
transition: color 0.3s @ease-in-out;
cursor: pointer;
text-decoration: none;
2015-12-14 16:30:15 +08:00
&:hover {
color: @primary-5;
}
2015-06-15 16:11:28 +08:00
&:active {
color: @primary-7;
}
.@{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
.@{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 {
padding: 8px 16px;
2015-06-09 15:34:46 +08:00
}
&:not(&-vertical) {
2016-12-21 12:00:42 +08:00
> .@{tab-prefix-cls}-content {
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;
pointer-events: none;
2016-12-21 12:00:42 +08:00
}
}
2016-12-21 12:00:42 +08:00
> .@{tab-prefix-cls}-content-animated {
display: flex;
flex-direction: row;
will-change: margin-left;
transition: margin-left 0.3s @ease-in-out;
}
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;
height: 100%;
&-tab-prev, &-tab-next {
width: @tab-scrolling-size;
height: 0;
transition: height .3s @ease-in-out, opacity .3s @ease-in-out, color .3s @ease-in-out;
}
&-tab-prev.@{tab-prefix-cls}-tab-arrow-show,
&-tab-next.@{tab-prefix-cls}-tab-arrow-show {
width: 100%;
height: @tab-scrolling-size;
}
2016-04-17 17:56:06 +08:00
.@{tab-prefix-cls}-tab {
float: none;
margin: @tab-vertical-margin;
padding: @tab-vertical-padding;
2016-06-15 11:19:23 +08:00
display: block;
2016-04-17 17:56:06 +08:00
&:last-child {
margin-bottom: 0;
}
}
2015-10-22 11:36:41 +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
.@{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;
&.@{tab-prefix-cls}-nav-container-scrolling {
padding: @tab-scrolling-size 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
}
.@{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
}
.@{tab-prefix-cls}-tab-next {
width: 100%;
bottom: 0;
height: @tab-scrolling-size;
&-icon:before {
content: "\e61d";
}
}
.@{tab-prefix-cls}-tab-prev {
top: 0;
width: 100%;
height: @tab-scrolling-size;
&-icon:before {
content: "\e61e";
}
}
}
> .@{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;
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 {
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;
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;
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;
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
}
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;
}
.no-flex,
.@{tab-prefix-cls}-no-animation,
.@{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;
}
> .@{tab-prefix-cls}-tabpane-inactive {
display: none;
}
}
}