This commit is contained in:
Nicolas Stepien 2012-09-20 01:11:25 +02:00
parent 673a3e08d2
commit 55da34c842
2 changed files with 22 additions and 6 deletions

View File

@ -5805,7 +5805,7 @@ body.unscroll {\
max-width: 500px;\ max-width: 500px;\
}\ }\
.qphl {\ .qphl {\
outline: 2px solid rgba(216, 94, 49, .7);\ box-shadow: 0 0 0 2px rgba(216, 94, 49, .7);\
}\ }\
.quotelink.deadlink {\ .quotelink.deadlink {\
text-decoration: underline !important;\ text-decoration: underline !important;\
@ -5833,10 +5833,18 @@ div.opContainer {\
display: block !important;\ display: block !important;\
}\ }\
.opContainer.filter_highlight {\ .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 {\ .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 {\ .filtered {\
text-decoration: underline line-through;\ text-decoration: underline line-through;\

View File

@ -4730,7 +4730,7 @@ body.unscroll {
max-width: 500px; max-width: 500px;
} }
.qphl { .qphl {
outline: 2px solid rgba(216, 94, 49, .7); box-shadow: 0 0 0 2px rgba(216, 94, 49, .7);
} }
.quotelink.deadlink { .quotelink.deadlink {
text-decoration: underline !important; text-decoration: underline !important;
@ -4758,10 +4758,18 @@ div.opContainer {
display: block !important; display: block !important;
} }
.opContainer.filter_highlight { .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 { .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 { .filtered {
text-decoration: underline line-through; text-decoration: underline line-through;