From 8119fa376954e8fc7811c67cd68401b474f8d4f0 Mon Sep 17 00:00:00 2001 From: Rouslan Placella Date: Tue, 5 Apr 2011 23:16:47 +0100 Subject: [PATCH] Bug #3271928 - Fix alignment of form fields when creating a new table --- themes/original/css/theme_right.css.php | 9 +++++++++ themes/pmahomme/css/theme_right.css.php | 13 +++++++++++++ 2 files changed, 22 insertions(+) diff --git a/themes/original/css/theme_right.css.php b/themes/original/css/theme_right.css.php index 1c9d5f5da7..5eb1a357c4 100644 --- a/themes/original/css/theme_right.css.php +++ b/themes/original/css/theme_right.css.php @@ -1808,3 +1808,12 @@ fieldset .disabled-field td { #prefs_autoload { margin-bottom: 0.5em; } + +#table_columns input, select { + width: 14em; + box-sizing: border-box; + -ms-box-sizing: border-box; + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; +} + diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php index 652b441b00..3b57fea99a 100644 --- a/themes/pmahomme/css/theme_right.css.php +++ b/themes/pmahomme/css/theme_right.css.php @@ -2110,3 +2110,16 @@ fieldset .disabled-field td { #prefs_autoload { margin-bottom: 0.5em; } + +#table_columns input, select { + width: 14em; + box-sizing: border-box; + -ms-box-sizing: border-box; + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; +} + +#table_columns select { + margin: 0 6px; +} + -- 2.11.4.GIT