echartStyle.scss 930 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .bs-design-wrap{
  2. position: relative;
  3. width: 100%;
  4. height: 100%;
  5. background-color: rgba(0,0,0,0);
  6. border-radius: 4px;
  7. box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  8. box-sizing: border-box;
  9. }
  10. .title-box{
  11. height: 40px;
  12. padding: 10px 10px 0 0;
  13. box-sizing: border-box;
  14. .title {
  15. font-size: 14px;
  16. color: #333;
  17. font-weight: bold;
  18. border-left: 3px solid var(--bs-el-color-primary);
  19. padding-left: 16px;
  20. }
  21. .target-value{
  22. overflow-y: auto;
  23. height: 60px;
  24. font-weight: bold;
  25. width: 100%;
  26. font-size: 20px;
  27. color: #333;
  28. padding: 16px 0 0 22px;
  29. box-sizing: border-box;
  30. }
  31. }
  32. .el-icon-warning{
  33. color: #FFD600;
  34. }
  35. //.title-hover{
  36. // &:hover{
  37. // cursor: move;
  38. // }
  39. //}
  40. /*滚动条样式*/
  41. ::v-deep ::-webkit-scrollbar {
  42. width: 4px;
  43. border-radius: 4px;
  44. height: 4px;
  45. }
  46. ::v-deep ::-webkit-scrollbar-thumb {
  47. background: #dddddd !important;
  48. border-radius: 10px;
  49. }