[Jspro-cvs] jsPro/debug debug.css,1.2,1.3
Brought to you by:
wigleys
|
From: <gat...@us...> - 2003-09-14 08:55:11
|
Update of /cvsroot/jspro/jsPro/debug
In directory sc8-pr-cvs1:/tmp/cvs-serv32557/debug
Modified Files:
debug.css
Log Message:
simplified some styles; added a generic font, since all systems may not have verdana
Index: debug.css
===================================================================
RCS file: /cvsroot/jspro/jsPro/debug/debug.css,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** debug.css 3 Sep 2003 09:20:01 -0000 1.2
--- debug.css 14 Sep 2003 08:55:07 -0000 1.3
***************
*** 1,3 ****
! /* +-------------------------------------------------------------------------+
* | jsPro - Debug Window Stylesheet |
* +-------------------------------------------------------------------------+
--- 1,4 ----
! /**
! * +-------------------------------------------------------------------------+
* | jsPro - Debug Window Stylesheet |
* +-------------------------------------------------------------------------+
***************
*** 19,22 ****
--- 20,24 ----
* +-------------------------------------------------------------------------+
* | Authors: Stuart Wigley <stu...@ya...> |
+ * | Randolph Fielding <gat...@ci...> |
* +-------------------------------------------------------------------------+
* $Id$
***************
*** 25,58 ****
body {
! font-family: Verdana;
! font-size: 9pt;
! margin: 0;
}
-
input {
! color: #000066;
! background-color: #dddddd;
! border: 1px solid #aaaaaa;
}
-
table {
! border-spacing: 0; /*specifically for mozilla*/
! border-collapse: collapse; /*specifically for IE6*/
width: 400px;
}
-
th {
! border-bottom: 2px solid #000000;
! background-color: #dddddd;
padding: 2px;
text-align: left;
}
-
tr {
! border: 1px solid #000000;
font-size: 9pt;
! }
--- 27,55 ----
body {
! font: 9pt Verdana, sans-serif;
! margin: 0px;
}
input {
! background-color: #DDD;
! border: 1px solid #AAA;
! color: #006;
}
table {
! border-collapse: collapse; /* specifically for IE6 */
! border-spacing: 0px; /* specifically for mozilla */
width: 400px;
}
th {
! background-color: #DDD;
! border-bottom: 2px solid black;
padding: 2px;
text-align: left;
}
tr {
! border: 1px solid black;
font-size: 9pt;
! }
\ No newline at end of file
|