[Firebug-cvs] firebug/web/postgres db_table_select.php,1.3,1.4 firebug.css,1.1,1.2
Brought to you by:
doolin
From: Karthik D. <da...@us...> - 2005-06-07 01:19:13
|
Update of /cvsroot/firebug/firebug/web/postgres In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21142 Modified Files: db_table_select.php firebug.css Log Message: More updates to the css stylesheet Index: firebug.css =================================================================== RCS file: /cvsroot/firebug/firebug/web/postgres/firebug.css,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** firebug.css 7 Jun 2005 00:43:19 -0000 1.1 --- firebug.css 7 Jun 2005 01:19:03 -0000 1.2 *************** *** 1,23 **** - table.header { - font-weight:bold; - font-size:30pt; - } - - table.code { - background-color:#ffff66; - border:none; - width:80%; - } - table.db_schema { background-color:#ffff66; ! border-collapse:collapse; ! border-top:double; ! border-bottom:double; ! border-right:double; ! border-left:double; ! border-style:solid; ! align:center; /* width:80%; --- 1,7 ---- table.db_schema { background-color:#ffff66; ! border: 3px solid black; ! align: center; /* width:80%; *************** *** 26,49 **** } - table.new { - width:50%; - } - - - tr.code { - /*background-color:#ffff66; */ - } - - tr.msg_header { - background-color:#ffcc00; - text-align:center; - } - - td.code { - padding:5px; - width:100%; - } - - h1 { background-color:#ffcc00; --- 10,13 ---- Index: db_table_select.php =================================================================== RCS file: /cvsroot/firebug/firebug/web/postgres/db_table_select.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** db_table_select.php 7 Jun 2005 00:43:19 -0000 1.3 --- db_table_select.php 7 Jun 2005 01:19:02 -0000 1.4 *************** *** 64,68 **** $cols = pg_numrows($stat); for ($i=0 ; $i < $cols; $i++) { ! print ("<td><b><align=center><h2>"); $header = pg_fetch_row($stat,$i); print $header[0]; --- 64,68 ---- $cols = pg_numrows($stat); for ($i=0 ; $i < $cols; $i++) { ! print ("<td style=\"border: solid\"><b><align=center><h2>"); $header = pg_fetch_row($stat,$i); print $header[0]; *************** *** 81,85 **** function print_row($item2,$key) { ! print ("<td><align=\"center\">\n"); echo "$item2\n"; print ("</td>\n"); --- 81,85 ---- function print_row($item2,$key) { ! print ("<td style=\"border-right: solid\" align=\"center\">\n"); echo "$item2\n"; print ("</td>\n"); |