debug.scss in WPIDE – File Manager & Code Editor 3.5.9, at freemius/assets/scss/admin/debug.scss
| 1 | @import "../start"; |
| 2 | @import "tag"; |
| 3 | |
| 4 | .fs-switch-label |
| 5 | { |
| 6 | font-size: 20px; |
| 7 | line-height: 31px; |
| 8 | margin: 0 5px; |
| 9 | } |
| 10 | |
| 11 | .fs-debug-table-toggle-button { |
| 12 | font-size: 1.2em; |
| 13 | cursor: pointer; |
| 14 | background: transparent; |
| 15 | border: none; |
| 16 | } |
| 17 | |
| 18 | .fs-debug-table { |
| 19 | overflow: hidden; |
| 20 | } |
| 21 | |
| 22 | #fs_log_book { |
| 23 | table { |
| 24 | font-family: Consolas,Monaco,monospace; |
| 25 | font-size: 12px; |
| 26 | |
| 27 | th { |
| 28 | color: #ccc; |
| 29 | } |
| 30 | |
| 31 | tr { |
| 32 | background: #232525; |
| 33 | |
| 34 | &.alternate { |
| 35 | background: #2b2b2b; |
| 36 | } |
| 37 | |
| 38 | td { |
| 39 | &.fs-col--logger { |
| 40 | color: #5a7435; |
| 41 | } |
| 42 | &.fs-col--type { |
| 43 | color: #ffc861; |
| 44 | } |
| 45 | &.fs-col--function { |
| 46 | color: #a7b7b1; |
| 47 | font-weight: bold; |
| 48 | } |
| 49 | &.fs-col--message { |
| 50 | &, a |
| 51 | { |
| 52 | color: #9a73ac !important; |
| 53 | } |
| 54 | } |
| 55 | &.fs-col--file { |
| 56 | color: #d07922; |
| 57 | } |
| 58 | &.fs-col--timestamp { |
| 59 | color: #6596be; |
| 60 | } |
| 61 | } |
| 62 | } |
| 63 | } |
| 64 | } |