force.scss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. $color: #c0c4cc;
  2. $bgColor: #232526;
  3. $hover-color: #304156;
  4. .force_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. .show_org {
  26. padding: 3px;
  27. font-size: 28px;
  28. color: #909399;
  29. cursor: pointer;
  30. }
  31. .times {
  32. display: flex;
  33. margin-top: 5px;
  34. .threshold {
  35. margin-left: auto;
  36. }
  37. }
  38. #line_chart {
  39. width: 100%;
  40. height: calc(100% - 80px);
  41. max-width: calc(100% - 5px);
  42. }
  43. .refer_curve_tools {
  44. display: flex;
  45. margin: 3px 0;
  46. .x_y_val {
  47. text-align: center;
  48. display: flex;
  49. span {
  50. padding: 1px;
  51. }
  52. .x_val,
  53. .y_val {
  54. border: 1px solid #909399;
  55. margin: 3px;
  56. border-radius: 3px;
  57. }
  58. .left:hover,
  59. .right:hover {
  60. cursor: pointer;
  61. color: #409eff;
  62. user-select: none;
  63. }
  64. .x,
  65. .y {
  66. color: #409eff;
  67. border-left: 1px solid #909399;
  68. border-right: 1px solid #909399;
  69. user-select: none;
  70. }
  71. }
  72. }
  73. }
  74. .setting_box {
  75. padding: 10px;
  76. text-align: left;
  77. // el-dialog不居中
  78. /deep/ .el-dialog {
  79. margin: 0;
  80. }
  81. /deep/ .el-tabs {
  82. border: 1px dashed #606266;
  83. padding: 20px;
  84. margin-bottom: 10px;
  85. }
  86. /deep/ .el-tabs__item {
  87. color: $color;
  88. }
  89. /deep/ .el-tabs__item.is-active {
  90. color: #409eff;
  91. }
  92. // tabs下面的横线
  93. /deep/ .el-tabs__nav-wrap::after {
  94. background-color: $hover-color;
  95. }
  96. /deep/ .el-tabs__content {
  97. .el-radio__label {
  98. color: $color;
  99. }
  100. .el-radio__input.is-checked + .el-radio__label {
  101. color: #409eff;
  102. }
  103. .el-input-number__decrease,
  104. .el-input-number__increase {
  105. background: $bgColor;
  106. border-left-color: #606266;
  107. }
  108. .el-input-number__increase {
  109. border-bottom-color: #606266;
  110. }
  111. p {
  112. margin: 12px 0;
  113. }
  114. p.no_show {
  115. visibility: hidden;
  116. margin: 8px 0;
  117. }
  118. .mark {
  119. color: red;
  120. }
  121. .position_left {
  122. padding-left: 8px;
  123. }
  124. }
  125. }
  126. }