[PATCH] Fix text alignment on storage pool type combo box

The storage pool type list does not have a left padding like the other combo boxes in Kimchi, bringing the text very close to the UI component's border. Apply a common CSS class to the combo box so it looks like the other objects in the application. Signed-off-by: Crístian Viana <vianac@linux.vnet.ibm.com> --- ui/pages/storagepool-add.html.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/pages/storagepool-add.html.tmpl b/ui/pages/storagepool-add.html.tmpl index 977db66..6700b56 100644 --- a/ui/pages/storagepool-add.html.tmpl +++ b/ui/pages/storagepool-add.html.tmpl @@ -44,7 +44,7 @@ <div class="storage-type-wrapper-controls"> <div id="poolTypeId"> <input id="poolTypeInputId" name="type" type="hidden" value="dir"/> - <span id="pool-type-label"></span><span class="arrow"></span> + <span id="pool-type-label" class="text"></span><span class="arrow"></span> <div> <ul id="storagePool-list"> </ul> -- 1.9.0

Ignore this patch. I forgot to fix another combo box on the same dialog, I didn't test all components. Patch v2 is coming soon with additional code (only one more line). On 13-05-2014 17:35, Crístian Viana wrote:
The storage pool type list does not have a left padding like the other combo boxes in Kimchi, bringing the text very close to the UI component's border.
Apply a common CSS class to the combo box so it looks like the other objects in the application.
Signed-off-by: Crístian Viana <vianac@linux.vnet.ibm.com>
participants (1)
-
Crístian Viana