mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
Fix rtl docs: aside and bottom nav (#20652)
* docs: fix bottom navigation in rtl * docs: fix aside item-group-title * docs: bottom nav in rtl and dark mode
This commit is contained in:
parent
00b2d74ea1
commit
17f89484e0
@ -83,16 +83,31 @@ a {
|
||||
> .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item,
|
||||
&.ant-menu-inline > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item {
|
||||
padding-left: 40px !important;
|
||||
|
||||
.ant-row-rtl & {
|
||||
padding-right: 40px !important;
|
||||
padding-left: 16px !important;
|
||||
}
|
||||
}
|
||||
|
||||
// Nest Category > Type > Article
|
||||
&.ant-menu-inline {
|
||||
.ant-menu-item-group-title {
|
||||
padding-left: 56px;
|
||||
|
||||
.ant-row-rtl & {
|
||||
padding-right: 56px;
|
||||
padding-left: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
.ant-menu-item-group-list > .ant-menu-item {
|
||||
padding-left: 80px !important;
|
||||
|
||||
.ant-row-rtl & {
|
||||
padding-right: 80px !important;
|
||||
padding-left: 16px !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -132,7 +132,6 @@
|
||||
}
|
||||
|
||||
&:hover .footer-nav-icon-before {
|
||||
left: -3px;
|
||||
color: @primary-color;
|
||||
}
|
||||
}
|
||||
@ -143,7 +142,6 @@
|
||||
}
|
||||
|
||||
&:hover .footer-nav-icon-after {
|
||||
right: -3px;
|
||||
color: @primary-color;
|
||||
}
|
||||
}
|
||||
|
@ -12,6 +12,15 @@
|
||||
height: 72px;
|
||||
line-height: 72px;
|
||||
text-decoration: none;
|
||||
|
||||
.ant-row-rtl & {
|
||||
float: right;
|
||||
|
||||
.footer-nav-icon-before,
|
||||
.footer-nav-icon-after {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
> a.prev-page {
|
||||
@ -22,6 +31,13 @@
|
||||
color: @site-text-color-secondary;
|
||||
font-size: 12px;
|
||||
transition: all 0.3s;
|
||||
|
||||
.ant-row-rtl & {
|
||||
right: 0;
|
||||
left: auto;
|
||||
margin-right: 0;
|
||||
margin-left: 1em;
|
||||
}
|
||||
}
|
||||
|
||||
.footer-nav-icon-after {
|
||||
@ -31,6 +47,11 @@
|
||||
&:hover .footer-nav-icon-before {
|
||||
left: -3px;
|
||||
color: @primary-color;
|
||||
|
||||
.ant-row-rtl & {
|
||||
right: -3px;
|
||||
left: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -38,6 +59,11 @@
|
||||
float: right;
|
||||
text-align: right;
|
||||
|
||||
.ant-row-rtl & {
|
||||
float: left;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.footer-nav-icon-after {
|
||||
position: relative;
|
||||
right: 0;
|
||||
@ -45,6 +71,13 @@
|
||||
color: @site-text-color-secondary;
|
||||
font-size: 12px;
|
||||
transition: all 0.3s;
|
||||
|
||||
.ant-row-rtl & {
|
||||
right: auto;
|
||||
left: 0;
|
||||
margin-right: 1em;
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.footer-nav-icon-before {
|
||||
@ -54,6 +87,11 @@
|
||||
&:hover .footer-nav-icon-after {
|
||||
right: -3px;
|
||||
color: @primary-color;
|
||||
|
||||
.ant-row-rtl & {
|
||||
right: auto;
|
||||
left: -3px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -87,6 +87,11 @@
|
||||
.prev-next-nav {
|
||||
width: ~'calc(100% - 32px)';
|
||||
margin-left: 16px;
|
||||
|
||||
.ant-row-rtl & {
|
||||
margin-right: 16px;
|
||||
margin-left: 64px;
|
||||
}
|
||||
}
|
||||
|
||||
.drawer {
|
||||
|
Loading…
Reference in New Issue
Block a user