1
0
mirror of https://github.com/maximebf/php-debugbar.git synced 2025-01-16 21:08:34 +01:00

Added display:block to list items

It's realistic (for example: fresh laravel installation with default inline style display:inline) that someone will globally change the <li> items, but this will mess up the debugbar.
This commit is contained in:
ciruz 2013-10-15 09:42:05 +02:00
parent ff0d9a32cf
commit b5bcafb3e3

View File

@ -1,4 +1,3 @@
ul.phpdebugbar-widgets-list {
margin: 0;
padding: 0;
@ -124,6 +123,7 @@ ul.phpdebugbar-widgets-timeline {
height: 20px;
position: relative;
border-bottom: 1px solid #eee;
display: block;
}
ul.phpdebugbar-widgets-timeline li:hover {
background: #fafafa;
@ -289,4 +289,4 @@ div.phpdebugbar-widgets-mails li.phpdebugbar-widgets-list-item pre.phpdebugbar-w
padding: 5px;
border: 1px solid #ddd;
font-family: monospace;
}
}