From: Geoffrey T. D. <da...@us...> - 2001-12-15 02:41:26
|
Update of /cvsroot/phpwiki/phpwiki In directory usw-pr-cvs1:/tmp/cvs-serv6708 Modified Files: phpwiki.css Log Message: Adjustements of style for diff output. Index: phpwiki.css =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/phpwiki.css,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** phpwiki.css 2001/12/14 20:29:50 1.12 --- phpwiki.css 2001/12/15 02:41:23 1.13 *************** *** 233,236 **** --- 233,238 ---- .diff .block { padding: 0.5ex 0.5em; margin: 0.5ex 0; } .diff .block tt { font-weight: bold; } + .diff del, + .diff ins { font-weight: bold; text-decoration: none; } /* These screw up NS4 --- moved to phpwiki-heavy.css *************** *** 240,251 **** .diff .block { background: #ccc; } ! .diff .context { background: white; } .diff .deleted { background: #fcc; } .diff .added { background: #cfc; } ! .diff .changed { background: #ff6; } ! /* These don't work in NS4 -- it completely ignores <del> and <ins>. */ ! .diff del { background: #f99; font-weight: bold; text-decoration: none; } ! .diff ins { background: #9f9; font-weight: bold; text-decoration: none; } /* For emacs users --- 242,259 ---- .diff .block { background: #ccc; } ! .diff .context { background: #fff; } ! .diff .original, .diff .deleted { background: #fcc; } + .diff .final, .diff .added { background: #cfc; } ! /* ! .diff .original { background: #feb; } ! .diff .final { background: #efb; } ! */ /* These don't work in NS4 -- it completely ignores <del> and <ins>. */ ! .diff del { background: #f99; } ! .diff ins { background: #9f9; } ! ! /* For emacs users |