Fixed application version display on /gamma

This commit is contained in:
Clipperz 2013-01-09 11:56:27 +01:00
parent 5996ee475c
commit 34726bbee8
2 changed files with 5 additions and 2 deletions

View File

@ -533,7 +533,7 @@ div.pageFooter div.footerWrapper div.footerContent a {
font-weight: bold;
text-decoration: none;
}
div.pageFooter div.footerWrapper div.footerContent span.applicationVersion {
div.pageFooter div.footerWrapper div.footerContent div.applicationVersion {
padding: 8px;
color: #888888;
background-color: #d2d2d2;
@ -541,6 +541,9 @@ div.pageFooter div.footerWrapper div.footerContent span.applicationVersion {
top: -40px;
float: right;
}
div.pageFooter div.footerWrapper div.footerContent div.applicationVersion a {
display: inline;
}
/*
Color list:

View File

@ -53,7 +53,7 @@ Clipperz.Base.extend(Clipperz.PM.UI.Web.Components.PageFooter, Clipperz.PM.UI.Co
{tag:'span', cls:'copyright', html:'Copyright © 2009-2013 Clipperz Srl'},
{tag:'a', href:'http://www.clipperz.com/terms_of_service', target:'_blank', html:'terms of service'},
{tag:'a', href:'http://www.clipperz.com/privacy_policy', target:'_blank', html:'privacy policy'},
{tag:'span', cls:'applicationVersion', htmlString:'application version: [<a href="https://github.com/clipperz/password-manager/tree/' + Clipperz_version + '" target="github">' + Clipperz_version + '</a>]'}
{tag:'div', cls:'applicationVersion', htmlString:'application version: [<a href="https://github.com/clipperz/password-manager/tree/' + Clipperz_version + '" target="github">' + Clipperz_version + '</a>]'}
]}
]}
]);