summaryrefslogtreecommitdiffstats
path: root/install/ui
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2011-10-25 15:53:06 +0200
committerEndi S. Dewata <edewata@redhat.com>2011-10-25 15:13:30 +0000
commit4833b208b2337678148acc945fbe9825beebf5e2 (patch)
tree8ae8fe3979e52935948141f9cc3f691d8ca56bdd /install/ui
parent09f3e9869a27adc8c07c305a2aa5107690aa1d04 (diff)
downloadfreeipa-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
Diffstat (limited to 'install/ui')
-rw-r--r--install/ui/ipa.css11
-rw-r--r--install/ui/widget.js2
2 files changed, 12 insertions, 1 deletions
diff --git a/install/ui/ipa.css b/install/ui/ipa.css
index be4ad361e..0652b375a 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 1d3d31b38..feaf7b209 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);
};