X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=templates%2Fcgi-style.css;h=b3cce4398fbaed1ab32dd301365dcdb13a588cd6;hp=5ea0251de1a3a66db96f58e5dbd0ec1a756d6951;hb=d48514c14861e7f176781c3245b1bc963821e65b;hpb=7bfb6887ab00db9e025508bff29c122f05a63ace diff --git a/templates/cgi-style.css b/templates/cgi-style.css index 5ea0251d..b3cce439 100644 --- a/templates/cgi-style.css +++ b/templates/cgi-style.css @@ -30,6 +30,15 @@ # # Revisions : # $Log: cgi-style.css,v $ +# Revision 1.11 2007/12/08 14:29:06 fabiankeil +# Use CSS to let the URL and pattern input fields scale with +# the browser width and try to prevent vertical scroll bars +# if the width is less than 80 characters. Closes #1843596, +# thanks to Gerry Murphy and Lee. +# +# Revision 1.10 2007/01/22 13:12:43 fabiankeil +# White space cosmetics for #include. +# # Revision 1.9 2006/12/17 17:50:55 fabiankeil # Add white space workaround for tables # in show-status CGI page. @@ -43,7 +52,7 @@ /* * CSS for Privoxy CGI and script output * - * $Id: cgi-style.css,v 1.9 2006/12/17 17:50:55 fabiankeil Exp $ + * $Id: cgi-style.css,v 1.11 2007/12/08 14:29:06 fabiankeil Exp $ */ /* @@ -140,7 +149,7 @@ a.cmd:active, td.indentbuttons a:active, td.buttons a:active { /* * Special red emphasis: */ -em.warning { color: #ff0000 } +em.warning, strong.warning { color: #ff0000 } /* * In show-status we use tables directly behind headlines @@ -152,3 +161,10 @@ em.warning { color: #ff0000 } * and use this workaround until then. */ .box table { margin-top: 1em; } + +/* + * Let the URL and pattern input fields scale with the browser + * width and try to prevent vertical scroll bars if the width + * is less than 80 characters. + */ +input.url, input.pattern { width: 95%; }