数据可视化大屏
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

s1.component.less 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. .sys-status-title{
  2. font-size: 18px;
  3. font-weight: 600;
  4. color: #94DDF3;
  5. text-align: center;
  6. }
  7. .ag-theme-datav {
  8. --ag-border-color: #74FAFB;
  9. --ag-foreground-color: #74FAFB;
  10. --ag-background-color: #0A1632;
  11. --ag-header-foreground-color: #74FAFB;
  12. --ag-header-background-color: #0A1632;
  13. --ag-odd-row-background-color: #0A1632;
  14. --ag-header-column-resize-handle-color: rgb(126 46 132);
  15. --ag-font-size: 17px;
  16. --ag-font-family: monospace;
  17. height: 6rem;
  18. }
  19. .centered-element {
  20. display: flex;
  21. align-items: center;
  22. justify-content: center;
  23. height: 100%; /* 如果需要垂直居中,可以设置高度为 100% */
  24. }
  25. .status-container {
  26. display: flex;
  27. align-items: center;
  28. padding: 0.5rem;
  29. }
  30. .status-circle {
  31. width: 24px;
  32. height: 24px;
  33. border-radius: 50%;
  34. &.red{
  35. background-color: red;
  36. }
  37. &.green{
  38. background-color:green;
  39. }
  40. }
  41. .status-text {
  42. margin-left: 10px; /* 调整文字与圆形之间的间距 */
  43. font-size: 18px;
  44. font-weight: 600;
  45. color: #74FAFB;
  46. }
  47. .progress-container{
  48. display: flex;
  49. color: white;
  50. }
  51. .progress-display{
  52. color: white;
  53. text-align: right;
  54. }
  55. .statistic-item-container{
  56. display: flex;
  57. padding: 1rem 0;
  58. color: white;
  59. }
  60. /* 设置 Checkbox 组件中文字的颜色 */
  61. ::ng-deep .ant-checkbox-wrapper input {
  62. color: red; /* 这里设置文字颜色为红色,你可以根据需要修改颜色值 */
  63. }
  64. // ::ng-deep .ant-checkbox-inner::after {
  65. // color: white;colorcolorcolorcolorcolor
  66. // }
  67. // ::ng-deep .ant-checkbox-input:focus + .ant-checkbox-inner::after {
  68. // border-color: #1890ff;border-colorborder-colorborder-colorborder-colorborder-color
  69. // }