Add RTL support for Bootstrap CSS

LEARNER-1705
This commit is contained in:
Andy Armstrong
2017-10-10 20:17:40 -04:00
parent c5e0ce503e
commit fc3af68e3b
8 changed files with 163 additions and 52 deletions

View File

@@ -0,0 +1,19 @@
// ------------------------------------
// Studio support for legacy Sass partials
//
// The intention is that this makes it
// easier to reuse existing partials
// that were not built with Bootstrap
// in mind.
// ------------------------------------
@import 'vendor/bi-app/bi-app-ltr'; // set the layout for left to right languages
@mixin font-size($sizeValue: 16) {
font-size: ($sizeValue/10) + rem;
}
// Support .sr as a synonym for .sr-only
.sr {
@extend .sr-only;
}

View File

@@ -6,6 +6,9 @@
@import 'cms/bootstrap/theme';
@import 'bootstrap/scss/bootstrap';
// Legacy support
@import 'legacy';
// Variables
@import 'mixins';
@import 'variables';