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

325 lines
6.1 KiB
Plaintext
Raw Normal View History

@import "../../style/themes/default";
@import "../../style/mixins/index";
@tab-prefix-cls: ~"@{ant-prefix}-tabs";
@import "./card-style";
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
&-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;
&-animated {
transition: transform 0.3s @ease-in-out;
}
2015-06-09 15:34:46 +08:00
}
2016-03-15 15:09:26 +08:00
&-bar {
border-bottom: @border-width-base @border-style-base @border-color-base;
2015-10-22 11:36:41 +08:00
margin-bottom: 16px;
2017-03-02 16:11:58 +08:00
outline: none;
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;
2016-11-08 21:07:01 +08:00
font-size: @font-size-lg;
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
2017-03-02 16:11:58 +08:00
&-scrolling {
padding-left: 32px;
padding-right: 32px;
}
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;
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;
color: @text-color-secondary;
2016-03-01 16:43:16 +08:00
transition: color 0.3s ease;
&: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 {
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: @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;
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;
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%;
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;
padding: 8px 20px;
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} {
width: 14px;
height: 14px;
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;
2015-06-09 15:34:46 +08:00
}
}
2015-06-19 17:26:24 +08:00
&-mini &-nav-container {
2016-11-08 20:57:07 +08:00
font-size: @font-size-base;
2015-06-19 17:26:24 +08:00
}
&-mini &-tab {
2016-03-07 19:25:59 +08:00
margin-right: 0;
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%;
transition: opacity 0.3s;
opacity: 1;
}
> .@{tab-prefix-cls}-tabpane-inactive {
opacity: 0;
height: 0;
padding: 0!important;
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;
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;
padding: 8px 24px;
2016-04-17 17:56:06 +08:00
&:last-child {
margin-bottom: 0;
}
}
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;
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
}
.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;
}
}
}