From 005b0eab1d772a118d7d227e4008a028384c81bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eric=20Espi=C3=A9?= Date: Fri, 15 Dec 2017 13:06:50 +0000 Subject: [PATCH] =?UTF-8?q?Retrofit=20from=20trunk=20N=C2=B01209=20-=20Fix?= =?UTF-8?q?=20Organization=20selector=20width=20(padding=20added)=20[from?= =?UTF-8?q?=20revision=205154-5155]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit SVN:2.4[5156] --- css/light-grey.css | 42 ++++++++++++++++++++++++------------------ css/light-grey.scss | 5 +++-- 2 files changed, 27 insertions(+), 20 deletions(-) diff --git a/css/light-grey.css b/css/light-grey.css index 3e227a8431..4e02c85084 100644 --- a/css/light-grey.css +++ b/css/light-grey.css @@ -1352,24 +1352,30 @@ fieldset .details > .field_container { #SiloSelection { padding-top: 3px; padding-right: 30px; - text-align: left; } - #SiloSelection * { - box-sizing: border-box; - vertical-align: middle; } - #SiloSelection .field_input_extkey { - display: table; - width: 100%; } - #SiloSelection .field_input_extkey .field_select_wrapper { - display: table-cell; - width: 100%; } - #SiloSelection .field_input_extkey .field_select_wrapper > select { - width: 100%; - max-width: initial; } - #SiloSelection .field_input_extkey .field_input_btn { - display: table-cell; - width: 20px; - margin-left: 0.4em; } - + text-align: left; +} +#SiloSelection * { + box-sizing: border-box; + vertical-align: middle; + width: 100%; +} +#SiloSelection .field_input_extkey { + display: table; + width: 100%; +} +#SiloSelection .field_input_extkey .field_select_wrapper { + display: table-cell; + width: 100%; +} +#SiloSelection .field_input_extkey .field_select_wrapper > select { + width: 100%; + max-width: initial; +} +#SiloSelection .field_input_extkey .field_input_btn { + display: table-cell; + width: 25px; + padding-left: 0.4em; +} .ac_dlg_loading { background: white url("../images/indicator.gif") right center no-repeat; } diff --git a/css/light-grey.scss b/css/light-grey.scss index ecc38aaeda..4006bd4e0e 100644 --- a/css/light-grey.scss +++ b/css/light-grey.scss @@ -1599,6 +1599,7 @@ fieldset .details>.field_container { *{ box-sizing: border-box; vertical-align: middle; + width: 100%; } .field_input_extkey{ @@ -1617,8 +1618,8 @@ fieldset .details>.field_container { .field_input_btn{ display: table-cell; - width: 20px; - margin-left: 0.4em; + width: 25px; + padding-left: 0.4em; } } }