summaryrefslogtreecommitdiffstats
path: root/install/ui/src
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2013-11-06 16:58:12 +0100
committerMartin Kosek <mkosek@redhat.com>2014-01-21 12:04:04 +0100
commit2bfe2b8c51d4e6de68b9b4f9e679d2918bcd41eb (patch)
treed31adf8613dea9ff4e5eaf612212ef2484c65d85 /install/ui/src
parent0f1a756eae0d59b6b3db36cbea36602d8ec385b9 (diff)
downloadfreeipa-2bfe2b8c51d4e6de68b9b4f9e679d2918bcd41eb.tar.gz
freeipa-2bfe2b8c51d4e6de68b9b4f9e679d2918bcd41eb.tar.xz
freeipa-2bfe2b8c51d4e6de68b9b4f9e679d2918bcd41eb.zip
Font awesome glyphs as checkboxes and radios
https://fedorahosted.org/freeipa/ticket/3904
Diffstat (limited to 'install/ui/src')
-rw-r--r--install/ui/src/freeipa/widget.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/install/ui/src/freeipa/widget.js b/install/ui/src/freeipa/widget.js
index c39f3326c..28a068bfb 100644
--- a/install/ui/src/freeipa/widget.js
+++ b/install/ui/src/freeipa/widget.js
@@ -54,7 +54,7 @@ var exp = {};
* @member IPA
* @property {number}
*/
-IPA.checkbox_column_width = 22;
+IPA.checkbox_column_width = 13;
/**
* String to show next to required fields to indicate that the field is required.
@@ -1169,7 +1169,7 @@ IPA.option_widget_base = function(spec, that) {
}).appendTo(container);
option.label_node = $('<label/>', {
- html: option.label || '&nbsp;',
+ html: option.label || '',
title: option.tooltip || that.tooltip,
'for': id
}).appendTo(container);
@@ -1556,7 +1556,7 @@ IPA.standalone_option = function(spec, container, label) {
if (!label) {
input.addClass('standalone');
- label = '&nbsp;';
+ label = '';
}
var label_el = $('<label/>', {