From: Joseph C. <tex...@us...> - 2005-08-27 08:52:46
|
Update of /cvsroot/popfile/engine/skins/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16324/skins/default Modified Files: common-top.thtml magnet-page.thtml Added Files: handheld.css print.css Log Message: Add stylesheets for print and handhelds. Both remove some UI elements in effort to save paper and increase screen area for handheld users (assuming there are any). Both are general enough that they work with all skins. Move magnet page warning to top of table cell. Index: common-top.thtml =================================================================== RCS file: /cvsroot/popfile/engine/skins/default/common-top.thtml,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** common-top.thtml 27 Aug 2005 06:35:58 -0000 1.7 --- common-top.thtml 27 Aug 2005 08:52:37 -0000 1.8 *************** *** 4,9 **** <title><TMPL_VAR NAME="Localize_Header_Title"></title> <link rel="icon" href="favicon.ico"> ! <link rel="stylesheet" type="text/css" href="<TMPL_VAR NAME="Skin_Root">style.css" title="POPFile"> ! <link rel="stylesheet" type="text/css" href="<TMPL_VAR NAME="Skin_Root">rtl.css"> <TMPL_INCLUDE NAME="common-javascript.thtml"> </head> --- 4,11 ---- <title><TMPL_VAR NAME="Localize_Header_Title"></title> <link rel="icon" href="favicon.ico"> ! <link rel="stylesheet" type="text/css" href="<TMPL_VAR NAME="Skin_Root">style.css" media="all" title="POPFile"> ! <link rel="stylesheet" type="text/css" href="<TMPL_VAR NAME="Skin_Root">rtl.css" media="all"> ! <link rel="stylesheet" type="text/css" href="<TMPL_VAR NAME="Skin_Root">print.css" media="print" title="print"> ! <link rel="stylesheet" type="text/css" href="<TMPL_VAR NAME="Skin_Root">handheld.css" media="handheld" title="handheld"> <TMPL_INCLUDE NAME="common-javascript.thtml"> </head> Index: magnet-page.thtml =================================================================== RCS file: /cvsroot/popfile/engine/skins/default/magnet-page.thtml,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** magnet-page.thtml 22 Aug 2005 08:37:44 -0000 1.13 --- magnet-page.thtml 27 Aug 2005 08:52:37 -0000 1.14 *************** *** 161,167 **** </td> ! <td> <div class="helpMessage"> ! <TMPL_VAR NAME="Localize_Magnet_Note"> </div> </td></tr></table> --- 161,167 ---- </td> ! <td valign="top"> <div class="helpMessage"> ! <TMPL_VAR NAME="Localize_Magnet_Note"> </div> </td></tr></table> --- NEW FILE: print.css --- /* styles for Printing */ body { font-size: 11pt; margin: 0; padding: 0; } a:link, a:link:visited { text-decoration: underline !important; } .openMessageBody { font-size: 10pt; } .headShutdown { display: none; } .historyNavigatorTop, .historyNavigatorBottom { display: none; } .removeButtonsTop, .removeButtonsBottom { display: none; } .columnControls { display: none; } .helpMessage form { display: none; } .openMessageCloser { display: none; } .footer { display: none; } .configBarHidden { display: none; } --- NEW FILE: handheld.css --- /* styles for handheld devices */ body { font-size: 1em; margin: 0; padding: 0; } a:link, a:link:visited { text-decoration: underline !important; } .openMessageBody { font-size: 0.9em; } .historyNavigatorBottom { display: none; } .removeButtonsBottom { display: none; } .columnControls { display: none; } .helpMessage { display: none; } .footer { display: none; } .configBarOption { display: block; float: none; } |