Remove hide-forwarded-for-headers action which has
[privoxy.git] / templates / cgi-style.css
index 1773805..b3cce43 100644 (file)
 #
 # 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.
+#
 #    Revision 1.8  2002/05/12 15:53:41  jongfoster
 #    Adding standard comment header with license and CVS log.
 #
 #
 ##############################################################################
 
-
 /*
  * CSS for Privoxy CGI and script output
  *
- * $Id: cgi-style.css,v 1.8 2002/05/12 15:53:41 jongfoster Exp $
+ * $Id: cgi-style.css,v 1.11 2007/12/08 14:29:06 fabiankeil Exp $
  */
 
 /*
@@ -137,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
@@ -148,4 +160,11 @@ em.warning { color: #ff0000 }
  * but as this affects every cgi page we do it another time
  * and use this workaround until then.
  */
-.box table { margin-top: 1em; }
\ No newline at end of file
+.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%; }