Last active
September 4, 2023 06:16
-
-
Save corean/dd89e5200cfe183ebc9b4c3fa92d45ab to your computer and use it in GitHub Desktop.
debugbar.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* debugbar.css */ | |
body div.phpdebugbar { | |
font-size: 10px; | |
} | |
body div.phpdebugbar-header > div > * { | |
font-size: 10px; | |
padding: 2px 5px; | |
} | |
body div.phpdebugbar-header { | |
min-height: 10px; | |
line-height: 12px; | |
padding-left: 35px; | |
} | |
body a.phpdebugbar-tab span.phpdebugbar-badge { | |
vertical-align: 0px; | |
padding: 1px 5px; | |
background: #f4645f; | |
font-size: 9px; | |
color: #fff; | |
border-radius: 10px; | |
} | |
body div.phpdebugbar-widgets-messages li.phpdebugbar-widgets-list-item span.phpdebugbar-widgets-collector, div.phpdebugbar-widgets-messages li.phpdebugbar-widgets-list-item span.phpdebugbar-widgets-label { | |
font-size: 10px; | |
padding: 2px 4px; | |
margin: 0 2px; | |
} | |
body ul.phpdebugbar-widgets-timeline li span.phpdebugbar-widgets-label, ul.phpdebugbar-widgets-timeline li span.phpdebugbar-widgets-collector { | |
font-size: 9px; | |
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace; | |
top: 0; | |
left: 10px; | |
} | |
body dl.phpdebugbar-widgets-kvlist dt { | |
width: 150px; | |
min-height: 12px; | |
padding: 7px 5px; | |
line-height: 12px; | |
} | |
body dl.phpdebugbar-widgets-kvlist dd { | |
min-height: 12px; | |
margin-left: 160px; | |
padding: 7px 5px; | |
line-height: 12px; | |
} | |
body div.phpdebugbar-openhandler table { | |
width: 100%; | |
table-layout: fixed; | |
font-size: 11px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment