Skip to content

Commit

Permalink
Revert "Removed wrong icons in message view"
Browse files Browse the repository at this point in the history
This reverts commit ab9b7c6.
  • Loading branch information
mariuszkrzaczkowski committed Aug 24, 2018
1 parent db3c7f7 commit ee45bb0
Show file tree
Hide file tree
Showing 6 changed files with 132 additions and 524 deletions.
93 changes: 1 addition & 92 deletions plugins/yetiforce/preview.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

122 changes: 56 additions & 66 deletions plugins/yetiforce/preview.min.css
Original file line number Diff line number Diff line change
@@ -1,92 +1,82 @@
.pull-right {
float: right !important
.pull-right{
float: right!important;
}

#ytActionBarContent select {
padding: 0
#ytActionBarContent select{
padding: 0;
}

#ytActionBarContent .row:before {
#ytActionBarContent .col{
padding-left: 4px;
}
#ytActionBarContent .col-3{
width: 25%;
min-height: 1px;
float: left;
position: relative;
}
#ytActionBarContent .row:before{
display: table;
content: " "
content: " ";
}

#ytActionBarContent .row:after {
clear: both;
clear: both;
display: table;
content: " "
content: " ";
}

#ytActionBarContent .ytHeader {
#ytActionBarContent .ytHeader{
position: relative;
border-bottom: 1px solid #dfdfdf;
border-bottom: 1px solid #69a3cb;
}
#ytActionBarContent .head{
color: #fff;
background-color: #4979aa;
height: 20px;
padding-top: 2px;
}
#ytActionBarContent .data{
color: #000;
background: #ecf6ff;
}

#ytActionBarContent .rowReletedRecord .rowActions {
display: none
#ytActionBarContent .rowReletedRecord .rowActions{
display: none;
}

#ytActionBarContent .rowReletedRecord:hover .rowActions {
display: block
#ytActionBarContent .rowReletedRecord:hover .rowActions{
display: block;
}

#ytActionBarContent .noRecords {
#ytActionBarContent .noRecords{
background: #70a8cb;
text-align: center;
color: #fff;
padding: 2px 0
padding: 2px 0px;
}

#ytActionBarContent .noRecords a.importMail {
#ytActionBarContent .noRecords a.importMail{
color: #ecf6ff;
cursor: pointer;
font-weight: 800
font-weight: 800;
}

#ytActionBarContent .rowReletedRecord {
margin: 3px 0 6px 0
#ytActionBarContent .rowReletedRecord{
margin: 3px 0 6px 0;
}

#ytActionBarContent .rowReletedRecord {
margin: 3px 0 6px 0
#ytActionBarContent .rowReletedRecord{
margin: 3px 0 6px 0;
}

#ytActionBarContent .pull-right button {
line-height: 10px;
#ytActionBarContent .pull-right button{
line-height: 11px;
margin-left: 3px;
padding: 0 6px;
height: 14px
padding: 0px 6px;
height: 14px;
}

#ytActionBarContent .relatedModuleIcon {
margin-right: 5px
#ytActionBarContent .head .pull-right button{
height: 18px;
}

#messageheader.previewheader {
padding: 0 0 3px 30px;
#ytActionBarContent .pull-right button .glyphicon{
top: 0;
}

.rcmaddcontact {
display: none;
#ytActionBarContent .data a{
text-decoration: none;
color: #000;
font-size: 14px;
line-height: 14px;
}

.action-bar__head__container {
display: flex;
flex-wrap: nowrap;
}

.action-bar__col {
width: 100%;
}

@media only screen and (min-width: 600px) {
#ytActionBarContent .action-bar__col {
width: 50%;
}
}

@media only screen and (min-width: 1200px) {
#ytActionBarContent .action-bar__col {
width: 25%;
}
#ytActionBarContent .relatedModuleIcon{
margin-right: 5px;
}
2 changes: 1 addition & 1 deletion skins/yetiforce/templates/message.html
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ <h2 id="aria-label-countcontrols" class="voice"><roundcube:label name="arialabel

<h2 class="subject"><span onmouseover="rcube_webmail.long_subject_title(this)"><span class="voice"><roundcube:label name="subject" />: </span><roundcube:object name="messageHeaders" valueOf="subject" /></span></h2>
<div class="message-headers">
<roundcube:object name="messageHeaders" class="headers-table" exclude="subject" max="20" />
<roundcube:object name="messageHeaders" class="headers-table" addicon="/images/addcontact.png" exclude="subject" max="20" />
</div>
<roundcube:object name="messageFullHeaders" id="full-headers" />

Expand Down
6 changes: 3 additions & 3 deletions skins/yetiforce/templates/messagepreview.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,16 @@ <h3 class="subject"><span onmouseover="rcube_webmail.long_subject_title(this)"><
<table class="headers-table" id="preview-shortheaders"><tbody><tr>
<roundcube:if condition="env:mailbox == config:drafts_mbox || env:mailbox == config:sent_mbox">
<td class="header-title"><roundcube:label name="to" /></td>
<td class="header from"><roundcube:object name="messageHeaders" valueOf="to" max="3" /></td>
<td class="header from"><roundcube:object name="messageHeaders" valueOf="to" max="3" addicon="/images/addcontact.png" /></td>
<roundcube:else />
<td class="header-title"><roundcube:label name="from" /></td>
<td class="header from"><roundcube:object name="messageHeaders" valueOf="from" /></td>
<td class="header from"><roundcube:object name="messageHeaders" valueOf="from" addicon="/images/addcontact.png" /></td>
<roundcube:endif />
<td class="header-title"><roundcube:label name="date" /></td>
<td class="header date"><span><roundcube:object name="messageHeaders" valueOf="date" /></span></td>
</tr></tbody></table>

<roundcube:object name="messageHeaders" id="preview-allheaders" class="headers-table" max="10" exclude="subject,replyto" />
<roundcube:object name="messageHeaders" id="preview-allheaders" class="headers-table" addicon="/images/addcontact.png" max="10" exclude="subject,replyto" />

<roundcube:object name="messageFullHeaders" id="full-headers" />

Expand Down
Loading

0 comments on commit ee45bb0

Please sign in to comment.