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

414 lines
8.4 KiB
Plaintext
Raw Normal View History

2018-12-07 16:17:45 +08:00
@import '../../style/themes/default';
@import '../../style/mixins/index';
@import './card-style';
2015-06-10 19:50:02 +08:00
2018-12-07 16:17:45 +08:00
@tab-prefix-cls: ~'@{ant-prefix}-tabs';
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;
2018-11-05 19:04:28 +08:00
background-color: @tabs-ink-bar-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-11-05 19:04:28 +08:00
margin: @tabs-bar-margin;
2017-03-02 16:11:58 +08:00
outline: none;
2018-12-07 16:17:45 +08:00
transition: padding 0.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;
2018-12-07 16:17:45 +08:00
transition: padding 0.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-11-05 19:04:28 +08:00
padding-left: @tabs-scrolling-size;
padding-right: @tabs-scrolling-size;
2017-03-02 16:11:58 +08:00
}
2015-08-06 16:47:01 +08:00
}
// https://github.com/ant-design/ant-design/issues/9104
&-bottom &-bottom-bar {
margin-bottom: 0;
margin-top: 16px;
border-bottom: none;
border-top: @border-width-base @border-style-base @border-color-split;
}
&-bottom &-bottom-bar &-ink-bar {
bottom: auto;
top: 1px;
}
&-bottom &-bottom-bar &-nav-container {
margin-bottom: 0;
margin-top: -1px;
}
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;
2018-12-07 16:17:45 +08:00
transition: width 0.3s @ease-in-out, opacity 0.3s @ease-in-out, color 0.3s @ease-in-out;
opacity: 0;
pointer-events: none;
&.@{tab-prefix-cls}-tab-arrow-show {
opacity: 1;
2018-11-05 19:04:28 +08:00
width: @tabs-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;
2018-08-16 16:13:18 +08:00
&-target {
2015-06-09 15:34:46 +08:00
display: block;
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;
}
&-tab-prev {
left: 0;
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;
2018-12-07 16:17:45 +08:00
content: ' ';
2015-06-09 15:34:46 +08:00
}
&: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%;
2018-11-05 19:04:28 +08:00
margin: @tabs-horizontal-margin;
padding: @tabs-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 {
2018-11-05 19:04:28 +08:00
color: @tabs-hover-color;
}
2015-06-15 16:11:28 +08:00
&:active {
2018-11-05 19:04:28 +08:00
color: @tabs-active-color;
}
.@{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 {
2018-11-05 19:04:28 +08:00
color: @tabs-highlight-color;
2017-10-19 20:21:56 +08:00
font-weight: 500;
2015-06-09 15:34:46 +08:00
}
}
.@{tab-prefix-cls}-large-bar {
.@{tab-prefix-cls}-nav-container {
font-size: @tabs-title-font-size-lg;
}
.@{tab-prefix-cls}-tab {
padding: 16px;
}
2015-06-19 17:26:24 +08:00
}
.@{tab-prefix-cls}-small-bar {
.@{tab-prefix-cls}-nav-container {
font-size: @tabs-title-font-size-sm;
}
.@{tab-prefix-cls}-tab {
padding: 8px 16px;
}
2015-06-09 15:34:46 +08:00
}
// Horizontal Content
.@{tab-prefix-cls}-top-content,
.@{tab-prefix-cls}-bottom-content {
width: 100%;
2016-12-21 12:00:42 +08:00
> .@{tab-prefix-cls}-tabpane {
flex-shrink: 0;
width: 100%;
2018-12-07 16:17:45 +08:00
transition: opacity 0.45s;
opacity: 1;
}
2016-12-21 12:00:42 +08:00
> .@{tab-prefix-cls}-tabpane-inactive {
opacity: 0;
height: 0;
padding: 0 !important;
pointer-events: none;
input {
visibility: hidden;
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 Bar
.@{tab-prefix-cls}-left-bar,
.@{tab-prefix-cls}-right-bar {
border-bottom: 0;
height: 100%;
2018-12-07 16:17:45 +08:00
&-tab-prev,
&-tab-next {
width: @tabs-scrolling-size;
height: 0;
2018-12-07 16:17:45 +08:00
transition: height 0.3s @ease-in-out, opacity 0.3s @ease-in-out, color 0.3s @ease-in-out;
}
&-tab-prev.@{tab-prefix-cls}-tab-arrow-show,
&-tab-next.@{tab-prefix-cls}-tab-arrow-show {
width: 100%;
height: @tabs-scrolling-size;
}
.@{tab-prefix-cls}-tab {
float: none;
margin: @tabs-vertical-margin;
padding: @tabs-vertical-padding;
display: block;
2015-10-22 11:36:41 +08:00
&:last-child {
margin-bottom: 0;
}
}
.@{tab-prefix-cls}-extra-content {
text-align: center;
}
2015-10-21 19:58:54 +08:00
.@{tab-prefix-cls}-nav-scroll {
width: auto;
}
.@{tab-prefix-cls}-nav-container,
.@{tab-prefix-cls}-nav-wrap {
height: 100%;
}
.@{tab-prefix-cls}-nav-container {
margin-bottom: 0;
2016-04-17 17:56:06 +08:00
&.@{tab-prefix-cls}-nav-container-scrolling {
padding: @tabs-scrolling-size 0;
2015-10-21 19:58:54 +08:00
}
}
2015-10-21 19:58:54 +08:00
.@{tab-prefix-cls}-nav-wrap {
margin-bottom: 0;
}
.@{tab-prefix-cls}-nav {
width: 100%;
}
.@{tab-prefix-cls}-ink-bar {
width: 2px;
top: 0;
left: auto;
height: auto;
bottom: auto;
}
.@{tab-prefix-cls}-tab-next {
width: 100%;
bottom: 0;
height: @tabs-scrolling-size;
}
.@{tab-prefix-cls}-tab-prev {
top: 0;
width: 100%;
height: @tabs-scrolling-size;
}
2015-10-21 19:58:54 +08:00
}
// Vertical Content
.@{tab-prefix-cls}-left-content,
.@{tab-prefix-cls}-right-content {
overflow: hidden;
width: auto;
margin-top: 0 !important;
}
// Vertical - Left
.@{tab-prefix-cls}-left-bar {
float: left;
border-right: @border-width-base @border-style-base @border-color-split;
margin-right: -1px;
margin-bottom: 0;
.@{tab-prefix-cls}-tab {
text-align: right;
}
.@{tab-prefix-cls}-nav-container {
2015-12-17 12:04:12 +08:00
margin-right: -1px;
2015-10-21 19:58:54 +08:00
}
.@{tab-prefix-cls}-nav-wrap {
margin-right: -1px;
2015-10-21 19:58:54 +08:00
}
.@{tab-prefix-cls}-ink-bar {
right: 1px;
}
}
.@{tab-prefix-cls}-left-content {
padding-left: 24px;
border-left: @border-width-base @border-style-base @border-color-split;
2015-10-21 19:58:54 +08:00
}
// Vertical - Right
.@{tab-prefix-cls}-right-bar {
float: right;
border-left: @border-width-base @border-style-base @border-color-split;
margin-left: -1px;
margin-bottom: 0;
.@{tab-prefix-cls}-nav-container {
margin-left: -1px;
}
.@{tab-prefix-cls}-nav-wrap {
2015-10-22 11:36:41 +08:00
margin-left: -1px;
2015-10-21 19:58:54 +08:00
}
.@{tab-prefix-cls}-ink-bar {
left: 1px;
2015-10-21 19:58:54 +08:00
}
}
.@{tab-prefix-cls}-right-content {
padding-right: 24px;
border-right: @border-width-base @border-style-base @border-color-split;
2015-12-16 11:53:52 +08:00
}
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 {
2018-12-07 16:17:45 +08:00
transition: transform 0.3s @ease-in-out, width 0.3s @ease-in-out, left 0.3s @ease-in-out;
2017-05-10 21:29:52 +08:00
}
.@{tab-prefix-cls}-left .@{tab-prefix-cls}-ink-bar-animated,
.@{tab-prefix-cls}-right .@{tab-prefix-cls}-ink-bar-animated {
2018-12-07 16:17:45 +08:00
transition: transform 0.3s @ease-in-out, height 0.3s @ease-in-out, top 0.3s @ease-in-out;
2017-05-10 21:29:52 +08:00
}
// No animation
.tabs-no-animation() {
> .@{tab-prefix-cls}-content-animated {
transform: none !important;
margin-left: 0 !important;
}
> .@{tab-prefix-cls}-tabpane-inactive {
display: none;
}
}
.no-flex,
.@{tab-prefix-cls}-no-animation {
2016-12-21 12:00:42 +08:00
> .@{tab-prefix-cls}-content {
.tabs-no-animation();
}
}
.@{tab-prefix-cls}-left-content,
.@{tab-prefix-cls}-right-content {
.tabs-no-animation();
}