pin/unpin

master
Vitaliy Filippov 2016-06-14 00:13:09 +03:00
parent 6170f27a49
commit c36e9c1865
3 changed files with 16 additions and 4 deletions

BIN
icons/mail_unpinned2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 689 B

View File

@ -987,7 +987,19 @@ div
width: 16px; width: 16px;
height: 16px; height: 16px;
margin: 4px 0 0 10px; margin: 4px 0 0 10px;
background: url(icons/mail_unpinned.png); opacity: 0.5;
background: url(icons/mail_unpinned2.png);
transition: all 0.2s ease-out;
}
.message-view .message .headers .top .pin:hover
{
opacity: 1;
}
.message-view .message .headers .top .pin.pressed
{
background: url(icons/mail_pinned.png);
} }
.message-view .message .headers .header-table .message-view .message .headers .header-table

View File

@ -493,15 +493,15 @@
</div> </div>
<script> <script>
<!-- <!--
// TODO: compose window
// TODO: expand/collapse days, handle up/down keys (switch messages -> days -> messages -> scroll) // TODO: expand/collapse days, handle up/down keys (switch messages -> days -> messages -> scroll)
// TODO: keyboard navigation in dropdowns // TODO: keyboard navigation in dropdowns
// TODO: message multiselect in list // TODO: message multiselect in list
// TODO: space=read // TODO: space=read
// TODO: threads
// TODO: quick reply // TODO: quick reply
// TODO: compose window
// TODO: "default mail settings" window popup
// TODO: async backend with parallel fetch, ssh backdoor for work mail // TODO: async backend with parallel fetch, ssh backdoor for work mail
// TODO: threads
// TODO: "default mail settings" window popup
function expandChecks() function expandChecks()
{ {
var e = this.firstChild.className == 'expand'; var e = this.firstChild.className == 'expand';