[phpwebapp-commits] CVS: web_app/boxes/codeViewer codeViewer.html,1.3,1.4 codeViewer.css,1.2,1.3
Brought to you by:
dashohoxha
From: Dashamir H. <das...@us...> - 2004-07-21 17:04:58
|
Update of /cvsroot/phpwebapp/web_app/boxes/codeViewer In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2634/boxes/codeViewer Modified Files: codeViewer.html codeViewer.css Log Message: Index: codeViewer.html =================================================================== RCS file: /cvsroot/phpwebapp/web_app/boxes/codeViewer/codeViewer.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** codeViewer.html 20 Aug 2003 07:00:50 -0000 1.3 --- codeViewer.html 21 Jul 2004 17:04:32 -0000 1.4 *************** *** 1,12 **** ! <WebBox ID="codeViewer"> <table class="codeViewer-table" cellspacing="0" cellpadding="0"> ! <Repeat rs="lines"> <tr> ! <If condition="{{show_nr}}"> <td class="{{class-nr}}">{{nr}} </td> ! </If> <td class="{{class-line}}"><pre class="{{class-line}}">{{line}}</pre></td> </tr> ! </Repeat> </table> ! </WebBox> --- 1,12 ---- ! <webbox id="codeViewer"> <table class="codeViewer-table" cellspacing="0" cellpadding="0"> ! <repeat rs="lines"> <tr> ! <if condition="{{show_nr}}"> <td class="{{class-nr}}">{{nr}} </td> ! </if> <td class="{{class-line}}"><pre class="{{class-line}}">{{line}}</pre></td> </tr> ! </repeat> </table> ! </webbox> Index: codeViewer.css =================================================================== RCS file: /cvsroot/phpwebapp/web_app/boxes/codeViewer/codeViewer.css,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** codeViewer.css 20 Aug 2003 07:00:51 -0000 1.2 --- codeViewer.css 21 Jul 2004 17:04:32 -0000 1.3 *************** *** 44,47 **** --- 44,49 ---- pre.codeViewer-line { + margin: 0; + padding: 0; background-color: #ffffff; color: #000099; *************** *** 51,54 **** --- 53,58 ---- pre.codeViewer-line-highlighted { + margin: 0; + padding: 0; background-color: #5555ff; color: #ffff00; |