Skip to content

Commit

Permalink
More pleasing display of table elements
Browse files Browse the repository at this point in the history
In the Queries tab, we can see that the blocks that display time of the request and the name of the database, constantly jumped in their seats. This amendment corrects this problem
  • Loading branch information
believer-ufa committed Feb 4, 2016
1 parent fa9ed25 commit 029219e
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/Resources/laravel-debugbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,26 @@ ul.phpdebugbar-widgets-list li.phpdebugbar-widgets-list-item {
border: none;
font-family: inherit;
overflow: visible;
display: flex;
}

ul.phpdebugbar-widgets-list li.phpdebugbar-widgets-list-item .phpdebugbar-widgets-sql {
flex: 1 1 auto;
}

ul.phpdebugbar-widgets-list li.phpdebugbar-widgets-list-item .phpdebugbar-widgets-duration {
flex: 0 0 auto;
}

ul.phpdebugbar-widgets-list li.phpdebugbar-widgets-list-item .phpdebugbar-widgets-database {
flex: 0 0 auto;
}

ul.phpdebugbar-widgets-list li.phpdebugbar-widgets-list-item .phpdebugbar-widgets-params {
flex: 1 1 auto;
order: -1;
width: auto;
max-width: 200px;
}

ul.phpdebugbar-widgets-list li.phpdebugbar-widgets-list-item:nth-child(even) {
Expand Down

0 comments on commit 029219e

Please sign in to comment.