Increase negative text-indents to properly hide button texts (#1488534)

pull/13/head
Thomas Bruederli 12 years ago
parent 207d618c22
commit 900e6226ac

@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail CHANGELOG Roundcube Webmail
=========================== ===========================
- Properly hide text of icon links/buttons (#1488534)
- Fix handling of unitless CSS size values in HTML message (#1488535) - Fix handling of unitless CSS size values in HTML message (#1488535)
- Fix removing contact photo using LDAP addressbook (#1488420) - Fix removing contact photo using LDAP addressbook (#1488420)
- Fix storing X-ANNIVERSARY date in vCard format (#1488527) - Fix storing X-ANNIVERSARY date in vCard format (#1488527)

@ -1,6 +1,6 @@
#messagetoolbar a.button.archive { #messagetoolbar a.button.archive {
text-indent: -1000px; text-indent: -5000px;
background: url(archive_act.png) 0 0 no-repeat; background: url(archive_act.png) 0 0 no-repeat;
} }

@ -1,6 +1,6 @@
#messagetoolbar a.button.junk { #messagetoolbar a.button.junk {
text-indent: -1000px; text-indent: -5000px;
background: url(junk_act.png) 0 0 no-repeat; background: url(junk_act.png) 0 0 no-repeat;
} }

@ -1481,7 +1481,7 @@ input.from_address
#compose-attachments li a #compose-attachments li a
{ {
text-indent: -1000px; text-indent: -5000px;
width: 17px; width: 17px;
height: 16px; height: 16px;
display: block; display: block;

@ -289,6 +289,6 @@ a.deletebutton {
width: 24px; width: 24px;
height: 18px; height: 18px;
text-decoration: none; text-decoration: none;
text-indent: -1000px; text-indent: -5000px;
background: url(images/buttons.png) -7px -377px no-repeat; background: url(images/buttons.png) -7px -377px no-repeat;
} }

@ -1210,7 +1210,7 @@ div.message-part blockquote blockquote blockquote {
#uploadform a.iconlink { #uploadform a.iconlink {
margin-left: 1em; margin-left: 1em;
text-indent: -1000px; text-indent: -5000px;
} }
#uploadform form div { #uploadform form div {

@ -330,7 +330,7 @@ a.iconbutton {
width: 24px; width: 24px;
height: 18px; height: 18px;
text-decoration: none; text-decoration: none;
text-indent: -1000px; text-indent: -5000px;
background: url(images/buttons.png) -1000px 0 no-repeat; background: url(images/buttons.png) -1000px 0 no-repeat;
} }
@ -827,7 +827,7 @@ table.layout td {
display: inline-block; display: inline-block;
width: 48px; width: 48px;
height: 35px; height: 35px;
text-indent: -1000px; text-indent: -5000px;
background: url(images/buttons.png) -1000px 0 no-repeat; background: url(images/buttons.png) -1000px 0 no-repeat;
} }
@ -1941,7 +1941,7 @@ ul.toolbarmenu li span.conversation {
height: 18px; height: 18px;
padding: 0; padding: 0;
text-decoration: none; text-decoration: none;
text-indent: -1000px; text-indent: -5000px;
background: url(images/buttons.png) -7px -337px no-repeat; background: url(images/buttons.png) -7px -337px no-repeat;
} }

Loading…
Cancel
Save