1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-10 08:04:32 +02:00

updated examples & Debugger

This commit is contained in:
David Grudl
2011-07-01 08:06:36 +02:00
parent ac1f45b397
commit 9c59fee929
18 changed files with 249 additions and 99 deletions

View File

@@ -16,12 +16,6 @@ h2 {
font-size: 150%;
}
pre.dump {
border: 1px solid silver;
padding: 1em;
margin: 1em 0;
}
a {
color: #000080;
}
@@ -45,3 +39,26 @@ table.dump th {
color: #525b37;
background: #e3e9ba;
}
/* dump() */
pre.nette-dump, pre.dump {
color: #444; background: white;
border: 1px solid silver;
padding: 1em;
margin: 1em 0;
}
pre.nette-dump .php-array, pre.nette-dump .php-object {
color: #C22;
}
pre.nette-dump .php-string {
color: #080;
}
pre.nette-dump .php-int, pre.nette-dump .php-float {
color: #37D;
}
pre.nette-dump .php-null, pre.nette-dump .php-bool {
color: black;
}
pre.nette-dump .php-visibility {
font-size: 85%; color: #999;
}