diff options
-rw-r--r-- | install/ui/ipa.css | 11 | ||||
-rw-r--r-- | install/ui/widget.js | 2 |
2 files changed, 12 insertions, 1 deletions
diff --git a/install/ui/ipa.css b/install/ui/ipa.css index be4ad361..0652b375 100644 --- a/install/ui/ipa.css +++ b/install/ui/ipa.css @@ -1300,4 +1300,15 @@ body.info-page { .required-indicator { color: red; + font-weight: bold; + font-size: 120%; +} + +.section-cell-label .required-indicator { + float: right; + margin-right: -10px; +} + +.dialog-section .section-cell-label .required-indicator { + margin-right: 0px; }
\ No newline at end of file diff --git a/install/ui/widget.js b/install/ui/widget.js index 1d3d31b3..feaf7b20 100644 --- a/install/ui/widget.js +++ b/install/ui/widget.js @@ -136,7 +136,7 @@ IPA.widget = function(spec) { that.required_indicator = $('<span/>', { 'class': 'required-indicator', text: IPA.required_indicator, - style: 'display: none; float: right;' + style: 'display: none;' }).appendTo(container); }; |