From: Joseph C. <tex...@us...> - 2005-02-16 23:16:04
|
Update of /cvsroot/popfile/engine/skins/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16092/skins/default Modified Files: history-page.thtml style.css Log Message: Move inline styles on the column controls to style sheet for default skin. Index: history-page.thtml =================================================================== RCS file: /cvsroot/popfile/engine/skins/default/history-page.thtml,v retrieving revision 1.55 retrieving revision 1.56 diff -C2 -d -r1.55 -r1.56 *** history-page.thtml 15 Feb 2005 04:23:54 -0000 1.55 --- history-page.thtml 16 Feb 2005 23:15:55 -0000 1.56 *************** *** 69,79 **** <TMPL_LOOP NAME="History_Loop_Headers"> ! <th class="historyLabel" scope="col"> <table width="100%" cellspacing="0"> <tr> ! <td width="10px" align="left" style="white-space:nowrap; vertical-align: top;"> ! <a style="display: block; width:100%; height: 1em;" class="columnRemove" href="/history?removecolumn=<TMPL_VAR NAME="History_Header">"><img title="<TMPL_VAR NAME="Localize_History_RemoveColumn">" src="skins/x.gif" border="0" alt=""></a> </td> ! <th style="text-align: left;"> <a href="/history?<TMPL_VAR NAME="History_Fields">&setsort=<TMPL_VAR NAME="History_Sort"><TMPL_VAR NAME="History_Header">" title="<TMPL_VAR NAME="Localize_History_Click_To_Sort">"> --- 69,79 ---- <TMPL_LOOP NAME="History_Loop_Headers"> ! <th scope="col"> <table width="100%" cellspacing="0"> <tr> ! <td class="columnControls"> ! <a class="columnRemove" href="/history?removecolumn=<TMPL_VAR NAME="History_Header">"><img title="<TMPL_VAR NAME="Localize_History_RemoveColumn">" src="skins/x.gif" border="0" alt="x"></a> </td> ! <th class="historyLabel"> <a href="/history?<TMPL_VAR NAME="History_Fields">&setsort=<TMPL_VAR NAME="History_Sort"><TMPL_VAR NAME="History_Header">" title="<TMPL_VAR NAME="Localize_History_Click_To_Sort">"> *************** *** 105,115 **** <TMPL_IF NAME="History_If_MoveLeft"> ! <td width="10px" style="vertical-align: top;"> ! <a style="display: block; width:100%; height: 1em;" class="columnMove" href="/history?moveleft=<TMPL_VAR NAME="History_Header">"><img title="<TMPL_VAR NAME="Localize_History_MoveLeft">" src="skins/leftarrow.gif" border="0" alt=""></a> </td> </TMPL_IF> <TMPL_IF NAME="History_If_MoveRight"> ! <td width="10px" style="vertical-align: top;"> ! <a style="display: block; width:100%; height: 1em;" class="columnMove" href="/history?moveright=<TMPL_VAR NAME="History_Header">"><img title="<TMPL_VAR NAME="Localize_History_MoveRight">" src="skins/rightarrow.gif" border="0" alt=""></a> </td> </TMPL_IF> --- 105,115 ---- <TMPL_IF NAME="History_If_MoveLeft"> ! <td class="columnControls"> ! <a class="columnMove" href="/history?moveleft=<TMPL_VAR NAME="History_Header">"><img title="<TMPL_VAR NAME="Localize_History_MoveLeft">" src="skins/leftarrow.gif" border="0" alt="<"></a> </td> </TMPL_IF> <TMPL_IF NAME="History_If_MoveRight"> ! <td class="columnControls"> ! <a class="columnMove" href="/history?moveright=<TMPL_VAR NAME="History_Header">"><img title="<TMPL_VAR NAME="Localize_History_MoveRight">" src="skins/rightarrow.gif" border="0" alt=">"></a> </td> </TMPL_IF> *************** *** 122,126 **** </TMPL_LOOP> ! <th scope="col" align="center"> <input type="submit" class="submit reclassifyButton" name="change" value="<TMPL_VAR NAME="Localize_Reclassify">" /> </th> --- 122,126 ---- </TMPL_LOOP> ! <th scope="col" class="historyLabel"> <input type="submit" class="submit reclassifyButton" name="change" value="<TMPL_VAR NAME="Localize_Reclassify">" /> </th> *************** *** 239,243 **** <input type="submit" class="submit removeButton" name="clearall" value="<TMPL_VAR NAME="Localize_History_RemoveAll"> (<TMPL_VAR NAME="History_Count">)" /> </td> ! <td align="center"> <input type="submit" class="submit reclassifyButton" name="change" value="<TMPL_VAR NAME="Localize_Reclassify">" /> </td> --- 239,243 ---- <input type="submit" class="submit removeButton" name="clearall" value="<TMPL_VAR NAME="Localize_History_RemoveAll"> (<TMPL_VAR NAME="History_Count">)" /> </td> ! <td> <input type="submit" class="submit reclassifyButton" name="change" value="<TMPL_VAR NAME="Localize_Reclassify">" /> </td> Index: style.css =================================================================== RCS file: /cvsroot/popfile/engine/skins/default/style.css,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** style.css 13 Feb 2005 02:16:35 -0000 1.14 --- style.css 16 Feb 2005 23:15:56 -0000 1.15 *************** *** 127,131 **** tr.rowBoundary { color: #000000; ! background-color: #AFAF7F; } --- 127,131 ---- tr.rowBoundary { color: #000000; ! background-color: #CCCC99; } *************** *** 134,141 **** } - tr.rowBoundary { - background-color: #CCCC99; - } - /*********************************************************/ /* Graphics */ --- 134,137 ---- *************** *** 173,176 **** --- 169,176 ---- } + th.historyLabel { + text-align: left; + } + .historyLabelSort { font-weight: bold; *************** *** 284,285 **** --- 284,300 ---- display: block; } + + /*********************************************************/ + /* History Column Controls */ + + .columnControls { + white-space:nowrap; + vertical-align: top; + width: 10px; + } + + .columnRemove, .columnMove { + display: block; + width:100%; + height: 1em; + } |