- Sorting of select for language of publication fixed

- Adjustment for line-height of links in bebop tree


git-svn-id: https://svn.libreccm.org/ccm/trunk@2756 8810af33-2d31-482b-a856-94f89814c4df
master
jensp 2014-07-14 08:19:45 +00:00
parent c510e1566a
commit f9255848d2
2 changed files with 18 additions and 16 deletions

View File

@ -1597,6 +1597,7 @@ div.bebopGridPanel{
ul.bebopTree li a[type="control"] { ul.bebopTree li a[type="control"] {
padding: 5px; padding: 5px;
line-height: 2em;
} }
#cmsHeader, #cmsFooter { #cmsHeader, #cmsFooter {

View File

@ -105,7 +105,8 @@ public class PublicationPropertyForm
@Override @Override
public int compare(final Locale locale1, final Locale locale2) { public int compare(final Locale locale1, final Locale locale2) {
return locale1.getDisplayName().compareTo(locale2.getDisplayName()); return locale1.getDisplayName(GlobalizationHelper.getNegotiatedLocale()).compareTo(
locale2.getDisplayName(GlobalizationHelper.getNegotiatedLocale()));
} }
}); });