curve-retentivity.scss 943 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. $color: #c0c4cc;
  2. $bgColor: #232526;
  3. $hover-color: #304156;
  4. .curve_statistical_box {
  5. display: flex;
  6. overflow-y: auto;
  7. height: 100%;
  8. .station_tree {
  9. min-width: 200px;
  10. width: 220px;
  11. max-width: 450px;
  12. overflow-y: auto;
  13. height: calc(100vh - 70px);
  14. border-right: 1px solid #606266;
  15. overflow-y: auto;
  16. @import './tree-data.scss';
  17. // 禁用
  18. .is_disabled {
  19. color: #606266;
  20. cursor: not-allowed;
  21. }
  22. }
  23. .charts {
  24. flex: 1;
  25. width: 100%;
  26. box-sizing: border-box;
  27. overflow-y: hidden;
  28. .show_org {
  29. padding: 3px;
  30. font-size: 28px;
  31. color: #909399;
  32. cursor: pointer;
  33. }
  34. .times {
  35. display: flex;
  36. margin-top: 5px;
  37. }
  38. .charts_box {
  39. display: flex;
  40. flex-direction: column;
  41. height: calc(100% - 50px);
  42. max-width: calc(100% - 15px);
  43. box-sizing: border-box;
  44. background-color: #1f1f1f;
  45. .curve {
  46. flex: 1;
  47. width: 100%;
  48. }
  49. }
  50. }
  51. }