Retrofit from trunk

N°1209 - Fix Organization selector width (padding added) [from revision 5154-5155]

SVN:2.4[5156]
This commit is contained in:
Eric Espié
2017-12-15 13:06:50 +00:00
parent 55b34b5d11
commit 005b0eab1d
2 changed files with 27 additions and 20 deletions

View File

@@ -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; }

View File

@@ -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;
}
}
}