[dw-free] Remove the black border from quick reply
[commit: http://hg.dwscoalition.org/dw-free/rev/0800cf236613]
http://bugs.dwscoalition.org/show_bug.cgi?id=3462
Remove the hardcoded black border around quick reply. Add it back to site
skinned entry pages.
Patch by
ninetydegrees.
Files modified:
http://bugs.dwscoalition.org/show_bug.cgi?id=3462
Remove the hardcoded black border around quick reply. Add it back to site
skinned entry pages.
Patch by
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Files modified:
- cgi-bin/weblib.pl
- htdocs/stc/celerity/celerity.css
- htdocs/stc/gradation/gradation.css
- htdocs/stc/lynx/lynx.css
-------------------------------------------------------------------------------- diff -r 10893d21f3a3 -r 0800cf236613 cgi-bin/weblib.pl --- a/cgi-bin/weblib.pl Tue Feb 22 23:29:58 2011 +0800 +++ b/cgi-bin/weblib.pl Tue Feb 22 23:34:14 2011 +0800 @@ -884,7 +884,7 @@ sub create_qr_div { } # Start making the div itself - $qrhtml .= "<table style='border: 1px solid black'>"; + $qrhtml .= "<table>"; $qrhtml .= "<tr valign='center'>"; $qrhtml .= "<td align='right'><b>".BML::ml('/talkpost.bml.opt.from')."</b></td><td align='left'>"; $qrhtml .= LJ::ljuser($remote->{'user'}); diff -r 10893d21f3a3 -r 0800cf236613 htdocs/stc/celerity/celerity.css --- a/htdocs/stc/celerity/celerity.css Tue Feb 22 23:29:58 2011 +0800 +++ b/htdocs/stc/celerity/celerity.css Tue Feb 22 23:34:14 2011 +0800 @@ -654,3 +654,9 @@ select.select { .message blockquote { border: 1px solid #aaa; } + +/* Quick Reply table */ + +#qrformdiv table { + border: 1px solid #999; +} diff -r 10893d21f3a3 -r 0800cf236613 htdocs/stc/gradation/gradation.css --- a/htdocs/stc/gradation/gradation.css Tue Feb 22 23:29:58 2011 +0800 +++ b/htdocs/stc/gradation/gradation.css Tue Feb 22 23:34:14 2011 +0800 @@ -868,3 +868,10 @@ div#cf-edit select { background-image: none; background-color: #222; } + +/* Quick Reply table */ + +#qrformdiv table { + border: 1px solid #888; +} + diff -r 10893d21f3a3 -r 0800cf236613 htdocs/stc/lynx/lynx.css --- a/htdocs/stc/lynx/lynx.css Tue Feb 22 23:29:58 2011 +0800 +++ b/htdocs/stc/lynx/lynx.css Tue Feb 22 23:34:14 2011 +0800 @@ -125,3 +125,9 @@ td.even { background-color: #e2e2e2; } td.even { background-color: #e2e2e2; } td.screened { background-color: #707070; } td.highlight { background-color: #eeeeee; } + +/* Quick Reply table */ + +#qrformdiv table { + border: 1px solid #999; +} --------------------------------------------------------------------------------