Merge "i18n: Use correct direction for collapse Table of Contents"

This commit is contained in:
jenkins-bot 2022-06-01 08:17:54 +00:00 committed by Gerrit Code Review
commit 1f8a3c5318
1 changed files with 8 additions and 1 deletions

View File

@ -117,7 +117,6 @@
width: @toggle-icon-size; // ~22px @ 12
height: @toggle-icon-size;
font-size: 0.75em; // reduces size of toggle icon to 12px @ 16
transform: rotate( -90deg );
transition: @transition-duration-base;
}
@ -126,6 +125,14 @@
}
}
.client-js body.ltr .sidebar-toc .sidebar-toc-toggle {
transform: rotate( -90deg );
}
.client-js body.rtl .sidebar-toc .sidebar-toc-toggle {
transform: rotate( 90deg );
}
@media ( min-width: @width-breakpoint-desktop ) {
.sidebar-toc {
display: block;