Skip to content

Commit

Permalink
Fixes for IE: better background for Hide/Show button, fixed invisible…
Browse files Browse the repository at this point in the history
… button in IE8
  • Loading branch information
alecpl committed May 24, 2012
1 parent aaf4370 commit 4a5c1f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/hide_blockquote/hide_blockquote.js
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion plugins/hide_blockquote/skins/default/style.css
Expand Up @@ -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%);
Expand Down

0 comments on commit 4a5c1f5

Please sign in to comment.