Merge pull request #2192 from fabrixxm/quattro-message-aside

quattro: fix PM aside template
This commit is contained in:
Tobias Diekershoff 2015-12-21 09:57:17 +01:00
commit 7faa88613d
5 changed files with 188 additions and 14 deletions

View File

@ -463,7 +463,7 @@ a:hover {
text-decoration: underline;
}
blockquote {
background: #FFFFFF;
background: #ffffff;
padding: 1em;
margin-left: 1em;
border-left: 1em solid #e6e6e6;
@ -544,6 +544,7 @@ header {
margin: 0;
padding: 0;
/*width: 100%; height: 12px; */
z-index: 110;
color: #ffffff;
}
@ -921,6 +922,7 @@ aside .posted-date-selector-months {
overflow: auto;
height: auto;
/*.contact-block-div { width:60px; height: 60px; }*/
}
#contact-block .contact-block-h4 {
float: left;
@ -1002,6 +1004,7 @@ aside .posted-date-selector-months {
margin-bottom: 2em;
/*.action .s10 { width: 10px; overflow: hidden; padding: 0;}
.action .s16 { width: 16px; overflow: hidden; padding: 0;}*/
}
.widget h3 {
padding: 0;
@ -1305,6 +1308,7 @@ section {
height: 32px;
margin-left: 16px;
/*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
}
.comment-edit-preview .contact-photo-menu-button {
top: 15px !important;
@ -2221,6 +2225,7 @@ ul.tabs li .active {
min-height: 22px;
padding-top: 6px;
/* a { display: block;}*/
}
#photo-caption {
display: block;
@ -2344,6 +2349,53 @@ ul.tabs li .active {
.mail-list-wrapper .mail-delete {
float: right;
}
#message-preview {
margin-top: 1em;
box-sizing: border-box;
}
#message-preview * {
box-sizing: border-box;
white-space: nowrap;
}
#message-preview .mail-list-wrapper .mail-subject {
width: 100%;
}
#message-preview .mail-list-wrapper .mail-date {
font-size: 0.8em;
width: 25%;
text-align: right;
}
#message-preview .mail-list-wrapper .mail-from {
font-size: 0.8em;
width: 75%;
}
#message-preview .mail-list-wrapper .mail-count {
font-size: 0.8em;
width: 100%;
}
#message-preview .mail-list-wrapper .mail-delete {
display: none;
}
#message-preview .mail-list-wrapper .mail-date,
#message-preview .mail-list-wrapper .mail-from,
#message-preview .mail-list-wrapper .mail-count {
opacity: 0.5;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
#message-preview .mail-list-wrapper:hover .mail-date,
#message-preview .mail-list-wrapper:hover .mail-from,
#message-preview .mail-list-wrapper:hover .mail-count {
opacity: 1;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
#mail-display-subject {
background-color: #f6f7f8;
color: #2d2d2d;

View File

@ -463,7 +463,7 @@ a:hover {
text-decoration: underline;
}
blockquote {
background: #FFFFFF;
background: #ffffff;
padding: 1em;
margin-left: 1em;
border-left: 1em solid #e6e6e6;
@ -544,6 +544,7 @@ header {
margin: 0;
padding: 0;
/*width: 100%; height: 12px; */
z-index: 110;
color: #ffffff;
}
@ -921,6 +922,7 @@ aside .posted-date-selector-months {
overflow: auto;
height: auto;
/*.contact-block-div { width:60px; height: 60px; }*/
}
#contact-block .contact-block-h4 {
float: left;
@ -1002,6 +1004,7 @@ aside .posted-date-selector-months {
margin-bottom: 2em;
/*.action .s10 { width: 10px; overflow: hidden; padding: 0;}
.action .s16 { width: 16px; overflow: hidden; padding: 0;}*/
}
.widget h3 {
padding: 0;
@ -1305,6 +1308,7 @@ section {
height: 32px;
margin-left: 16px;
/*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
}
.comment-edit-preview .contact-photo-menu-button {
top: 15px !important;
@ -2221,6 +2225,7 @@ ul.tabs li .active {
min-height: 22px;
padding-top: 6px;
/* a { display: block;}*/
}
#photo-caption {
display: block;
@ -2344,6 +2349,53 @@ ul.tabs li .active {
.mail-list-wrapper .mail-delete {
float: right;
}
#message-preview {
margin-top: 1em;
box-sizing: border-box;
}
#message-preview * {
box-sizing: border-box;
white-space: nowrap;
}
#message-preview .mail-list-wrapper .mail-subject {
width: 100%;
}
#message-preview .mail-list-wrapper .mail-date {
font-size: 0.8em;
width: 25%;
text-align: right;
}
#message-preview .mail-list-wrapper .mail-from {
font-size: 0.8em;
width: 75%;
}
#message-preview .mail-list-wrapper .mail-count {
font-size: 0.8em;
width: 100%;
}
#message-preview .mail-list-wrapper .mail-delete {
display: none;
}
#message-preview .mail-list-wrapper .mail-date,
#message-preview .mail-list-wrapper .mail-from,
#message-preview .mail-list-wrapper .mail-count {
opacity: 0.5;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
#message-preview .mail-list-wrapper:hover .mail-date,
#message-preview .mail-list-wrapper:hover .mail-from,
#message-preview .mail-list-wrapper:hover .mail-count {
opacity: 1;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
#mail-display-subject {
background-color: #f6f7f8;
color: #2d2d2d;

