ui: don't uppercase acl id

This commit is contained in:
Jack Pearkes 2014-08-25 11:27:46 -07:00
parent 50f6fecad1
commit a6f76a15b3
2 changed files with 6 additions and 1 deletions

View File

@ -32,7 +32,7 @@ Ember.Handlebars.helper('aclName', function(name, id) {
if (name === "") {
return id;
} else {
return new Handlebars.SafeString(name + ' <small class="pull-right">' + id + '</small>');
return new Handlebars.SafeString(name + ' <small class="pull-right no-case">' + id + '</small>');
}
});

View File

@ -26,6 +26,11 @@
padding-top: 2px;
}
.no-case {
text-transform: none;
}
.panel-note {
margin-top: 5px;
float: right;