From a13a0db7b4379f0cacbb3cf30f63fc1ee20d03e5 Mon Sep 17 00:00:00 2001 From: Istrasoft Date: Tue, 31 Dec 2013 06:13:17 +0100 Subject: [PATCH] Add bidi counterparts for float and text alignment --- scss/foundation/components/_global.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scss/foundation/components/_global.scss b/scss/foundation/components/_global.scss index da184b6a4..0e625482c 100644 --- a/scss/foundation/components/_global.scss +++ b/scss/foundation/components/_global.scss @@ -369,6 +369,11 @@ $cursor-text-value: text !default; .text-center { text-align: center !important; } .text-justify { text-align: justify !important; } .hide { display: none; } + // Bidi counterparts to .left, .right, .text-left, .text-right + .start { float: $default-float !important; } + .end { float: $opposite-direction !important; } + .text-start { text-align: $default-float !important; } + .text-end { text-align: $opposite-direction !important; } // Font smoothing // Antialiased font smoothing works best for light text on a dark background. -- 2.47.2