summaryrefslogtreecommitdiff
path: root/plugins/hide_blockquote
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2012-05-24 18:18:47 +0200
committerAleksander Machniak <alec@alec.pl>2012-05-24 18:18:47 +0200
commit4a5c1f53752008b1789cdef224199615bbaab3fc (patch)
treee0ba70639155ce3df48ea3b02f6a5cc2e8516b4a /plugins/hide_blockquote
parentaaf4370a1f0a2ed802debfcb01ac184c4217c416 (diff)
Fixes for IE: better background for Hide/Show button, fixed invisible button in IE8
Diffstat (limited to 'plugins/hide_blockquote')
-rw-r--r--plugins/hide_blockquote/hide_blockquote.js2
-rw-r--r--plugins/hide_blockquote/skins/default/style.css2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/hide_blockquote/hide_blockquote.js b/plugins/hide_blockquote/hide_blockquote.js
index 9ab90af0d..20286ee14 100644
--- a/plugins/hide_blockquote/hide_blockquote.js
+++ b/plugins/hide_blockquote/hide_blockquote.js
@@ -24,7 +24,7 @@ function hide_blockquote()
.css({'white-space': 'nowrap', overflow: 'hidden', position: 'relative'})
.text(res[0]);
- link = $('<span class="blockquote-link">')
+ link = $('<span class="blockquote-link"></span>')
.css({position: 'absolute', 'z-Index': 2})
.text(rcmail.gettext('hide_blockquote.show'))
.data('parent', div)
diff --git a/plugins/hide_blockquote/skins/default/style.css b/plugins/hide_blockquote/skins/default/style.css
index 7b3c871c3..198172f92 100644
--- a/plugins/hide_blockquote/skins/default/style.css
+++ b/plugins/hide_blockquote/skins/default/style.css
@@ -17,7 +17,7 @@ span.blockquote-link {
border-top: none;
border-bottom-right-radius: 6px;
border-bottom-left-radius: 6px;
- background: #fff;
+ background: #f8f8f8;
background: -moz-linear-gradient(top, #f8f8f8 0%, #e8e8e8 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8f8f8), color-stop(100%,#e8e8e8));
background: -o-linear-gradient(top, #f8f8f8 0%, #e8e8e8 100%);