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

409 lines
8.3 KiB
Plaintext
Raw Normal View History

2017-11-02 02:42:34 +00:00
@import "../../style/themes/default";
@import "../../style/mixins/index";
@import "./card-style";
2018-02-05 05:50:04 +00:00
@tab-prefix-cls: ~"@{ant-prefix}-tabs";
2017-11-02 02:42:34 +00:00
.@{tab-prefix-cls} {
2018-01-15 10:54:26 +00:00
.reset-component;
2017-11-02 02:42:34 +00:00
position: relative;
overflow: hidden;
.clearfix;
&-ink-bar {
z-index: 1;
position: absolute;
left: 0;
bottom: 1px;
box-sizing: border-box;
height: 2px;
2018-11-14 13:33:56 +00:00
background-color: @tabs-ink-bar-color;
2017-11-02 02:42:34 +00:00
transform-origin: 0 0;
}
&-bar {
2018-01-15 10:54:26 +00:00
border-bottom: @border-width-base @border-style-base @border-color-split;
2018-11-14 13:33:56 +00:00
margin: @tabs-bar-margin;
2017-11-02 02:42:34 +00:00
outline: none;
transition: padding .3s @ease-in-out;
}
&-nav-container {
overflow: hidden;
font-size: @tabs-title-font-size;
line-height: @line-height-base;
box-sizing: border-box;
position: relative;
white-space: nowrap;
margin-bottom: -1px;
transition: padding .3s @ease-in-out;
.clearfix;
&-scrolling {
2018-11-14 13:33:56 +00:00
padding-left: @tabs-scrolling-size;
padding-right: @tabs-scrolling-size;
2017-11-02 02:42:34 +00:00
}
}
2018-02-05 05:50:04 +00:00
// https://github.com/ant-design/ant-design/issues/9104
&-bottom &-bar {
border-bottom: none;
border-top: @border-width-base @border-style-base @border-color-split;
}
&-bottom &-ink-bar {
bottom: auto;
top: 1px;
}
&-bottom &-nav-container {
margin-bottom: 0;
margin-top: -1px;
}
2017-11-02 02:42:34 +00:00
&-tab-prev,
&-tab-next {
user-select: none;
z-index: 2;
width: 0;
height: 100%;
cursor: pointer;
border: 0;
background-color: transparent;
position: absolute;
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;
2018-11-14 13:33:56 +00:00
width: @tabs-scrolling-size;
2017-11-02 02:42:34 +00:00
height: 100%;
pointer-events: auto;
}
&:hover {
color: @text-color;
}
&-icon {
font-style: normal;
font-weight: bold;
font-variant: normal;
line-height: inherit;
vertical-align: baseline;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
text-transform: none;
2018-11-14 13:33:56 +00:00
&-target {
2017-11-02 02:42:34 +00:00
display: block;
.iconfont-size-under-12px(10px);
}
}
}
&-tab-btn-disabled {
cursor: not-allowed;
&,
&:hover {
color: @disabled-color;
}
}
&-tab-next {
right: 2px;
}
&-tab-prev {
left: 0;
:root & {
filter: none;
}
}
&-nav-wrap {
overflow: hidden;
margin-bottom: -1px;
}
&-nav-scroll {
overflow: hidden;
white-space: nowrap;
}
&-nav {
box-sizing: border-box;
padding-left: 0;
transition: transform 0.3s @ease-in-out;
position: relative;
margin: 0;
list-style: none;
display: inline-block;
&:before,
&:after {
display: table;
content: " ";
}
&:after {
clear: both;
}
.@{tab-prefix-cls}-tab-disabled {
pointer-events: none;
cursor: default;
color: @disabled-color;
}
.@{tab-prefix-cls}-tab {
display: inline-block;
height: 100%;
2018-11-14 13:33:56 +00:00
margin: @tabs-horizontal-margin;
padding: @tabs-horizontal-padding;
2017-11-02 02:42:34 +00:00
box-sizing: border-box;
position: relative;
&:last-child {
margin-right: 0;
}
transition: color 0.3s @ease-in-out;
cursor: pointer;
text-decoration: none;
&:hover {
2018-11-14 13:33:56 +00:00
color: @tabs-hover-color;
2017-11-02 02:42:34 +00:00
}
&:active {
2018-11-14 13:33:56 +00:00
color: @tabs-active-color;
2017-11-02 02:42:34 +00:00
}
2018-01-15 10:54:26 +00:00
2017-11-02 02:42:34 +00:00
.@{iconfont-css-prefix} {
margin-right: 8px;
}
}
.@{tab-prefix-cls}-tab-active {
2018-11-14 13:33:56 +00:00
color: @tabs-highlight-color;
2018-01-15 10:54:26 +00:00
font-weight: 500;
2017-11-02 02:42:34 +00:00
}
}
2018-11-14 13:33:56 +00:00
2018-09-17 13:30:08 +00:00
&-large {
> .@{tab-prefix-cls}-bar {
.@{tab-prefix-cls}-nav-container {
font-size: @tabs-title-font-size-lg;
}
.@{tab-prefix-cls}-tab {
padding: 16px;
}
}
2018-09-16 13:36:22 +00:00
}
2018-09-17 13:30:08 +00:00
&-small {
> .@{tab-prefix-cls}-bar {
.@{tab-prefix-cls}-nav-container {
font-size: @tabs-title-font-size-sm;
}
.@{tab-prefix-cls}-tab {
padding: 8px 16px;
}
}
2017-11-02 02:42:34 +00:00
}
&:not(&-vertical) {
> .@{tab-prefix-cls}-content {
width: 100%;
> .@{tab-prefix-cls}-tabpane {
flex-shrink: 0;
width: 100%;
transition: opacity .45s;
opacity: 1;
}
> .@{tab-prefix-cls}-tabpane-inactive {
opacity: 0;
height: 0;
padding: 0 !important;
pointer-events: none;
update to antd3.8.3 (#159) * refactor: align * feat: update align to 2.4.3 * feat: update trigger 2.5.4 * feat: update tooltip 3.7.2 * fix: align * feat: update vc-calendar to 9.6.2 * feat: update vc-checkbox to 2.1.5 * feat: update vc-dialog to 7.1.8 * feat: update vc-from to 2.2.1 * feat: update vc-notification to 3.1.1 * test: update snapshots * feat: update vc-tree to 1.12.6 * feat: update vc-table to 6.2.8 * feat: update vc-upload to 2.5.1 * feat: update vc-input-number to 4.0.12 * feat: update vc-tabs to 9.2.6 * refactor: vc-menu * refactor: update vc-menu to 7.0.5 * style: remove unused * feat: update pagination to 1.16.5 * feat: add vc-progress 2.2.5 tag * feat: add vc-rate 2.4.0 tag * feat: update vc-slider to 8.6.1 * fix: tooltip error * style: delete conosle * feat: update vc-steps to 3.1.1 * add vc-switch tag 1.6.0 * feat: update upload to 2.5.1 * fix: update vc-menu * fix: update store * fix: add ref dir * fix: trigger mock shouldComponentUpdate * fix: update vc-select * revert: trigger lazyrenderbox * fix: update vc-select * fix: update vc-select * fix: update vc-select * fix: update vc-menu * fix: update vc-slick ref * update style to 3.8.2 * test: update snapshots * update vc-select * update util & affix * feat: add drawer * fix: support title add slot mode * test: update affix test * update alert * update anchor * update snapshots * fix: doc and vc-drawer * update select & auto-complete * update back-top & grid * feractor: avatar * test: add drawer test * update badge * update button * update card * update divider * feat: update vc-tabs to 9.3.6 and tabs * add afterEnter callback * update form * fix: update drawer * test: update snapshots * update modal & notification * test: update snapshots * update message * update locale-provider * update dropdown * update layout popconfirm popover * update time-picker * update menu * update date-picker * docs: update input docs * update input * update snapshots * update table * update test snapshots * feat: update progress * update checkbox * feat: update spin * update radio * docs: slider steps timeline * update list * update transfer * update collapse * update cascader * update upload
2018-09-05 13:28:54 +00:00
input {
visibility: hidden;
}
2017-11-02 02:42:34 +00:00
}
}
> .@{tab-prefix-cls}-content-animated {
display: flex;
flex-direction: row;
will-change: margin-left;
transition: margin-left 0.3s @ease-in-out;
}
}
&-vertical {
> .@{tab-prefix-cls}-bar {
border-bottom: 0;
height: 100%;
&-tab-prev, &-tab-next {
2018-11-14 13:33:56 +00:00
width: @tabs-scrolling-size;
2017-11-02 02:42:34 +00:00
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%;
2018-11-14 13:33:56 +00:00
height: @tabs-scrolling-size;
2017-11-02 02:42:34 +00:00
}
.@{tab-prefix-cls}-tab {
float: none;
2018-11-14 13:33:56 +00:00
margin: @tabs-vertical-margin;
padding: @tabs-vertical-padding;
2017-11-02 02:42:34 +00:00
display: block;
&:last-child {
margin-bottom: 0;
}
}
.@{tab-prefix-cls}-extra-content {
text-align: center;
}
.@{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;
&.@{tab-prefix-cls}-nav-container-scrolling {
2018-11-14 13:33:56 +00:00
padding: @tabs-scrolling-size 0;
2017-11-02 02:42:34 +00:00
}
}
.@{tab-prefix-cls}-nav-wrap {
margin-bottom: 0;
}
.@{tab-prefix-cls}-nav {
width: 100%;
}
.@{tab-prefix-cls}-ink-bar {
width: 2px;
left: auto;
height: auto;
2018-11-14 13:33:56 +00:00
bottom: auto;
2017-11-02 02:42:34 +00:00
}
.@{tab-prefix-cls}-tab-next {
width: 100%;
bottom: 0;
2018-11-14 13:33:56 +00:00
height: @tabs-scrolling-size;
2017-11-02 02:42:34 +00:00
}
.@{tab-prefix-cls}-tab-prev {
top: 0;
width: 100%;
2018-11-14 13:33:56 +00:00
height: @tabs-scrolling-size;
2017-11-02 02:42:34 +00:00
}
}
2018-01-15 10:54:26 +00:00
> .@{tab-prefix-cls}-content {
overflow: hidden;
width: auto;
margin-top: 0 !important;
}
2017-11-02 02:42:34 +00:00
}
&-vertical&-left {
> .@{tab-prefix-cls}-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 {
margin-right: -1px;
}
.@{tab-prefix-cls}-nav-wrap {
margin-right: -1px;
}
.@{tab-prefix-cls}-ink-bar {
right: 1px;
}
}
> .@{tab-prefix-cls}-content {
padding-left: 24px;
border-left: @border-width-base @border-style-base @border-color-split;
}
}
&-vertical&-right {
> .@{tab-prefix-cls}-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 {
margin-left: -1px;
}
.@{tab-prefix-cls}-ink-bar {
left: 1px;
}
}
> .@{tab-prefix-cls}-content {
padding-right: 24px;
border-right: @border-width-base @border-style-base @border-color-split;
}
}
&-bottom > &-bar {
margin-bottom: 0;
margin-top: 16px;
}
}
.@{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 {
> .@{tab-prefix-cls}-content {
&-animated {
transform: none !important;
margin-left: 0 !important;
}
> .@{tab-prefix-cls}-tabpane-inactive {
display: none;
}
}
}