[phpwebapp-commits] CVS: web_app/boxes/codeViewer codeViewer.html,1.2,1.3 codeViewer.css,1.1.1.1,1.2
Brought to you by:
dashohoxha
From: Dashamir H. <das...@us...> - 2003-08-20 08:17:36
|
Update of /cvsroot/phpwebapp/web_app/boxes/codeViewer In directory sc8-pr-cvs1:/tmp/cvs-serv5996/boxes/codeViewer Modified Files: codeViewer.html codeViewer.css Log Message: changed some styles Index: codeViewer.html =================================================================== RCS file: /cvsroot/phpwebapp/web_app/boxes/codeViewer/codeViewer.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** codeViewer.html 16 Jul 2003 09:28:00 -0000 1.2 --- codeViewer.html 20 Aug 2003 07:00:50 -0000 1.3 *************** *** 6,10 **** <td class="{{class-nr}}">{{nr}} </td> </If> ! <td class="{{class-line}}"><pre>{{line}}</pre></td> </tr> </Repeat> --- 6,10 ---- <td class="{{class-nr}}">{{nr}} </td> </If> ! <td class="{{class-line}}"><pre class="{{class-line}}">{{line}}</pre></td> </tr> </Repeat> Index: codeViewer.css =================================================================== RCS file: /cvsroot/phpwebapp/web_app/boxes/codeViewer/codeViewer.css,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** codeViewer.css 21 Feb 2003 08:15:05 -0000 1.1.1.1 --- codeViewer.css 20 Aug 2003 07:00:51 -0000 1.2 *************** *** 1,10 **** - body - { - background-color: white; - margin-top: 0px; - margin-left: 0px; - margin-right: 0px; - margin-bottom: 0px; - } table.codeViewer-table --- 1,2 ---- *************** *** 20,24 **** width: 1; font-size: small; ! color: black white-space: nowrap; } --- 12,16 ---- width: 1; font-size: small; ! color: black; white-space: nowrap; } *************** *** 30,34 **** width: 1; font-size: small; ! color: black white-space: nowrap; } --- 22,26 ---- width: 1; font-size: small; ! color: black; white-space: nowrap; } *************** *** 38,43 **** padding: 0 5; white-space: nowrap; ! background-color: white; ! color: #000099 } --- 30,35 ---- padding: 0 5; white-space: nowrap; ! background-color: #ffffff; ! color: #000099; } *************** *** 46,51 **** padding: 0 5; white-space: nowrap; ! background-color: #0000ff; ! color: white } --- 38,56 ---- padding: 0 5; white-space: nowrap; ! background-color: #5555ff; ! color: #ffff00; ! } ! ! pre.codeViewer-line ! { ! background-color: #ffffff; ! color: #000099; ! border: none; } + pre.codeViewer-line-highlighted + { + background-color: #5555ff; + color: #ffff00; + border: none; + } |