315 lines
		
	
	
		
			8.1 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			315 lines
		
	
	
		
			8.1 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
| @charset "UTF-8";
 | |
| pre.phpdebugbar-widgets-code-block {
 | |
|   white-space: pre;
 | |
|   word-wrap: normal;
 | |
|   overflow: hidden;
 | |
| }
 | |
| 
 | |
| pre.phpdebugbar-widgets-code-block code {
 | |
|   display: block;
 | |
|   overflow: auto hidden;
 | |
| }
 | |
| 
 | |
| pre.phpdebugbar-widgets-code-block code.phpdebugbar-widgets-numbered-code {
 | |
|   padding: 5px;
 | |
| }
 | |
| 
 | |
| pre.phpdebugbar-widgets-code-block ul li.phpdebugbar-widgets-highlighted-line {
 | |
|   font-weight: bolder;
 | |
|   text-decoration: underline;
 | |
| }
 | |
| 
 | |
| pre.phpdebugbar-widgets-code-block ul li.phpdebugbar-widgets-highlighted-line span {
 | |
|   opacity: .15;
 | |
|   background: maroon;
 | |
|   min-width: calc(100% - 85px);
 | |
|   margin-left: 10px;
 | |
|   position: absolute;
 | |
| }
 | |
| 
 | |
| pre.phpdebugbar-widgets-code-block ul {
 | |
|   float: left;
 | |
|   text-align: right;
 | |
|   background: #cacaca;
 | |
|   border-right: 1px solid #aaa;
 | |
|   padding: 5px;
 | |
|   position: static;
 | |
| }
 | |
| 
 | |
| .phpdebugbar-widgets-kvlist span.phpdebugbar-widgets-filename, li.phpdebugbar-widgets-list-item span.phpdebugbar-widgets-filename {
 | |
|   float: right;
 | |
|   color: #888;
 | |
|   margin-left: 8px;
 | |
|   font-style: italic;
 | |
|   display: block;
 | |
| }
 | |
| 
 | |
| a.phpdebugbar-widgets-editor-link:hover {
 | |
|   color: #aaa;
 | |
| }
 | |
| 
 | |
| a.phpdebugbar-widgets-editor-link:before {
 | |
|   content: "";
 | |
|   margin-left: 4px;
 | |
|   margin-right: 4px;
 | |
|   font-family: PhpDebugbarFontAwesome;
 | |
|   font-size: 12px;
 | |
|   font-style: normal;
 | |
| }
 | |
| 
 | |
| ul.phpdebugbar-widgets-list {
 | |
|   margin: 0;
 | |
|   padding: 0;
 | |
|   font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace;
 | |
|   list-style: none;
 | |
| }
 | |
| 
 | |
| ul.phpdebugbar-widgets-list li.phpdebugbar-widgets-list-item {
 | |
|   border-bottom: 1px solid #eee;
 | |
|   padding: 3px;
 | |
|   position: relative;
 | |
|   overflow: hidden;
 | |
| }
 | |
| 
 | |
| ul.phpdebugbar-widgets-list li.phpdebugbar-widgets-list-item:hover {
 | |
|   background: #fafafa;
 | |
| }
 | |
| 
 | |