View File

@ -420,7 +420,7 @@
body {
font-family: Liberation Sans, helvetica, arial, clean, sans-serif;
font-size: 11px;
background-color: #F6ECF9;
background-color: #f6ecf9;
color: #2d2d2d;
margin: 50px 0 0 0;
display: table;
@ -463,7 +463,7 @@ a:hover {
text-decoration: underline;
}
blockquote {
background: #FFFFFF;
background: #ffffff;
padding: 1em;
margin-left: 1em;
border-left: 1em solid #e6e6e6;
@ -544,6 +544,7 @@ header {
margin: 0;
padding: 0;
/*width: 100%; height: 12px; */
z-index: 110;
color: #ffffff;
}
@ -921,6 +922,7 @@ aside .posted-date-selector-months {
overflow: auto;
height: auto;
/*.contact-block-div { width:60px; height: 60px; }*/
}
#contact-block .contact-block-h4 {
float: left;
@ -1002,6 +1004,7 @@ aside .posted-date-selector-months {
margin-bottom: 2em;
/*.action .s10 { width: 10px; overflow: hidden; padding: 0;}
.action .s16 { width: 16px; overflow: hidden; padding: 0;}*/
}
.widget h3 {
padding: 0;
@ -1305,6 +1308,7 @@ section {
height: 32px;
margin-left: 16px;
/*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
}
.comment-edit-preview .contact-photo-menu-button {
top: 15px !important;
@ -1749,7 +1753,7 @@ span[id^="showmore-wrap"] {
height: 20px;
width: 500px;
font-weight: bold;
border: 1px solid #F6ECF9;
border: 1px solid #f6ecf9;
}
#jot #jot-title:-webkit-input-placeholder {
font-weight: normal;
@ -1776,7 +1780,7 @@ span[id^="showmore-wrap"] {
margin: 0;
height: 20px;
width: 200px;
border: 1px solid #F6ECF9;
border: 1px solid #f6ecf9;
}
#jot #jot-category:hover {
border: 1px solid #999999;
@ -2221,6 +2225,7 @@ ul.tabs li .active {
min-height: 22px;
padding-top: 6px;
/* a { display: block;}*/
}
#photo-caption {
display: block;
@ -2344,6 +2349,53 @@ ul.tabs li .active {
.mail-list-wrapper .mail-delete {
float: right;
}
#message-preview {
margin-top: 1em;
box-sizing: border-box;
}
#message-preview * {
box-sizing: border-box;
white-space: nowrap;
}
#message-preview .mail-list-wrapper .mail-subject {
width: 100%;
}
#message-preview .mail-list-wrapper .mail-date {
font-size: 0.8em;
width: 25%;
text-align: right;
}
#message-preview .mail-list-wrapper .mail-from {
font-size: 0.8em;
width: 75%;
}
#message-preview .mail-list-wrapper .mail-count {
font-size: 0.8em;
width: 100%;
}
#message-preview .mail-list-wrapper .mail-delete {
display: none;
}
#message-preview .mail-list-wrapper .mail-date,
#message-preview .mail-list-wrapper .mail-from,
#message-preview .mail-list-wrapper .mail-count {
opacity: 0.5;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
#message-preview .mail-list-wrapper:hover .mail-date,
#message-preview .mail-list-wrapper:hover .mail-from,
#message-preview .mail-list-wrapper:hover .mail-count {
opacity: 1;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
#mail-display-subject {
background-color: #f6f7f8;
color: #2d2d2d;

View File

@ -1599,6 +1599,25 @@ ul.tabs {
.mail-delete { float: right; }
}
#message-preview {
margin-top: 1em;
box-sizing: border-box;
* { box-sizing: border-box; white-space: nowrap;}
.mail-list-wrapper {
.mail-subject {
width: 100%;
}
.mail-date { font-size: 0.8em; width: 25%; text-align: right}
.mail-from { font-size: 0.8em; width: 75%;}
.mail-count { font-size: 0.8em; width: 100%;}
.mail-delete { display: none;}
& .mail-date, & .mail-from, & .mail-count { .opaque(0.5); }
&:hover .mail-date, &:hover .mail-from, &:hover .mail-count { .opaque(1); }
}
}
#mail-display-subject {
background-color: @MailDisplaySubjectBackgroundColor;
color: @MailDisplaySubjectColor;
@ -1816,4 +1835,3 @@ footer { height: 100px; display: table-row; }
.fbrowser.file p { display: inline; white-space: nowrap; }
.fbrowser .upload { clear: both; padding-top: 1em;}

View File

@ -1,10 +1,10 @@
<div id="message-sidebar" class="widget">
<div id="message-new" class="{{if $new.sel}}selected{{/if}}"><a href="{{$new.url}}" accesskey="m">{{$new.label}}</a> </div>
<ul role="menu" class="message-ul">
{{foreach $tabs as $t}}
<li role="menuitem" class="tool {{if $t.sel}}selected{{/if}}"><a href="{{$t.url}}" {{if $t.accesskey}}accesskey="$t.accesskey"{{/if}} class="message-link">{{$t.label}}</a></li>
{{/foreach}}
</ul>
{{if $tabs}}
<div id="message-preview">
{{$tabs}}
</div>
{{/if}}
</div>