Skip to content

Commit 029219e

Browse files
committed
More pleasing display of table elements
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
1 parent fa9ed25 commit 029219e

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

src/Resources/laravel-debugbar.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,26 @@ ul.phpdebugbar-widgets-list li.phpdebugbar-widgets-list-item {
197197
border: none;
198198
font-family: inherit;
199199
overflow: visible;
200+
display: flex;
201+
}
202+
203+
ul.phpdebugbar-widgets-list li.phpdebugbar-widgets-list-item .phpdebugbar-widgets-sql {
204+
flex: 1 1 auto;
205+
}
206+
207+
ul.phpdebugbar-widgets-list li.phpdebugbar-widgets-list-item .phpdebugbar-widgets-duration {
208+
flex: 0 0 auto;
209+
}
210+
211+
ul.phpdebugbar-widgets-list li.phpdebugbar-widgets-list-item .phpdebugbar-widgets-database {
212+
flex: 0 0 auto;
213+
}
214+
215+
ul.phpdebugbar-widgets-list li.phpdebugbar-widgets-list-item .phpdebugbar-widgets-params {
216+
flex: 1 1 auto;
217+
order: -1;
218+
width: auto;
219+
max-width: 200px;
200220
}
201221

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

0 commit comments

Comments
 (0)