1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-22 18:50:08 +03:00

Bug #4629: Fix MB/GB text overlapping dropdown arrow

(cherry picked from commit 7131afb39928989305bea8dc1bee3f4466da5ea2)
This commit is contained in:
Carlos Martín 2016-07-11 11:02:01 +02:00
parent 8529d13061
commit cbbfee3b65
2 changed files with 5 additions and 1 deletions

View File

@ -506,7 +506,7 @@ define(function(require) {
_attributeInput(attr_gb) +
'</div>' +
'<div class="input-group-button">'+
'<select id="mb_input_unit" style="width: auto;">' +
'<select id="mb_input_unit">' +
'<option value="MB">'+Locale.tr("MB")+'</option>' +
'<option value="GB" selected>'+Locale.tr("GB")+'</option>' +
'</select>' +

View File

@ -223,4 +223,8 @@ meter {
}
.alert-color {
color: $alert-color;
}
#mb_input_unit {
width: 4em;
}