ant-design/style/components/tabs.less

368 lines
7.1 KiB
Plaintext
Raw Normal View History

2015-08-20 16:55:42 +08:00
@tab-prefix-cls: ant-tabs;
2015-06-10 19:50:02 +08:00
@effect-duration: .3s;
2015-06-09 15:34:46 +08:00
2015-08-20 16:55:42 +08:00
.@{tab-prefix-cls} {
2015-06-09 15:34:46 +08:00
outline: none;
box-sizing: border-box;
position: relative;
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;
2015-07-08 15:18:28 +08:00
background-color: @primary-color;
2015-06-09 15:34:46 +08:00
transform: scaleX(1);
transform-origin: 0 0;
2015-06-10 19:50:02 +08:00
&-transition-forward {
2015-07-23 15:04:12 +08:00
transition: right 0.3s @ease-in-out,
left 0.3s @ease-in-out 0.3s * 0.3;
2015-06-09 15:34:46 +08:00
}
2015-06-10 19:50:02 +08:00
&-transition-backward {
2015-07-23 15:04:12 +08:00
transition: right 0.3s @ease-in-out 0.3s * 0.3,
left 0.3s @ease-in-out;
2015-06-09 15:34:46 +08:00
}
}
2015-10-22 11:36:41 +08:00
&-tabs-bar {
border-bottom: 1px solid #e9e9e9;
margin-bottom: 16px;
}
2015-06-09 15:34:46 +08:00
&-nav-container {
2015-10-21 14:53:48 +08:00
overflow: hidden;
2015-06-09 15:34:46 +08:00
font-size: 14px;
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
}
2015-08-06 16:47:01 +08:00
&-nav-container-scrolling {
padding-left: 32px;
padding-right: 32px;
}
2015-06-09 15:34:46 +08:00
&-tab-prev, &-tab-next {
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;
border: none;
background-color: transparent;
position: absolute;
2015-06-14 14:17:10 +08:00
text-align: center;
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-07-09 18:17:15 +08:00
font-size: 12px;
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-06-19 16:21:59 +08:00
&:hover {
2015-07-06 16:21:27 +08:00
color: tint(@primary-color, 20%);
2015-06-19 16:21:59 +08:00
}
2015-06-09 15:34:46 +08:00
}
2015-08-06 16:47:01 +08:00
&-tab-btn-disabled {
cursor: default;
color: #ccc;
pointer-events: none;
}
2015-06-09 15:34:46 +08:00
&-tab-next {
right: 2px;
&-icon:before {
2015-11-12 22:59:25 +08:00
content: "\e600";
2015-06-09 15:34:46 +08:00
}
}
&-tab-prev {
left: 0;
2015-08-20 16:47:41 +08:00
&-icon {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}
2015-06-09 15:34:46 +08:00
&-icon:before {
2015-11-13 14:58:49 +08:00
content: "\e601";
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
width: 99999px;
overflow: hidden;
2015-06-09 15:34:46 +08:00
}
&-nav {
box-sizing: border-box;
padding-left: 0;
2015-07-23 15:04:12 +08:00
transition: left 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
&:before, &:after {
display: table;
content: " ";
}
&:after {
clear: both;
}
2015-08-20 16:55:42 +08:00
div.@{tab-prefix-cls}-tab-active {
2015-10-21 14:53:48 +08:00
> .@{tab-prefix-cls}-tab-inner, > .@{tab-prefix-cls}-tab-inner:hover {
2015-07-06 16:21:27 +08:00
color: tint(@primary-color, 20%);
2015-06-14 17:37:17 +08:00
cursor: pointer;
2015-06-09 15:34:46 +08:00
text-decoration: none;
}
}
2015-08-20 16:55:42 +08:00
div.@{tab-prefix-cls}-tab-disabled {
2015-06-09 15:34:46 +08:00
pointer-events: none;
cursor: default;
2015-06-12 20:21:13 +08:00
2015-10-21 14:53:48 +08:00
.@{tab-prefix-cls}-tab-inner {
2015-06-12 20:21:13 +08:00
color: #ccc;
}
2015-06-09 15:34:46 +08:00
}
2015-08-20 16:55:42 +08:00
.@{tab-prefix-cls}-tab {
2015-06-09 15:34:46 +08:00
float: left;
height: 100%;
2015-06-19 15:45:40 +08:00
margin-right: 28px;
2015-06-09 15:34:46 +08:00
box-sizing: border-box;
position: relative;
2015-10-21 14:53:48 +08:00
> .@{tab-prefix-cls}-tab-inner {
2015-06-19 15:45:40 +08:00
padding: 8px 20px;
2015-07-23 15:04:12 +08:00
transition: color 0.3s @ease-in-out;
2015-06-14 14:17:10 +08:00
display: block;
2015-06-12 20:21:13 +08:00
color: #666;
2015-06-15 16:11:28 +08:00
.anticon {
width: 14px;
height: 14px;
2015-06-19 15:45:40 +08:00
margin-right: 8px;
line-height: 1.5;
2015-06-15 16:11:28 +08:00
}
2015-06-09 15:34:46 +08:00
}
2015-10-21 14:53:48 +08:00
> .@{tab-prefix-cls}-tab-inner:hover {
2015-07-06 16:21:27 +08:00
color: tint(@primary-color, 30%);
2015-06-09 15:34:46 +08:00
cursor: pointer;
}
2015-10-21 14:53:48 +08:00
> .@{tab-prefix-cls}-tab-inner:hover {
2015-06-09 15:34:46 +08:00
text-decoration: none;
}
}
}
2015-06-19 17:26:24 +08:00
&-mini &-nav-container {
font-size: 12px;
}
&-mini &-tab {
2015-06-19 17:31:37 +08:00
margin-right: 24px;
2015-10-21 14:53:48 +08:00
> .@{tab-prefix-cls}-tab-inner {
2015-06-19 17:31:37 +08:00
padding: 8px 16px;
}
2015-06-19 17:26:24 +08:00
}
2015-06-09 15:34:46 +08:00
&-tabpane-hidden {
display: none;
}
&-content {
position: relative;
width: 100%;
}
2015-06-10 19:50:02 +08:00
&-slide-horizontal-backward-enter {
2015-07-29 16:49:05 +08:00
display: block !important;
2015-06-09 15:34:46 +08:00
transform: translateX(-100%);
}
2015-06-10 19:50:02 +08:00
&-slide-horizontal-backward-enter&-slide-horizontal-backward-enter-active {
2015-06-09 15:34:46 +08:00
transform: translateX(0);
2015-07-23 15:04:12 +08:00
transition: transform @effect-duration @ease-in-out;
2015-06-09 15:34:46 +08:00
}
2015-06-10 19:50:02 +08:00
&-slide-horizontal-backward-leave {
2015-07-29 16:49:05 +08:00
display: block !important;
2015-06-09 15:34:46 +08:00
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
transform: translateX(0);
}
2015-06-10 19:50:02 +08:00
&-slide-horizontal-backward-leave&-slide-horizontal-backward-leave-active {
2015-06-09 15:34:46 +08:00
transform: translateX(100%);
2015-07-23 15:04:12 +08:00
transition: transform @effect-duration @ease-in-out;
2015-06-09 15:34:46 +08:00
}
2015-06-10 19:50:02 +08:00
&-slide-horizontal-forward-enter {
2015-07-29 16:49:05 +08:00
display: block !important;
2015-06-09 15:34:46 +08:00
transform: translateX(100%);
}
2015-06-10 19:50:02 +08:00
&-slide-horizontal-forward-enter&-slide-horizontal-forward-enter-active {
2015-06-09 15:34:46 +08:00
transform: translateX(0);
2015-07-23 15:04:12 +08:00
transition: transform @effect-duration @ease-in-out;
2015-06-09 15:34:46 +08:00
}
2015-06-10 19:50:02 +08:00
&-slide-horizontal-forward-leave {
2015-07-29 16:49:05 +08:00
display: block !important;
2015-06-09 15:34:46 +08:00
position: absolute;
transform: translateX(0);
top: 0;
right: 0;
left: 0;
bottom: 0;
}
2015-06-10 19:50:02 +08:00
&-slide-horizontal-forward-leave&-slide-horizontal-forward-leave-active {
2015-06-09 15:34:46 +08:00
transform: translateX(-100%);
2015-07-23 15:04:12 +08:00
transition: transform @effect-duration @ease-in-out;
2015-06-09 15:34:46 +08:00
}
2015-10-21 19:58:54 +08:00
&-vertical {
.@{tab-prefix-cls}-tab {
float: none;
margin-right: 0;
margin-bottom: 16px;
&:last-child {
margin-bottom: 0;
}
> .@{tab-prefix-cls}-tab-inner {
padding: 8px 24px;
}
}
.@{tab-prefix-cls}-nav-scroll {
width: auto;
}
2015-10-22 11:36:41 +08:00
.@{tab-prefix-cls}-tabs-bar {
2015-10-21 19:58:54 +08:00
border-bottom: 0;
}
2015-10-22 11:36:41 +08:00
.@{tab-prefix-cls}-nav-container {
margin-bottom: 0;
}
2015-10-21 19:58:54 +08:00
.@{tab-prefix-cls}-nav-wrap {
margin-bottom: 0;
}
.@{tab-prefix-cls}-ink-bar {
width: 2px;
left: auto;
height: auto;
&-transition-forward {
transition: bottom 0.3s @ease-in-out,
top 0.3s @ease-in-out 0.3s * 0.3;
}
&-transition-backward {
transition: bottom 0.3s @ease-in-out 0.3s * 0.3,
top 0.3s @ease-in-out;
}
}
.@{tab-prefix-cls}-container {
margin-bottom: 0;
}
.@{tab-prefix-cls}-content {
overflow: hidden;
width: auto;
}
}
&-vertical&-left {
.@{tab-prefix-cls}-tabs-bar {
float: left;
}
.@{tab-prefix-cls}-tab {
> .@{tab-prefix-cls}-tab-inner {
text-align: right;
}
}
2015-10-22 11:36:41 +08:00
.@{tab-prefix-cls}-tabs-bar {
2015-10-21 19:58:54 +08:00
border-right: 1px solid #e9e9e9;
margin-right: -1px;
}
2015-10-22 11:36:41 +08:00
.@{tab-prefix-cls}-nav-container {
margin-right: -1px;
}
2015-10-21 19:58:54 +08:00
.@{tab-prefix-cls}-nav-wrap {
margin-right: -1px;
}
.@{tab-prefix-cls}-ink-bar {
2015-10-22 11:36:41 +08:00
right: 1px;
2015-10-21 19:58:54 +08:00
}
.@{tab-prefix-cls}-content {
padding-left: 24px;
border-left: 1px solid #e9e9e9;
}
}
&-vertical&-right {
.@{tab-prefix-cls}-tabs-bar {
float: right;
2015-10-22 11:36:41 +08:00
border-left: 1px solid #e9e9e9;
margin-left: -1px;
2015-10-21 19:58:54 +08:00
}
.@{tab-prefix-cls}-nav-container {
margin-left: -1px;
}
.@{tab-prefix-cls}-nav-wrap {
margin-left: -1px;
}
.@{tab-prefix-cls}-ink-bar {
2015-10-22 11:36:41 +08:00
left: 1px;
2015-10-21 19:58:54 +08:00
}
.@{tab-prefix-cls}-content {
padding-right: 24px;
border-right: 1px solid #e9e9e9;
}
}
2015-06-12 15:39:01 +08:00
}