diff --git a/4chan_x.user.js b/4chan_x.user.js index 55029e307..4504b384d 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -5805,7 +5805,7 @@ body.unscroll {\ max-width: 500px;\ }\ .qphl {\ - outline: 2px solid rgba(216, 94, 49, .7);\ + box-shadow: 0 0 0 2px rgba(216, 94, 49, .7);\ }\ .quotelink.deadlink {\ text-decoration: underline !important;\ @@ -5833,10 +5833,18 @@ div.opContainer {\ display: block !important;\ }\ .opContainer.filter_highlight {\ - box-shadow: inset 5px 0 rgba(255,0,0,0.5);\ + box-shadow: inset 5px 0 rgba(255, 0, 0, .5);\ +}\ +.opContainer.filter_highlight.qphl {\ + box-shadow: inset 5px 0 rgba(255, 0, 0, .5),\ + 0 0 0 2px rgba(216, 94, 49, .7);\ }\ .filter_highlight > .reply {\ - box-shadow: -5px 0 rgba(255,0,0,0.5);\ + box-shadow: -5px 0 rgba(255, 0, 0, .5);\ +}\ +.filter_highlight > .reply.qphl {\ + box-shadow: -5px 0 rgba(255, 0, 0, .5),\ + 0 0 0 2px rgba(216, 94, 49, .7)\ }\ .filtered {\ text-decoration: underline line-through;\ diff --git a/script.coffee b/script.coffee index 48d0a0a33..0e4519d1e 100644 --- a/script.coffee +++ b/script.coffee @@ -4730,7 +4730,7 @@ body.unscroll { max-width: 500px; } .qphl { - outline: 2px solid rgba(216, 94, 49, .7); + box-shadow: 0 0 0 2px rgba(216, 94, 49, .7); } .quotelink.deadlink { text-decoration: underline !important; @@ -4758,10 +4758,18 @@ div.opContainer { display: block !important; } .opContainer.filter_highlight { - box-shadow: inset 5px 0 rgba(255,0,0,0.5); + box-shadow: inset 5px 0 rgba(255, 0, 0, .5); +} +.opContainer.filter_highlight.qphl { + box-shadow: inset 5px 0 rgba(255, 0, 0, .5), + 0 0 0 2px rgba(216, 94, 49, .7); } .filter_highlight > .reply { - box-shadow: -5px 0 rgba(255,0,0,0.5); + box-shadow: -5px 0 rgba(255, 0, 0, .5); +} +.filter_highlight > .reply.qphl { + box-shadow: -5px 0 rgba(255, 0, 0, .5), + 0 0 0 2px rgba(216, 94, 49, .7) } .filtered { text-decoration: underline line-through;