Dag.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. .app {
  2. font-family: sans-serif;
  3. padding: 0;
  4. display: flex;
  5. position: relative;
  6. height: 100%;
  7. }
  8. .app-stencil {
  9. width: 200px;
  10. border: 1px solid #f0f0f0;
  11. position: relative;
  12. }
  13. .app-content {
  14. flex: 3;
  15. height: 100%;
  16. margin-left: 8px;
  17. margin-right: 8px;
  18. position: relative;
  19. box-shadow: 0 0 10px 1px #e9e9e9;
  20. }
  21. .app-graph {
  22. height: 100% !important;
  23. width: auto !important;
  24. }
  25. .x6-graph-scroller {
  26. border: 1px solid #f0f0f0;
  27. margin-left: -1px;
  28. }
  29. .app-tool {
  30. position: absolute;
  31. top: 20px;
  32. left: 20px;
  33. background: #edf0f6;
  34. /* left: 0px; */
  35. /* left: 220px; */
  36. }
  37. .table_toolbar {
  38. display: flex;
  39. justify-content: flex-end;
  40. font-size: 12px;
  41. font-family: PingFangSC-Medium, PingFang SC;
  42. font-weight: 500;
  43. color: #4a4a4a;
  44. line-height: 20px;
  45. margin-bottom: 20px;
  46. }
  47. .toolbar_label {
  48. font-family: PingFangSC-Regular, PingFang SC;
  49. font-weight: 400;
  50. color: #7d7d7d;
  51. margin: 0 24px 0 16px;
  52. }
  53. .log {
  54. background-color: #012b36;
  55. height: 650px;
  56. overflow-y: auto;
  57. color: #638691;
  58. padding: 8px 10px;
  59. -ms-overflow-style: none; /* IE 10+ */
  60. scrollbar-width: none; /* Firefox */
  61. }
  62. ::-webkit-scrollbar {
  63. display: none; /* Chrome Safari */
  64. }