From 882c6f0f20376733e76cdef207f62fe4240c32c5 Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Tue, 10 Sep 2013 12:34:35 +0200 Subject: [PATCH] Issue #2003570 by aparnakondala123, vineet.osscube, tstoeckler: Fixed Enabling RTL and then changing theme colors moves the hexadecimal # to the right. --- core/modules/color/color.module | 1 + 1 file changed, 1 insertion(+) diff --git a/core/modules/color/color.module b/core/modules/color/color.module index 17adfb7afc3..171f0cf34be 100644 --- a/core/modules/color/color.module +++ b/core/modules/color/color.module @@ -217,6 +217,7 @@ function color_scheme_form($complete_form, &$form_state, $theme) { '#title' => check_plain($names[$name]), '#default_value' => $value, '#size' => 8, + '#attributes' => array('dir' => 'ltr'), ); } }