Skip to content

Commit bac451c

Browse files
committed
Responsive CSS for debugbar
http://i.imgur.com/5thBFc1.png
1 parent 859e00c commit bac451c

File tree

13 files changed

+82
-0
lines changed

13 files changed

+82
-0
lines changed

src/DebugBar/Bridge/DoctrineCollector.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ public function getWidgets()
8484
{
8585
return array(
8686
"database" => array(
87+
"icone" => "arrow-right",
8788
"widget" => "PhpDebugBar.Widgets.SQLQueriesWidget",
8889
"map" => "doctrine",
8990
"default" => "[]"

src/DebugBar/Bridge/MonologCollector.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ public function getWidgets()
104104
$name = $this->getName();
105105
return array(
106106
$name => array(
107+
"icone" => "suitcase",
107108
"widget" => "PhpDebugBar.Widgets.MessagesWidget",
108109
"map" => "$name.records",
109110
"default" => "[]"

src/DebugBar/Bridge/PropelCollector.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,7 @@ public function getWidgets()
266266
{
267267
return array(
268268
"propel" => array(
269+
"icon" => "bolt",
269270
"widget" => "PhpDebugBar.Widgets.SQLQueriesWidget",
270271
"map" => "propel",
271272
"default" => "[]"

src/DebugBar/Bridge/SwiftMailer/SwiftMailCollector.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ public function getWidgets()
7373
{
7474
return array(
7575
'emails' => array(
76+
'icone' => 'inbox',
7677
'widget' => 'PhpDebugBar.Widgets.MailsWidget',
7778
'map' => 'swiftmailer_mails.mails',
7879
'default' => '[]',

src/DebugBar/Bridge/Twig/TwigCollector.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ public function getWidgets()
7373
{
7474
return array(
7575
'twig' => array(
76+
'icon' => 'leaf',
7677
'widget' => 'PhpDebugBar.Widgets.TemplatesWidget',
7778
'map' => 'twig',
7879
'default' => '[]'

src/DebugBar/DataCollector/ConfigCollector.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ public function getWidgets()
6767
$name = $this->getName();
6868
return array(
6969
"$name" => array(
70+
"icon" => "gear",
7071
"widget" => "PhpDebugBar.Widgets.VariableListWidget",
7172
"map" => "$name",
7273
"default" => "{}"

src/DebugBar/DataCollector/ExceptionsCollector.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ public function getWidgets()
8787
{
8888
return array(
8989
'exceptions' => array(
90+
'icon' => 'bug',
9091
'widget' => 'PhpDebugBar.Widgets.ExceptionsWidget',
9192
'map' => 'exceptions.exceptions',
9293
'default' => '[]'

src/DebugBar/DataCollector/MessagesCollector.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ public function getWidgets()
128128
$name = $this->getName();
129129
return array(
130130
"$name" => array(
131+
'icon' => 'list-alt',
131132
"widget" => "PhpDebugBar.Widgets.MessagesWidget",
132133
"map" => "$name.messages",
133134
"default" => "[]"

src/DebugBar/DataCollector/PDO/PDOCollector.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ public function getWidgets()
161161
{
162162
return array(
163163
"database" => array(
164+
"icon" => "inbox",
164165
"widget" => "PhpDebugBar.Widgets.SQLQueriesWidget",
165166
"map" => "pdo",
166167
"default" => "[]"

src/DebugBar/DataCollector/RequestDataCollector.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ public function getWidgets()
4747
{
4848
return array(
4949
"request" => array(
50+
"icon" => "tags",
5051
"widget" => "PhpDebugBar.Widgets.VariableListWidget",
5152
"map" => "request",
5253
"default" => "{}"

0 commit comments

Comments
 (0)