diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2018-05-29 12:35:42 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2018-05-29 13:06:30 +0100 |
commit | 033c9cb3abf5e2ed97c0360d26764038e878d67a (patch) | |
tree | f8893028f95ab6a27d900f627f88b4c9975811aa /web/cobrands/sass/_admin.scss | |
parent | 0c2774150491a01f75f54caaaffe4126d46cb86c (diff) |
Fix issues with RTL display/hardcoded directions.
Diffstat (limited to 'web/cobrands/sass/_admin.scss')
-rw-r--r-- | web/cobrands/sass/_admin.scss | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/web/cobrands/sass/_admin.scss b/web/cobrands/sass/_admin.scss index 58d2ded5f..0a9789161 100644 --- a/web/cobrands/sass/_admin.scss +++ b/web/cobrands/sass/_admin.scss @@ -116,8 +116,8 @@ $button_bg_col: #a1a1a1; // also search bar (tables) } .admin-open311-section { - padding-left: 1em; - border-left: 1px solid #ccc; + padding-#{$left}: 1em; + border-#{$left}: 1px solid #ccc; } .admin-hint { @@ -165,11 +165,11 @@ $button_bg_col: #a1a1a1; // also search bar (tables) .admin-index-search { width: 27em; form { - clear: left; + clear: #{$left}; } select { max-width: 65%; - float: left; + float: #{$left}; } } @@ -207,10 +207,10 @@ $button_bg_col: #a1a1a1; // also search bar (tables) .js-metadata-item-remove { position: absolute; top: 0.25em; - right: 0.25em; + #{$right}: 0.25em; } } .danger-zone { - text-align: right; + text-align: #{$right}; } |