index.css 957 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. @import url("../static/vendor/codemirror/codemirror.css");
  2. @import url("../static/css/bootstrap.min.css");
  3. .wp-json {
  4. width:auto;
  5. }
  6. .wp-json .mod-json {
  7. position: absolute;
  8. top: 60px;
  9. bottom: 0;
  10. right:0;
  11. left:0;
  12. }
  13. body[browser-extension] .wp-json .mod-json {
  14. top: 60px;
  15. }
  16. .wp-json .mod-json .panel-txt {
  17. position: absolute;
  18. width: 500px;
  19. top: 15px;
  20. bottom: 0;
  21. }
  22. .wp-json .panel-body {
  23. padding:15px 0;
  24. }
  25. .wp-json .CodeMirror-scroll {
  26. min-height: 550px;
  27. }
  28. .box-wrapper-left {
  29. height: 100%;
  30. padding:0 5px 0 0;
  31. }
  32. .box-wrapper-right {
  33. height: 100%;
  34. padding:0 0 0 5px;
  35. }
  36. #jsonSourceLeft, #jsonSourceRight, .CodeMirror {
  37. height: calc(100%);
  38. font-size: 10px;
  39. }
  40. .x-error {
  41. color: #1f0606;
  42. font-size: 12px;
  43. margin-left: 30px;
  44. }
  45. .x-error .x-hlt {
  46. color:#f00;
  47. font-weight: bold;
  48. }
  49. .x-error .x-hlt1 {
  50. color:#f00;
  51. }