Incorporated last changes in Chameleon (login page and contactprint template).

This commit is contained in:
Anisotropic
2015-07-26 02:14:15 +03:00
parent beea5899b2
commit f647e726c6
5 changed files with 38 additions and 3 deletions
-2
View File
@@ -3,8 +3,6 @@
@text-color: #4c4c4c;
//@main-color: #f25829;
//@link-color: #f25829;
//@main-color: #498fc1;
//@link-color: #498fc1;
@main-color: #60AADF;
@link-color: #60AADF;
@button-color: #000000;
File diff suppressed because one or more lines are too long
+9
View File
@@ -143,6 +143,15 @@ body.login #header {
margin-top: 10px;
}
#logon_page {
padding: 5px;
margin-bottom: 15px;
border: solid 2px @main-color;
background-color: screen(@main-color, #eee);
color: darken(@main-color, 25%);
display: none;
}
.topgradient {
height: 0;
}
@@ -0,0 +1,19 @@
<roundcube:object name="doctype" value="html5" />
<html>
<head>
<title><roundcube:object name="pagetitle" /></title>
<link rel="stylesheet" type="text/css" href="./skins/larry/print.css" />
</head>
<body>
<div id="header"><roundcube:object name="logo" src="/images/kolab_logo.png" id="toplogo" border="0" alt="Logo" /></div>
<div id="contact-details" class="boxcontent">
<div id="contactphoto"><roundcube:object name="contactphoto" id="contactpic" placeholder="/images/contactpic.png" placeholderGroup="/images/contactgroup.png" /></div>
<roundcube:object name="contacthead" id="contacthead" />
<br style="clear:both" />
<roundcube:object name="contactdetails" />
</div>
</body>
</html>
@@ -54,5 +54,14 @@
/images/watermark.png
" />
<script type="text/javascript">
$(document).ready(function() {
var div = $('#logon_page');
if (div.length && div.text())
div.prependTo($('#login-form div.box-inner')).show();
});
</script>
</body>
</html>