MDL-62159 Theme boost: prevent rtl flipping dropdowns

This commit is contained in:
Bas Brands 2018-04-25 09:41:22 +02:00
parent 6fa694bef0
commit b6ebda707f
2 changed files with 9 additions and 13 deletions

View File

@ -12,3 +12,11 @@
content: "#{$breadcrumb-divider}"; /* stylelint-disable-line declaration-block-no-duplicate-properties */
}
}
/*rtl:raw:
.dropdown-menu {
right: auto;
left: 0;
text-align: right;
}
*/

View File

@ -216,16 +216,4 @@ $bs4aspacers: map-merge((
.col-xs-#{$i} {
@extend .col-#{$i};
}
}
// These have been removed in BS4 Stable. Adding in so RTL dropdowns will work.
/*rtl:raw:
.dropdown-menu-right {
right: 0;
left: auto;
}
.dropdown-menu-left {
right: auto;
left: 0;
}
*/
}