Browse Source

use border-right-color for firefox

pull/40/head
Michael Save 12 years ago
parent
commit
ae848ef666
  1. 2
      js/post-hover.js

2
js/post-hover.js

@ -21,7 +21,7 @@ $(document).ready(function(){
var post = $('div.post#reply_' + id);
$(this).hover(function() {
post.attr('style', 'border-style: none dashed dashed none; background: ' + post.css('border-color'));
post.attr('style', 'border-style: none dashed dashed none; background: ' + post.css('border-right-color'));
}, function() {
post.attr('style', '');
});

Loading…
Cancel
Save