2
0

dump.css 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. #uniqId.__beautify-var-dumper {
  2. box-sizing: border-box;
  3. background-color: #24292e;
  4. color: #f8f8f2;
  5. padding: 10px;
  6. border-radius: 5px;
  7. font-family: monospace;
  8. font-size: 13px;
  9. white-space: pre-wrap;
  10. overflow: auto;
  11. width: 100%;
  12. margin-bottom: 5px;
  13. }
  14. #uniqId.__beautify-var-dumper .key {
  15. color: #e89d69;
  16. }
  17. #uniqId.__beautify-var-dumper .string {
  18. color: #79b8ff;
  19. }
  20. #uniqId.__beautify-var-dumper .float, #uniqId.__beautify-var-dumper .int {
  21. color: #ae81ff;
  22. }
  23. #uniqId.__beautify-var-dumper .boolean {
  24. color: #f92672;
  25. }
  26. #uniqId.__beautify-var-dumper .null {
  27. color: #f92672;
  28. }
  29. #uniqId.__beautify-var-dumper .type {
  30. color: #e1f7fc;
  31. font-style: italic;
  32. font-size: 12px;
  33. }
  34. #uniqId.__beautify-var-dumper .caret {
  35. cursor: pointer;
  36. -webkit-user-select: none; /* Safari 3.1+ */
  37. -moz-user-select: none; /* Firefox 2+ */
  38. -ms-user-select: none; /* IE 10+ */
  39. user-select: none;
  40. font-style: normal !important;
  41. }
  42. /* Create the caret/arrow with a unicode, and style it */
  43. #uniqId.__beautify-var-dumper .caret::before {
  44. content: "\25B6";
  45. color: #7ce3fa;
  46. display: inline-block;
  47. margin-right: 6px;
  48. }
  49. /* Rotate the caret/arrow icon when clicked on (using JavaScript) */
  50. #uniqId.__beautify-var-dumper .caret-down::before {
  51. -ms-transform: rotate(90deg); /* IE 9 */
  52. -webkit-transform: rotate(90deg); /* Safari */'
  53. transform: rotate(90deg);
  54. }
  55. /* Hide the nested list */
  56. #uniqId.__beautify-var-dumper .nested {
  57. display: none;
  58. }
  59. /* Show the nested list when the user clicks on the caret/arrow (with JavaScript) */
  60. #uniqId.__beautify-var-dumper .active {
  61. display: block;
  62. }