| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- .debug-dum {
- background: #f4f4f4;
- padding: 10px;
- border: 1px solid #ddd;
- font-size: 14px;
- }
- #debugger-logs {
- position: fixed;
- z-index: 999;
- bottom: 0;
- left: 0;
- width: 100%;
- max-height: 90%;
- overflow-y: auto;
- background: #333;
- color: #fff;
- font-size: 12px;
- padding: 10px;
- display: none;
- }
- .debug-renderLogs-header {
- text-align: right;
- padding: 5px;
- }
- .debug-renderLogs-print {
- padding: 5px 0;
- }
- .debug-renderLogs-button {
- position: fixed;
- z-index: 999;
- bottom: 0;
- right: 0;
- background: #333;
- color: #fff;
- border: none;
- padding: 10px;
- cursor: pointer;
- }
- .debug-head-console {
- border-radius: 3px 3px 0 0;
- padding: 5px 10px;
- background-color:#b4b4b4;
- color:rgb(58, 58, 58);
- }
- .debug-console {
- border-radius: 0 0 3px 3px;
- background-color:#D3D3D3;
- padding: 10px;
- }
- .debug-console-key {
- color: blueviolet
- }
- .debug-console-value {
- color: red;
- }
- .debug-console-capsule {
- color: black;
- }
- .log-entry span.variable {
- color: #56b6c2;
- }
- .log-entry span.function {
- color: #61afef;
- }
- .debug-badge {
- padding:10px;
- font-size:1em;
- background-color:#343a40;
- text-decoration: none;
- color:white;
- }
- .debug-badge:hover {
- color:rgb(197, 197, 197);
- background-color:#485561;
- }
|