[Python-checkins] python/dist/src/Doc/html style.css,1.28,1.29

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Thu Sep 4 13:30:17 EDT 2003


Update of /cvsroot/python/python/dist/src/Doc/html
In directory sc8-pr-cvs1:/tmp/cvs-serv11932/html

Modified Files:
	style.css 
Log Message:
Make the redundent portion of the lower navigation area disappear from the
printed version for browsers that support "@media print" in CSS.


Index: style.css
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/html/style.css,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -d -r1.28 -r1.29
*** style.css	29 Aug 2003 04:09:26 -0000	1.28
--- style.css	4 Sep 2003 19:30:15 -0000	1.29
***************
*** 141,142 ****
--- 141,150 ----
   */
  .availability .platform { font-weight: bold; }
+ 
+ 
+ /*
+  * Some specialization for printed output.
+  */
+ @media print {
+   #bottom-navigation-panel { display: none; }
+   }





More information about the Python-checkins mailing list