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

159 lines
3.7 KiB
Plaintext
Raw Normal View History

2018-12-14 15:31:02 +00:00
@import '../../style/themes/default';
@import '../../style/mixins/index';
2018-01-15 10:54:26 +00:00
2018-12-14 15:31:02 +00:00
@tab-prefix-cls: ~'@{ant-prefix}-tabs';
2017-11-02 02:42:34 +00:00
// card style
.@{tab-prefix-cls} {
2018-12-14 15:31:02 +00:00
&&-card &-card-bar &-nav-container {
2018-01-15 10:54:26 +00:00
height: @tabs-card-height;
2017-11-02 02:42:34 +00:00
}
2018-12-14 15:31:02 +00:00
&&-card &-card-bar &-ink-bar {
2017-11-02 02:42:34 +00:00
visibility: hidden;
}
2018-12-14 15:31:02 +00:00
&&-card &-card-bar &-tab {
2017-11-02 02:42:34 +00:00
margin: 0;
2018-01-15 10:54:26 +00:00
border: @border-width-base @border-style-base @border-color-split;
2017-11-02 02:42:34 +00:00
border-bottom: 0;
border-radius: @border-radius-base @border-radius-base 0 0;
background: @tabs-card-head-background;
margin-right: 2px;
2018-01-15 10:54:26 +00:00
padding: 0 16px;
2017-11-02 02:42:34 +00:00
transition: all 0.3s @ease-in-out;
2018-01-15 10:54:26 +00:00
line-height: @tabs-card-height - 2px;
2017-11-02 02:42:34 +00:00
}
2018-12-14 15:31:02 +00:00
&&-card &-card-bar &-tab-active {
2017-11-02 02:42:34 +00:00
background: @component-background;
2018-01-15 10:54:26 +00:00
border-color: @border-color-split;
2018-02-05 05:50:04 +00:00
color: @tabs-card-active-color;
2018-01-15 10:54:26 +00:00
padding-bottom: 1px;
2017-11-02 02:42:34 +00:00
}
2018-12-14 15:31:02 +00:00
&&-card &-card-bar &-tab-inactive {
2017-11-02 02:42:34 +00:00
padding: 0;
}
2018-12-14 15:31:02 +00:00
&&-card &-card-bar &-nav-wrap {
2017-11-02 02:42:34 +00:00
margin-bottom: 0;
}
2018-12-14 15:31:02 +00:00
&&-card &-card-bar &-tab &-close-x {
2017-11-02 02:42:34 +00:00
color: @text-color-secondary;
2018-12-14 15:31:02 +00:00
transition: all 0.3s;
2018-01-15 10:54:26 +00:00
font-size: @font-size-sm;
margin-left: 3px;
margin-right: -5px;
2017-11-02 02:42:34 +00:00
overflow: hidden;
2018-01-15 10:54:26 +00:00
vertical-align: middle;
width: 16px;
height: 16px;
height: @font-size-base;
2017-11-02 02:42:34 +00:00
&:hover {
color: @heading-color;
}
}
2018-12-14 15:31:02 +00:00
&&-card &-card-content > &-tabpane,
&&-editable-card &-card-content > &-tabpane {
2017-11-02 02:42:34 +00:00
transition: none !important;
&-inactive {
overflow: hidden;
}
}
2018-12-14 15:31:02 +00:00
&&-card &-card-bar &-tab:hover .@{iconfont-css-prefix}-close {
2017-11-02 02:42:34 +00:00
opacity: 1;
}
&-extra-content {
2018-01-15 10:54:26 +00:00
line-height: @tabs-card-height;
2017-11-02 02:42:34 +00:00
.@{tab-prefix-cls}-new-tab {
2018-11-14 13:33:56 +00:00
position: relative;
2017-11-02 02:42:34 +00:00
width: 20px;
height: 20px;
line-height: 20px;
text-align: center;
cursor: pointer;
2018-01-15 10:54:26 +00:00
border-radius: @border-radius-sm;
border: @border-width-base @border-style-base @border-color-split;
font-size: 12px;
color: @text-color;
2018-12-14 15:31:02 +00:00
transition: all 0.3s;
2017-11-02 02:42:34 +00:00
&:hover {
2018-02-05 05:50:04 +00:00
color: @tabs-card-active-color;
border-color: @tabs-card-active-color;
2017-11-02 02:42:34 +00:00
}
2018-11-14 13:33:56 +00:00
svg {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
}
2017-11-02 02:42:34 +00:00
}
}
// https://github.com/ant-design/ant-design/issues/4669
2018-12-14 15:31:02 +00:00
&-vertical&-card &-card-bar&-left-bar,
&-vertical&-card &-card-bar&-right-bar {
2017-11-02 02:42:34 +00:00
.@{tab-prefix-cls}-nav-container {
height: auto;
}
.@{tab-prefix-cls}-tab {
2018-01-15 10:54:26 +00:00
border-bottom: @border-width-base @border-style-base @border-color-split;
2017-11-02 02:42:34 +00:00
margin-bottom: 8px;
&-active {
padding-bottom: 4px;
}
&:last-child {
margin-bottom: 8px;
}
}
.@{tab-prefix-cls}-new-tab {
width: 90%;
}
}
2018-12-14 15:31:02 +00:00
&-vertical&-card&-left &-card-bar&-left-bar {
2017-11-02 02:42:34 +00:00
.@{tab-prefix-cls}-nav-wrap {
margin-right: 0;
}
.@{tab-prefix-cls}-tab {
border-right: 0;
border-radius: @border-radius-base 0 0 @border-radius-base;
margin-right: 1px;
&-active {
margin-right: -1px;
padding-right: 18px;
}
}
}
2018-12-14 15:31:02 +00:00
&-vertical&-card&-right &-card-bar&-right-bar {
2017-11-02 02:42:34 +00:00
.@{tab-prefix-cls}-nav-wrap {
margin-left: 0;
}
.@{tab-prefix-cls}-tab {
border-left: 0;
border-radius: 0 @border-radius-base @border-radius-base 0;
margin-left: 1px;
&-active {
margin-left: -1px;
padding-left: 18px;
}
}
}
2018-02-05 05:50:04 +00:00
// https://github.com/ant-design/ant-design/issues/9104
2018-12-14 15:31:02 +00:00
& &-card-bar&-bottom-bar &-tab {
2018-02-05 05:50:04 +00:00
border-bottom: @border-width-base @border-style-base @border-color-split;
border-top: 0;
border-radius: 0 0 @border-radius-base @border-radius-base;
}
2018-12-14 15:31:02 +00:00
& &-card-bar&-bottom-bar &-tab-active {
2018-02-05 05:50:04 +00:00
color: @primary-color;
padding-bottom: 0;
padding-top: 1px;
}
2019-01-02 13:01:56 +00:00
}