mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 06:09:34 +08:00
2bced36f0c
* Tweak button padding
* upgrade input and button size
* update form controls size
* update components size
* Add lemon color and update rate color
* Add new icons
* update layout style
* breadcrumb and dropdown
* update menu arrow width
* update layout and menu
* update steps
* fix var name
* update cascasder style
* Update DatePicker
* update InputNumber and Mention
* radio and switch
* select and transfer
* TimePicker & Upload
* more components
* calendar and list
* Tree Timeline Popover Tag
* divider modal popover
* update search input
* update card style
* update switch disabled opacity
* update shoadow and mask
* Add v2-compatible-reset.less
* Fix undefined className
* update snahshotssssssssssssssssss 👻
140 lines
3.3 KiB
Plaintext
140 lines
3.3 KiB
Plaintext
@import "../../style/themes/default";
|
|
@import "../../style/mixins/index";
|
|
|
|
@tab-prefix-cls: ~"@{ant-prefix}-tabs";
|
|
|
|
// card style
|
|
.@{tab-prefix-cls} {
|
|
&&-card > &-bar &-nav-container {
|
|
height: @tabs-card-height;
|
|
}
|
|
&&-card > &-bar &-ink-bar {
|
|
visibility: hidden;
|
|
}
|
|
&&-card > &-bar &-tab {
|
|
margin: 0;
|
|
border: @border-width-base @border-style-base @border-color-base;
|
|
border-bottom: 0;
|
|
border-radius: @border-radius-base @border-radius-base 0 0;
|
|
transition: all 0.3s @ease-in-out;
|
|
background: @tabs-card-head-background;
|
|
margin-right: 2px;
|
|
}
|
|
&&-card > &-bar &-tab {
|
|
padding: 0 16px;
|
|
transition: all 0.3s @ease-in-out;
|
|
line-height: @tabs-card-height - 2px;
|
|
}
|
|
&&-card > &-bar &-tab-active {
|
|
background: @component-background;
|
|
border-color: @border-color-base;
|
|
color: @primary-color;
|
|
padding-bottom: 1px;
|
|
}
|
|
&&-card > &-bar &-tab-inactive {
|
|
padding: 0;
|
|
}
|
|
&&-card > &-bar &-nav-wrap {
|
|
margin-bottom: 0;
|
|
}
|
|
&&-card > &-bar &-tab .@{iconfont-css-prefix}-close {
|
|
color: @text-color-secondary;
|
|
transition: all .3s;
|
|
font-size: @font-size-sm;
|
|
margin-left: 3px;
|
|
margin-right: -5px;
|
|
overflow: hidden;
|
|
vertical-align: middle;
|
|
width: 16px;
|
|
height: 16px;
|
|
height: @font-size-base;
|
|
&:hover {
|
|
color: @heading-color;
|
|
}
|
|
}
|
|
|
|
&&-card &-content > &-tabpane,
|
|
&&-editable-card &-content > &-tabpane {
|
|
transition: none !important;
|
|
&-inactive {
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
|
|
&&-card > &-bar &-tab:hover .@{iconfont-css-prefix}-close {
|
|
opacity: 1;
|
|
}
|
|
|
|
&-extra-content {
|
|
line-height: @tabs-card-height;
|
|
|
|
.@{tab-prefix-cls}-new-tab {
|
|
width: 20px;
|
|
height: 20px;
|
|
line-height: 20px;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
border-radius: @border-radius-base;
|
|
border: @border-width-base @border-style-base @border-color-base;
|
|
font-size: @font-size-base;
|
|
.iconfont-size-under-12px(10px);
|
|
color: @text-color-secondary;
|
|
transition: all .3s;
|
|
&:hover {
|
|
color: @primary-color;
|
|
border-color: @primary-color;
|
|
}
|
|
}
|
|
}
|
|
|
|
// https://github.com/ant-design/ant-design/issues/4669
|
|
&-vertical&-card > .@{tab-prefix-cls}-bar {
|
|
.@{tab-prefix-cls}-nav-container {
|
|
height: auto;
|
|
}
|
|
.@{tab-prefix-cls}-tab {
|
|
border-bottom: @border-width-base @border-style-base @border-color-base;
|
|
margin-bottom: 8px;
|
|
&-active {
|
|
padding-bottom: 4px;
|
|
}
|
|
&:last-child {
|
|
margin-bottom: 8px;
|
|
}
|
|
}
|
|
.@{tab-prefix-cls}-new-tab {
|
|
width: 90%;
|
|
}
|
|
}
|
|
|
|
&-vertical&-card&-left > .@{tab-prefix-cls}-bar {
|
|
.@{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;
|
|
}
|
|
}
|
|
}
|
|
|
|
&-vertical&-card&-right > .@{tab-prefix-cls}-bar {
|
|
.@{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;
|
|
}
|
|
}
|
|
}
|
|
}
|