Remove the Force Reply Break option on Chrome

Disabling it was broken, so now it's forced. Sorry.
This commit is contained in:
Zixaphir 2014-01-13 13:36:51 -07:00
parent 94dd0e555f
commit 8781f52a36
4 changed files with 13 additions and 10 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -491,10 +491,12 @@ Config =
true true
'Hide backlinks to filtered posts.' 'Hide backlinks to filtered posts.'
] ]
<% if (type === 'userscript') { %>
'Force Reply Break': [ 'Force Reply Break': [
false false
'Force replies to occupy their own line and not be adjacent to the OP image.' 'Force replies to occupy their own line and not be adjacent to the OP image.'
] ]
<% } %>
'Fit Width Replies': [ 'Fit Width Replies': [
true true
'Replies fit the entire width of the page.' 'Replies fit the entire width of the page.'

View File

@ -1168,12 +1168,6 @@ s {
a.useremail:last-of-type { a.useremail:last-of-type {
vertical-align: top; vertical-align: top;
} }
.op-background .op.post .postMessage::after,
.force-reply-break .op.post .postMessage::after {
display: block;
content: ' ';
clear: both;
}
/* OP */ /* OP */
.watch-thread-link { .watch-thread-link {
vertical-align: bottom; vertical-align: bottom;
@ -1181,8 +1175,16 @@ a.useremail:last-of-type {
.op-background .op.post { .op-background .op.post {
<%= sizing %>: border-box; <%= sizing %>: border-box;
} }
<% if (type === 'userscript') { %>
/* Force Reply Break */
.op-background .op.post .postMessage::after,
.force-reply-break <% } %>.op.post .postMessage::after {
display: block;
content: ' ';
clear: both;
}
/* Summary */ /* Summary */
.force-reply-break .summary { <% if (type === 'userscript') { %>.force-reply-break <% } %>.summary {
clear: both; clear: both;
} }
/* Inlined */ /* Inlined */