diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2014-06-20 13:42:54 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2014-06-20 13:42:54 +0200 |
commit | a7439075b6bb833f4bffe4bd2db01457d7fe9a3d (patch) | |
tree | adeb55400493f428f43bf5d04dab1214b08a530d /skins | |
parent | 219461fc7443e56ce93d5d3eee2891d32aa95d0c (diff) |
Hide voice messages
Diffstat (limited to 'skins')
-rw-r--r-- | skins/classic/common.css | 7 | ||||
-rw-r--r-- | skins/larry/styles.css | 5 |
2 files changed, 12 insertions, 0 deletions
diff --git a/skins/classic/common.css b/skins/classic/common.css index cc1f3e60a..01a72bb29 100644 --- a/skins/classic/common.css +++ b/skins/classic/common.css @@ -284,6 +284,13 @@ body > #message div.loading, border: 1px solid #CCCCCC; } +body > #message div.voice +{ + position: absolute; + top: -1000px; + clip: rect(0 0 0 0); +} + body > #message a { cursor: pointer; diff --git a/skins/larry/styles.css b/skins/larry/styles.css index 83adaebec..22b66463b 100644 --- a/skins/larry/styles.css +++ b/skins/larry/styles.css @@ -695,6 +695,11 @@ a.iconlink.upload { background: url(images/ajaxloader_dark.gif) 0 4px no-repeat; } +#messagestack div.voice { + position: absolute; + top: -1000px; +} + #messagestack div a { color: #94c0da; } |