From: Joseph C. <tex...@us...> - 2005-08-30 20:55:34
|
Update of /cvsroot/popfile/engine/skins/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21917/skins/default Modified Files: common-top.thtml handheld.css Log Message: More work on handheld styles. Works well in Moz and Opera. Tables do not work the same in IE so collapsing the history rows does not seem possible. And in IE historyNavigatorTop overlaps historyWidgetsTop. Someone with a handheld device needs to try this out. Index: common-top.thtml =================================================================== RCS file: /cvsroot/popfile/engine/skins/default/common-top.thtml,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** common-top.thtml 27 Aug 2005 08:52:37 -0000 1.8 --- common-top.thtml 30 Aug 2005 20:55:26 -0000 1.9 *************** *** 6,11 **** <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> --- 6,11 ---- <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"> ! <link rel="stylesheet" type="text/css" href="<TMPL_VAR NAME="Skin_Root">handheld.css" media="handheld"> <TMPL_INCLUDE NAME="common-javascript.thtml"> </head> Index: handheld.css =================================================================== RCS file: /cvsroot/popfile/engine/skins/default/handheld.css,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** handheld.css 27 Aug 2005 08:52:37 -0000 1.1 --- handheld.css 30 Aug 2005 20:55:26 -0000 1.2 *************** *** 1,40 **** ! /* 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; ! } --- 1,89 ---- ! /* styles for handheld devices */ ! ! body { ! font-size: 0.9em; ! 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; ! } ! ! .configBar { ! position: relative !important; ! } ! ! .configBarOption { ! display: block; ! float: none; ! } ! ! table.historyTable td, table.historyTable tr { ! display: block; ! } ! ! .columnControls { ! display: none !important; ! } ! ! table.historyTable > tr.rowOdd td, table.historyTable > tr.rowOdd, ! table.historyTable > tr.rowEven td, table.historyTable > tr.rowEven { ! display: block !important; ! width: 100% !important; ! } ! ! tr.rowHeader { ! width: auto !important; ! display: block !important; ! } ! ! h2.history { ! display: none; ! } ! ! td.head { ! font-size: 1.1em; ! } ! ! td.historyNavigatorTop { ! display: block; ! text-align: left !important; ! } ! ! td.historyNavigatorTop div.refreshLink { ! display: none; ! } ! ! td.menuIndent { ! display: none; ! } ! ! th.historyLabel { ! display: block; ! text-align: left; ! } \ No newline at end of file |