webui: use dark color for facet titles without pkey

Reviewed-By: Endi Sukma Dewata <edewata@redhat.com>
This commit is contained in:
Petr Vobornik 2014-05-13 15:42:50 +02:00
parent 29f60931e2
commit 2df5e0b132
2 changed files with 6 additions and 1 deletions

View File

@ -74,6 +74,10 @@ textarea[readonly] {
color: gray;
}
.facet-title.no-pkey {
color: inherit;
}
.facet-pkey {
color:black;
text-transform: none;

View File

@ -1402,7 +1402,8 @@ exp.facet_title = IPA.facet_title = function(spec) {
var icon_tooltip = data.icon_tooltip || '';
that.title.text(data.title);
that.title.attr('title', tooltip);
that.title.prop('title', tooltip);
that.title_container.toggleClass('no-pkey', !data.pkey);
if (data.pkey) {
that.title.text(data.title + ': ');