| div.phpdebugbar-widgets-messages {
 | |
|   height: 100%;
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| div.phpdebugbar-widgets-messages ul.phpdebugbar-widgets-list {
 | |
|   padding-bottom: 45px;
 | |
| }
 | |
| 
 | |
| div.phpdebugbar-widgets-messages li.phpdebugbar-widgets-list-item span.phpdebugbar-widgets-value:before {
 | |
|   margin-right: 8px;
 | |
|   font-family: PhpDebugbarFontAwesome;
 | |
|   font-size: 11px;
 | |
| }
 | |
| 
 | |
| div.phpdebugbar-widgets-messages li.phpdebugbar-widgets-list-item span.phpdebugbar-widgets-value.phpdebugbar-widgets-alert:before {
 | |
|   content: "";
 | |
|   color: #cbcf38;
 | |
| }
 | |
| 
 | |
| div.phpdebugbar-widgets-messages li.phpdebugbar-widgets-list-item span.phpdebugbar-widgets-value.phpdebugbar-widgets-debug:before {
 | |
|   content: "";
 | |
|   color: #78d79a;
 | |
| }
 | |
| 
 | |
| div.phpdebugbar-widgets-messages li.phpdebugbar-widgets-list-item span.phpdebugbar-widgets-value.phpdebugbar-widgets-warning:before, div.phpdebugbar-widgets-messages li.phpdebugbar-widgets-list-item span.phpdebugbar-widgets-value.phpdebugbar-widgets-emergency:before, div.phpdebugbar-widgets-messages li.phpdebugbar-widgets-list-item span.phpdebugbar-widgets-value.phpdebugbar-widgets-notice:before {
 | |
|   content: "";
 | |
|   color: #ecb03d;
 | |
| }
 | |
| 
 | |
| div.phpdebugbar-widgets-messages li.phpdebugbar-widgets-list-item span.phpdebugbar-widgets-value.phpdebugbar-widgets-error, div.phpdebugbar-widgets-messages li.phpdebugbar-widgets-list-item span.phpdebugbar-widgets-value.phpdebugbar-widgets-critical:before {
 | |
|   color: red;
 | |
| }
 | |
| 
 | |
| div.phpdebugbar-widgets-messages li.phpdebugbar-widgets-list-item span.phpdebugbar-widgets-value.phpdebugbar-widgets-error:before, div.phpdebugbar-widgets-messages li.phpdebugbar-widgets-list-item span.phpdebugbar-widgets-value.phpdebugbar-widgets-critical:before {
 | |
|   content: "";
 | |
| }
 | |
| 
 | |
| dl.phpdebugbar-widgets-kvlist dd.phpdebugbar-widgets-value pre.sf-dump, div.phpdebugbar-widgets-messages li.phpdebugbar-widgets-list-item pre.sf-dump {
 | |
|   display: inline-block !important;
 | |
| }
 | |
| 
 | |
| 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 {
 | |
|   float: right;
 | |
|   color: #888;
 | |
|   text-shadow: none;
 | |
|   background: none;
 | |
|   margin: 0 2px;
 | |
|   padding: 2px 4px;
 | |
|   font-size: 12px;
 | |
|   font-weight: normal;
 | |
|   text-decoration: none;
 | |
| }
 | |
| 
 | |
| div.phpdebugbar-widgets-messages li.phpdebugbar-widgets-list-item span.phpdebugbar-widgets-collector {
 | |
|   color: #555;
 | |
|   font-style: italic;
 | |
| }
 | |
| 
 | |
| div.phpdebugbar-widgets-messages div.phpdebugbar-widgets-toolbar {
 | |
|   background: #fff;
 | |
|   width: 100%;
 | |
|   position: fixed;
 | |
|   bottom: 0;
 | |
| }
 | |
| 
 | |
| div.phpdebugbar-widgets-messages li .phpdebugbar-widgets-label-called-from {
 | |
|   float: right;
 | |
|   color: #666;
 | |
|   border-bottom: 1px dotted #666;
 | |
|   padding-left: 5px;
 | |
| }
 | |
| 
 | |
| div.phpdebugbar-widgets-messages li .phpdebugbar-widgets-label-called-from:before {
 | |
|   content: "";
 | |
|   margin-right: 4px;
 | |
|   font-family: PhpDebugbarFontAwesome;
 | |
|   font-size: 12px;
 | |
| }
 | |
| 
 | |
| div.phpdebugbar-widgets-messages div.phpdebugbar-widgets-toolbar input {
 | |
|   box-shadow: none;
 | |
|   border: 0;
 | |
|   width: 50%;
 | |
|   margin: 0 0 0 7px;
 | |
| }
 | |
| 
 | |
| div.phpdebugbar-widgets-messages div.phpdebugbar-widgets-toolbar input:focus {
 | |
|   outline: none;
 | |
| }
 | |
| 
 | |
| div.phpdebugbar-widgets-messages div.phpdebugbar-widgets-toolbar a.phpdebugbar-widgets-filter {
 | |
|   float: right;
 | |
|   color: #fff;
 | |
|   background: #7cacd5;
 | |
|   border-radius: 4px;
 | |
|   margin: 0 2px;
 | |
|   padding: 2px 4px;
 | |
|   font-size: 12px;
 | |
|   text-decoration: none;
 | |
| }
 | |
| 
 | |
| div.phpdebugbar-widgets-messages div.phpdebugbar-widgets-toolbar a.phpdebugbar-widgets-filter.phpdebugbar-widgets-excluded {
 | |
|   color: #888;
 | |
|   background: #eee;
 | |
| }
 | |
| 
 | |
| dl.phpdebugbar-widgets-kvlist {
 | |
|   margin: 0;
 | |
| }
 | |
| 
 | |
| dl.phpdebugbar-widgets-kvlist dt {
 | |
|   float: left;
 | |
|   clear: both;
 | |
|   text-overflow: ellipsis;
 | |
|   white-space: nowrap;
 | |
|   border-top: 1px solid #eee;
 | |
|   width: 150px;
 | |
|   padding: 5px;
 | |
|   font-weight: bold;
 | |
|   overflow: hidden;
 | |
| }
 | |
| 
 | |
| dl.phpdebugbar-widgets-kvlist dd {
 | |
|   cursor: pointer;
 | |
|   border-top: 1px solid #eee;
 | |
|   min-height: 17px;
 | |
|   margin-left: 160px;
 | |
|   padding: 5px;
 | |
| }
 | |
| 
 | |
| dl.phpdebugbar-widgets-varlist, dl.phpdebugbar-widgets-htmlvarlist {
 | |
|   font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace;
 | |
| }
 | |
| 
 | |
| dl.phpdebugbar-widgets-htmlvarlist dd {
 | |
|   cursor: initial;
 | |
| }
 | |
| 
 | |
| ul.phpdebugbar-widgets-timeline {
 | |
|   margin: 0;
 | |
|   padding: 0;
 | |
|   list-style: none;
 | |
| }
 | |
| 
 | |
| ul.phpdebugbar-widgets-timeline .phpdebugbar-widgets-measure {
 | |
|   border-bottom: 1px solid #eee;
 | |
|   height: 20px;
 | |
|   display: block;
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| ul.phpdebugbar-widgets-timeline li:hover {
 | |
|   background: #fafafa;
 | |
| }
 | |
| 
 | |
| ul.phpdebugbar-widgets-timeline li span.phpdebugbar-widgets-label, ul.phpdebugbar-widgets-timeline li span.phpdebugbar-widgets-collector {
 | |
|   color: #555;
 | |
|   text-shadow: none;
 | |
|   white-space: pre;
 | |
|   background: none;
 | |
|   font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace;
 | |
|   font-size: 12px;
 | |
|   font-weight: normal;
 | |
|   position: absolute;
 | |
|   top: 4px;
 | |
|   left: 5px;
 | |
| }
 | |
| 
 | |
| ul.phpdebugbar-widgets-timeline li span.phpdebugbar-widgets-collector {
 | |
|   left: initial;
 | |
|   right: 5px;
 | |
| }
 | |
| 
 | |
| ul.phpdebugbar-widgets-timeline li span.phpdebugbar-widgets-value {
 | |
|   background: #3db9ec;
 | |
|   border-radius: 2px;
 | |
|   min-width: 1px;
 | |
|   height: 10px;
 | |
|   display: block;
 | |
|   position: absolute;
 | |
|   top: 5px;
 | |
| }
 | |
| 
 | |
| ul.phpdebugbar-widgets-timeline table.phpdebugbar-widgets-params {
 | |
|   border-collapse: collapse;
 | |
|   border: 1px solid #ddd;
 | |
|   width: 70%;
 | |
|   margin: 10px;
 | |
|   font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace;
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| ul.phpdebugbar-widgets-timeline table.phpdebugbar-widgets-params td {
 | |
|   border: 1px solid #ddd;
 | |
|   padding: 0 5px;
 | |
| }
 | |
| 
 | |
| ul.phpdebugbar-widgets-timeline table.phpdebugbar-widgets-params .phpdebugbar-widgets-name {
 | |
|   width: 20%;
 | |
|   font-weight: bold;
 | |
| }
 | |
| 
 | |
| div.phpdebugbar-widgets-exceptions li.phpdebugbar-widgets-list-item {
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| div.phpdebugbar-widgets-exceptions li.phpdebugbar-widgets-list-item span.phpdebugbar-widgets-message {
 | |
|   color: red;
 | |
|   display: block;
 | |
| }
 | |
| 
 | |
| div.phpdebugbar-widgets-exceptions li.phpdebugbar-widgets-list-item span.phpdebugbar-widgets-type {
 | |
|   font-weight: bold;
 | |
|   display: block;
 | |
|   position: absolute;
 | |
|   top: 4px;
 | |
|   right: 4px;
 | |
| }
 | |
| 
 | |
| div.phpdebugbar-widgets-exceptions li.phpdebugbar-widgets-list-item pre.phpdebugbar-widgets-file {
 | |
|   border: 1px solid #ddd;
 | |
|   margin: 10px;
 | |
|   padding: 5px;
 | |
|   font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace;
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| div.phpdebugbar-widgets-exceptions li.phpdebugbar-widgets-list-item span.phpdebugbar-widgets-filename {
 | |
|   float: none;
 | |
| }
 | |
| 
 | |
| ul.phpdebugbar-widgets-timeline table.phpdebugbar-widgets-params {
 | |
|   border: 0;
 | |
|   width: 99%;
 | |
|   display: table;
 | |
| }
 |