Better style for preview header toggle

pull/13/head
Thomas Bruederli 13 years ago
parent d9012055cb
commit be72a0f931

@ -143,6 +143,10 @@ ul.toolbarmenu li a.active:hover,
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e9e9e9', GradientType=0); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e9e9e9', GradientType=0);
} }
#previewheaderstoggle {
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbfbfb', endColorstr='#e9e9e9', GradientType=1);
}
#composeoptionsbox { #composeoptionsbox {
border-top: 1px solid #999; border-top: 1px solid #999;
} }

@ -715,29 +715,47 @@ h3.subject {
display: none; display: none;
} }
#preview-allheaders td.header-title,
#preview-shortheaders td.header-title { #preview-shortheaders td.header-title {
padding-right: 0; padding-left: 0;
} }
#preview-shortheaders td.header { #preview-shortheaders td.header {
padding-right: 12px; padding-right: 18px;
} }
#previewheaderstoggle { #previewheaderstoggle {
width: 16px; display: block;
height: 16px;
padding: 0;
margin-top: 5px;
position: absolute; position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 18px;
padding: 0;
outline: none; outline: none;
background: #f2f2f2;
background: -moz-linear-gradient(left, #fbfbfb 0, #e9e9e9 100%);
background: -webkit-gradient(linear, left top, right top, color-stop(0,#fbfbfb), color-stop(100%,#e9e9e9));
background: -o-linear-gradient(left, #fbfbfb 0, #e9e9e9 100%);
background: -ms-linear-gradient(left, #fbfbfb 0, #e9e9e9 100%);
background: linear-gradient(left, #fbfbfb 0, #e9e9e9 100%);
border-right: 1px solid #dfdfdf;
} }
#previewheaderstoggle.iconlink.add { #previewheaderstoggle .iconlink {
background-position: -32px -227px; display: inline-block;
position: absolute;
top: 8px;
left: 0;
width: 18px;
height: 16px;
background: url(images/buttons.png) -27px -242px no-repeat;
} }
#previewheaderstoggle.iconlink.remove { #previewheaderstoggle.remove .iconlink {
background-position: -32px -242px; top: auto;
bottom: 5px;
background-position: -5px -242px;
} }
div.more-headers { div.more-headers {
@ -774,17 +792,15 @@ div.hide-headers {
} }
#messagepreviewheader { #messagepreviewheader {
margin: 0 8px; position: relative;
padding-bottom: 8px; height: auto;
margin: 0 8px 0 0;
padding: 0 0 6px 26px;
border-bottom: 2px solid #f0f0f0; border-bottom: 2px solid #f0f0f0;
} }
#messagepreviewheader .headers-table {
margin-left: 8px;
}
#messagepreviewheader h3.subject { #messagepreviewheader h3.subject {
padding-left: 0; padding: 8px 8px 2px 0;
} }
#messagepreviewheader #countcontrols, #messagepreviewheader #countcontrols,

@ -18,6 +18,7 @@ header("Pragma: ");
$svg_stops = ''; $svg_stops = '';
$color_stops = explode(';', preg_replace('/[^a-f0-9,;%]/i', '', $_GET['c'])); $color_stops = explode(';', preg_replace('/[^a-f0-9,;%]/i', '', $_GET['c']));
$gradient_coords = !empty($_GET['h']) ? 'x1="0%" y1="0%" x2="100%" y2="0%"' : 'x1="0%" y1="0%" x2="0%" y2="100%"';
$last = count($color_stops) - 1; $last = count($color_stops) - 1;
foreach ($color_stops as $i => $stop) { foreach ($color_stops as $i => $stop) {
list($color, $offset) = explode(',', $stop); list($color, $offset) = explode(',', $stop);
@ -32,7 +33,7 @@ foreach ($color_stops as $i => $stop) {
?> ?>
<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" version="1.0" width="100%" height="100%"> <svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" version="1.0" width="100%" height="100%">
<defs> <defs>
<linearGradient id="LG1" x1="0%" y1="0%" x2="0%" y2="100%" spreadMethod="pad"> <linearGradient id="LG1" <?php echo $gradient_coords; ?> spreadMethod="pad">
<?php echo $svg_stops; ?> <?php echo $svg_stops; ?>
</linearGradient> </linearGradient>
</defs> </defs>

@ -137,6 +137,10 @@ ul.toolbarmenu li a.active:hover,
background-image: url(svggradient.php?c=ffffff;e9e9e9); background-image: url(svggradient.php?c=ffffff;e9e9e9);
} }
#previewheaderstoggle {
background-image: url(svggradient.php?c=fbfbfb;e9e9e9&h=1);
}
/*** jqueryui theme ***/ /*** jqueryui theme ***/

@ -9,7 +9,7 @@
<div id="messagepreviewheader"> <div id="messagepreviewheader">
<h3 class="subject"><roundcube:object name="messageHeaders" valueOf="subject" /></h3> <h3 class="subject"><roundcube:object name="messageHeaders" valueOf="subject" /></h3>
<a href="#details" id="previewheaderstoggle" class="iconlink add"></a> <a href="#details" id="previewheaderstoggle"><span class="iconlink"></span></a>
<table class="headers-table" id="preview-shortheaders"><tbody><tr> <table class="headers-table" id="preview-shortheaders"><tbody><tr>
<roundcube:if condition="env:mailbox == config:drafts_mbox || env:mailbox == config:sent_mbox"> <roundcube:if condition="env:mailbox == config:drafts_mbox || env:mailbox == config:sent_mbox">

Loading…
Cancel
Save