From 07f1921150a0d6f5694a83fc174d2e0e11b4a163 Mon Sep 17 00:00:00 2001 From: ahodesuka Date: Thu, 23 Feb 2012 15:44:50 -0600 Subject: [PATCH] Use :not, cause we ain't supportin' IE. --- 4chan_x.user.js | 5 +---- script.coffee | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/4chan_x.user.js b/4chan_x.user.js index d6f5920b9..5db7cd76f 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -4137,12 +4137,9 @@ td.replyhider {\ float: left;\ pointer-events: none;\ }\ -.filesize a .fnfull, .filesize a:hover .fntrunc {\ +.filesize a:not(:hover) .fnfull, .filesize a:hover .fntrunc {\ display: none;\ }\ -.filesize a:hover .fnfull {\ - display: inline;\ -}\ img[md5], img[md5] + img {\ pointer-events: all;\ }\ diff --git a/script.coffee b/script.coffee index f9195337b..7a41ed83d 100644 --- a/script.coffee +++ b/script.coffee @@ -3425,12 +3425,9 @@ td.replyhider { float: left; pointer-events: none; } -.filesize a .fnfull, .filesize a:hover .fntrunc { +.filesize a:not(:hover) .fnfull, .filesize a:hover .fntrunc { display: none; } -.filesize a:hover .fnfull { - display: inline; -} img[md5], img[md5] + img { pointer-events: all; }