Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions admin/css/debug-toolbar/toolbar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,31 @@
}
}

@media screen and (max-width: 768px) {
#debug-bar {
table {
display: block;
overflow-x: auto;
font-size: 12px;
margin: 5px 5px 10px 5px;

td,
th {
padding: 4px 6px;
}
}

.timeline {
display: block;
white-space: nowrap;
font-size: 12px;
}

.toolbar {
overflow-x: auto;
}
}
}

// THEMES
// ========================================================================== */
Expand Down
20 changes: 20 additions & 0 deletions system/Debug/Toolbar/Views/toolbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,26 @@
display: none !important;
}
}
@media screen and (max-width: 768px) {
#debug-bar table {
display: block;
overflow-x: auto;
font-size: 12px;
margin: 5px 5px 10px 5px;
}
#debug-bar table td,
#debug-bar table th {
padding: 4px 6px;
}
#debug-bar .timeline {
display: block;
white-space: nowrap;
font-size: 12px;
}
#debug-bar .toolbar {
overflow-x: auto;
}
}
#debug-icon {
background-color: #FFFFFF;
box-shadow: 0 0 4px #DFDFDF;
Expand Down