[WTF CVS] wtf/static general.css,1.5,1.6 tracking.js,1.3,1.4
Brought to you by:
gryphonshafer
|
From: Jason <jbr...@us...> - 2006-11-06 16:47:04
|
Update of /cvsroot/wtf-tracker/wtf/static In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv19531/static Modified Files: general.css tracking.js Log Message: cleaned up file formatting Index: general.css =================================================================== RCS file: /cvsroot/wtf-tracker/wtf/static/general.css,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** general.css 3 Nov 2006 16:29:37 -0000 1.5 --- general.css 6 Nov 2006 16:46:56 -0000 1.6 *************** *** 31,35 **** font-size: 11pt; padding-top: 2px; ! margin: 0px 0px 8px 0px; } --- 31,35 ---- font-size: 11pt; padding-top: 2px; ! margin: 0px 0px 3px 0px; } *************** *** 38,65 **** } ! a.code_nav { text-decoration: none; display: block; - color: #000000; padding: 1px 3px 1px 3px; border: 1px solid #999999; - background-color: #fafafa; font-size: 11pt; margin: 0px 0px 8px 0px; } ! a:hover { background-color: #ccccff; color: #000000; } ! a.current_codeline { ! text-decoration: none; ! display: block; ! padding: 1px 3px 1px 3px; ! border: 1px solid #999999; ! font-size: 11pt; font-weight: bold; - margin: 0px 0px 8px 0px; background-color: #ffcccc; color: #000000; --- 38,62 ---- } ! span.codeline_header a { text-decoration: none; display: block; padding: 1px 3px 1px 3px; border: 1px solid #999999; font-size: 11pt; margin: 0px 0px 8px 0px; } ! a.codeline_nav { ! color: #000000; ! background-color: #fafafa; ! } ! ! a.codeline_nav:hover { background-color: #ccccff; color: #000000; } ! a.codeline_current { font-weight: bold; background-color: #ffcccc; color: #000000; Index: tracking.js =================================================================== RCS file: /cvsroot/wtf-tracker/wtf/static/tracking.js,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** tracking.js 3 Nov 2006 16:29:37 -0000 1.3 --- tracking.js 6 Nov 2006 16:46:56 -0000 1.4 *************** *** 392,410 **** //Javascript for expanding/contracting of specific codeline projects ! function expandCodelines(codeline_id, codeline_id_link) { ! var CD = document.getElementById(codeline_id).style; ! var isIE = window.ActiveXObject ? true : false; // ActiveX is only used in Internet Explorer // to open a codeline ! if (CD.display == 'none') { ! document.getElementById(codeline_id_link).className = 'current_codeline'; if (isIE) { ! CD.display = 'block'; } else { ! CD.display = 'table'; } // to close a codeline ! } else if (CD.display == 'block' || CD.display == 'table') { ! CD.display = 'none'; ! document.getElementById(codeline_id_link).className = 'code_nav'; } } --- 392,410 ---- //Javascript for expanding/contracting of specific codeline projects ! function expandCodelines( codeline_id, codeline_id_link ) { ! var codelineStyle = document.getElementById(codeline_id).style; ! var isIE = (window.ActiveXObject) ? true : false; // ActiveX is only used in Internet Explorer // to open a codeline ! if (codelineStyle.display == "none") { ! document.getElementById(codeline_id_link).className = 'codeline_current'; if (isIE) { ! codelineStyle.display = "block"; } else { ! codelineStyle.display = "table"; } // to close a codeline ! }else if ( codelineStyle.display == "block" || codelineStyle.display == "table" ) { ! codelineStyle.display = "none"; ! document.getElementById(codeline_id_link).className = 'codeline_nav'; } } |