single-device.scss 698 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. $color: #c0c4cc;
  2. $bgColor: #232526;
  3. $hover-color: #304156;
  4. .single_device_box {
  5. display: flex;
  6. overflow-y: auto;
  7. height: 100%;
  8. .station_tree {
  9. min-width: 210px;
  10. max-width: 230px;
  11. overflow-y: auto;
  12. height: calc(100vh - 70px);
  13. border-right: 1px solid #606266;
  14. overflow-y: auto;
  15. @import './tree-data.scss';
  16. // 禁用
  17. .is_disabled {
  18. color: #606266;
  19. cursor: not-allowed;
  20. }
  21. }
  22. .charts {
  23. flex: 1;
  24. margin-top: 10px;
  25. .show_org {
  26. display: flex;
  27. padding: 3px;
  28. font-size: 28px;
  29. color: #909399;
  30. cursor: pointer;
  31. }
  32. #line_chart {
  33. width: 100%;
  34. height: calc(100% - 50px);
  35. max-width: calc(100% - 5px);
  36. }
  37. }
  38. }