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
This commit is contained in:
Petr Vobornik
2011-10-25 15:53:06 +02:00
committed by Endi S. Dewata
parent 09f3e9869a
commit 4833b208b2
2 changed files with 12 additions and 1 deletions

View File

@@ -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;
}

View File

@@ -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);
};