diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-02-13 14:19:41 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-02-13 14:19:41 +0100 |
commit | 5e8da2b5c9d69872d17c857e239b1e30e9c23976 (patch) | |
tree | 6eb39b96d0243d141a3bafc93ff3d3504414ad18 /skins/larry | |
parent | 8bbb01cb66830cd20d3264d2ec78c911c48d270c (diff) |
Added toolbar button to move message in message view
Diffstat (limited to 'skins/larry')
-rw-r--r-- | skins/larry/includes/mailtoolbar.html | 3 | ||||
-rw-r--r-- | skins/larry/styles.css | 8 |
2 files changed, 11 insertions, 0 deletions
diff --git a/skins/larry/includes/mailtoolbar.html b/skins/larry/includes/mailtoolbar.html index 5708a94f1..912cac6e2 100644 --- a/skins/larry/includes/mailtoolbar.html +++ b/skins/larry/includes/mailtoolbar.html @@ -15,6 +15,9 @@ <roundcube:endif /> <roundcube:container name="toolbar" id="mailtoolbar" /> <roundcube:button name="markmenulink" id="markmessagemenulink" type="link" class="button markmessage" label="mark" title="markmessages" onclick="UI.show_popup('markmessagemenu');return false" /> +<roundcube:if condition="template:name == 'message'" /> +<roundcube:button command="move" type="link" class="button move disabled" classAct="button move" classSel="button move pressed" label="move" title="moveto" data-menu-pos="bottom" /> +<roundcube:endif /> <roundcube:button name="messagemenulink" id="messagemenulink" type="link" class="button more" label="more" title="moreactions" onclick="UI.show_popup('messagemenu');return false" /> <div id="forwardmenu" class="popupmenu"> diff --git a/skins/larry/styles.css b/skins/larry/styles.css index e1a813373..96ffbb272 100644 --- a/skins/larry/styles.css +++ b/skins/larry/styles.css @@ -1895,6 +1895,10 @@ ul.proplist li { background-position: center -1094px; } +.toolbar a.button.move { + background-position: center -1972px; +} + .toolbar a.button.more { background-position: center -850px; } @@ -2339,6 +2343,10 @@ ul.toolbarmenu li span.copy { /*** folder selector ***/ +#folder-selector { + z-index: 1000; +} + #folder-selector li a span { background: url("images/listicons.png") 4px -2021px no-repeat; display: block; |