ant-design-blazor/components/tabs/style/rtl.less

62 lines
1.2 KiB
Plaintext
Raw Normal View History

2020-03-23 13:51:37 +08:00
@import '../../style/themes/index';
@import '../../style/mixins/index';
2020-05-31 16:00:40 +08:00
@import './index';
2020-03-23 13:51:37 +08:00
2020-05-31 16:00:40 +08:00
.@{tab-prefix-cls}-rtl {
direction: rtl;
2020-03-23 13:51:37 +08:00
2020-05-31 16:00:40 +08:00
> .@{tab-prefix-cls}-nav {
2020-03-23 13:51:37 +08:00
.@{tab-prefix-cls}-tab {
2020-05-31 16:00:40 +08:00
margin: @tabs-horizontal-margin-rtl;
&:last-of-type {
margin-left: 0;
2020-03-23 13:51:37 +08:00
}
.@{iconfont-css-prefix} {
2020-05-31 16:00:40 +08:00
margin-right: 0;
margin-left: @margin-sm;
2020-03-23 13:51:37 +08:00
}
2020-04-26 10:41:53 +08:00
2020-05-31 16:00:40 +08:00
.@{tab-prefix-cls}-tab-remove {
margin-right: @margin-xs;
margin-left: -@margin-xss;
2020-04-26 10:41:53 +08:00
2020-05-31 16:00:40 +08:00
.@{iconfont-css-prefix} {
margin: 0;
}
2020-04-26 10:41:53 +08:00
}
}
}
2020-05-31 16:00:40 +08:00
&.@{tab-prefix-cls}-left {
> .@{tab-prefix-cls}-nav {
order: 1;
}
> .@{tab-prefix-cls}-content-holder {
order: 0;
2020-04-26 10:41:53 +08:00
}
}
2020-05-31 16:00:40 +08:00
&.@{tab-prefix-cls}-right {
> .@{tab-prefix-cls}-nav {
order: 0;
}
> .@{tab-prefix-cls}-content-holder {
order: 1;
2020-04-26 10:41:53 +08:00
}
}
2020-05-31 16:00:40 +08:00
// ====================== Card ======================
&.@{tab-prefix-cls}-card {
&.@{tab-prefix-cls}-top,
&.@{tab-prefix-cls}-bottom {
> .@{tab-prefix-cls}-nav {
button.@{tab-prefix-cls}-tab:not(:last-of-type) {
margin: 0 0 0 @tabs-card-gutter;
}
}
2020-04-26 10:41:53 +08:00
}
}
2020-03-23 13:51:37 +08:00
}