diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2011-10-25 15:53:06 +0200 |
---|---|---|
committer | Endi S. Dewata <edewata@redhat.com> | 2011-10-25 15:13:30 +0000 |
commit | 4833b208b2337678148acc945fbe9825beebf5e2 (patch) | |
tree | 8ae8fe3979e52935948141f9cc3f691d8ca56bdd | |
parent | 09f3e9869a27adc8c07c305a2aa5107690aa1d04 (diff) | |
download | freeipa-4833b208b2337678148acc945fbe9825beebf5e2.tar.gz freeipa-4833b208b2337678148acc945fbe9825beebf5e2.tar.xz freeipa-4833b208b2337678148acc945fbe9825beebf5e2.zip |
Minor visual enhancement of required indicator
https://fedorahosted.org/freeipa/ticket/1696
Changes:
* in details table facet '*' don't break colon alignment
* bolder, bigger (-> IMHO nicer) asteriks
* float (visual style) moved to css file
-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); }; |