mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 05:29:37 +08:00
b445baa001
* chore(deps-dev): bump stylelint-config-prettier from 8.0.2 to 9.0.2 Bumps [stylelint-config-prettier](https://github.com/prettier/stylelint-config-prettier) from 8.0.2 to 9.0.2. - [Release notes](https://github.com/prettier/stylelint-config-prettier/releases) - [Commits](https://github.com/prettier/stylelint-config-prettier/compare/v8.0.2...v9.0.2) --- updated-dependencies: - dependency-name: stylelint-config-prettier dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * chore: autofix stylelint errors * chore: autofix stylelint errors Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: afc163 <afc163@gmail.com>
72 lines
1.2 KiB
Plaintext
72 lines
1.2 KiB
Plaintext
@import '../../style/themes/index';
|
|
@import '../../style/mixins/index';
|
|
@import '../../checkbox/style/mixin';
|
|
|
|
@transfer-prefix-cls: ~'@{ant-prefix}-transfer';
|
|
|
|
.@{transfer-prefix-cls} {
|
|
&-rtl {
|
|
direction: rtl;
|
|
}
|
|
|
|
&-list {
|
|
&-search {
|
|
.@{transfer-prefix-cls}-rtl & {
|
|
padding-right: @control-padding-horizontal-sm;
|
|
padding-left: 24px;
|
|
}
|
|
|
|
&-action {
|
|
.@{transfer-prefix-cls}-rtl & {
|
|
right: auto;
|
|
left: 12px;
|
|
}
|
|
}
|
|
}
|
|
|
|
&-header {
|
|
> *:not(:last-child) {
|
|
.@{transfer-prefix-cls}-rtl & {
|
|
margin-right: 0;
|
|
margin-left: 4px;
|
|
}
|
|
}
|
|
|
|
.@{transfer-prefix-cls}-rtl & {
|
|
right: 0;
|
|
left: auto;
|
|
}
|
|
|
|
&-title {
|
|
.@{transfer-prefix-cls}-rtl & {
|
|
text-align: left;
|
|
}
|
|
}
|
|
}
|
|
|
|
&-content {
|
|
&-item {
|
|
> *:not(:last-child) {
|
|
.@{transfer-prefix-cls}-rtl & {
|
|
margin-right: 0;
|
|
margin-left: 8px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&-pagination {
|
|
.@{transfer-prefix-cls}-rtl & {
|
|
text-align: left;
|
|
}
|
|
}
|
|
|
|
&-footer {
|
|
.@{transfer-prefix-cls}-rtl & {
|
|
right: 0;
|
|
left: auto;
|
|
}
|
|
}
|
|
}
|
|
}
|