ant-design-blazor/components/divider/style/index.less

109 lines
2.1 KiB
Plaintext
Raw Normal View History

@import '../../style/themes/index';
@import '../../style/mixins/index';
@divider-prefix-cls: ~'@{ant-prefix}-divider';
.@{divider-prefix-cls} {
2021-01-09 09:07:02 +08:00
.reset-component();
2020-10-25 23:07:27 +08:00
border-top: @border-width-base solid @divider-color;
&-vertical {
position: relative;
top: -0.06em;
display: inline-block;
height: 0.9em;
margin: 0 8px;
vertical-align: middle;
2020-05-11 21:47:35 +08:00
border-top: 0;
2020-10-25 23:07:27 +08:00
border-left: @border-width-base solid @divider-color;
}
&-horizontal {
2020-05-11 21:47:35 +08:00
display: flex;
clear: both;
width: 100%;
min-width: 100%; // Fix https://github.com/ant-design/ant-design/issues/10914
margin: 24px 0;
}
2020-04-30 10:55:54 +08:00
&-horizontal&-with-text {
2020-05-11 21:47:35 +08:00
display: flex;
margin: 16px 0;
color: @heading-color;
font-weight: 500;
font-size: @font-size-lg;
white-space: nowrap;
text-align: center;
2020-05-11 21:47:35 +08:00
border-top: 0;
2020-10-25 23:07:27 +08:00
border-top-color: @divider-color;
2020-09-28 16:07:59 +08:00
&::before,
&::after {
position: relative;
top: 50%;
width: 50%;
2020-10-25 23:07:27 +08:00
border-top: @border-width-base solid transparent;
2020-09-28 16:07:59 +08:00
// Chrome not accept `inherit` in `border-top`
border-top-color: inherit;
border-bottom: 0;
transform: translateY(50%);
content: '';
}
}
&-horizontal&-with-text-left {
&::before {
top: 50%;
2020-06-15 00:29:33 +08:00
width: @divider-orientation-margin;
}
&::after {
top: 50%;
2020-06-15 00:29:33 +08:00
width: 100% - @divider-orientation-margin;
}
}
&-horizontal&-with-text-right {
&::before {
top: 50%;
2020-06-15 00:29:33 +08:00
width: 100% - @divider-orientation-margin;
}
&::after {
top: 50%;
2020-06-15 00:29:33 +08:00
width: @divider-orientation-margin;
}
}
&-inner-text {
display: inline-block;
padding: 0 @divider-text-padding;
}
&-dashed {
background: none;
2020-08-02 15:13:53 +08:00
border-color: @divider-color;
border-style: dashed;
2020-10-25 23:07:27 +08:00
border-width: @border-width-base 0 0;
}
2020-04-30 10:55:54 +08:00
&-horizontal&-with-text&-dashed {
border-top: 0;
&::before,
&::after {
border-style: dashed none none;
}
}
&-vertical&-dashed {
2020-10-25 23:07:27 +08:00
border-width: 0 0 0 @border-width-base;
}
2020-04-30 10:55:54 +08:00
&-plain&-with-text {
color: @text-color;
font-weight: normal;
font-size: @font-size-base;
}
}
2020-04-30 10:55:54 +08:00
@import './rtl';