From c993e10d07d76ef7f24b45bc9e7c1c1115c85980 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Fri, 25 May 2012 07:48:38 -0400
Subject: [PATCH] Fixes for IE: better background for Hide/Show button, fixed invisible button in IE8
---
plugins/hide_blockquote/skins/default/style.css | 2 +-
plugins/hide_blockquote/hide_blockquote.js | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/plugins/hide_blockquote/hide_blockquote.js b/plugins/hide_blockquote/hide_blockquote.js
index 9ab90af..20286ee 100644
--- a/plugins/hide_blockquote/hide_blockquote.js
+++ b/plugins/hide_blockquote/hide_blockquote.js
@@ -24,7 +24,7 @@
.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 7b3c871..198172f 100644
--- a/plugins/hide_blockquote/skins/default/style.css
+++ b/plugins/hide_blockquote/skins/default/style.css
@@ -17,7 +17,7 @@
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%);
--
Gitblit v1.9.1