lightmatrix1.less 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. @import '../setting.less';
  2. #appBody.light {
  3. // 基础矩阵
  4. .el-scrollbar__wrap {
  5. background: transparent;
  6. }
  7. .light-matrix {
  8. .panel {
  9. background : #fff;
  10. border-radius: @borderRaduis;
  11. border-color : #fff;
  12. transition : @transition;
  13. .item.write {
  14. color : #000;
  15. font-weight: 700;
  16. transition : @transition;
  17. }
  18. .item.blue {
  19. color : rgb(53, 64, 164);
  20. font-weight: 700;
  21. transition : @transition;
  22. }
  23. .item.green,
  24. .item.greenv {
  25. color : rgb(0, 179, 54);
  26. font-weight: 700;
  27. transition : @transition;
  28. }
  29. .item.pink {
  30. color : rgb(197, 50, 200);
  31. font-weight: 700;
  32. transition : @transition;
  33. }
  34. .item.red {
  35. color : rgb(187, 52, 57);
  36. font-weight: 700;
  37. transition : @transition;
  38. }
  39. .item.orange {
  40. color : rgb(221, 109, 9);
  41. font-weight: 700;
  42. transition : @transition;
  43. }
  44. .item.write {
  45. color : rgb(2, 2, 2);
  46. font-weight: 700;
  47. transition : @transition;
  48. }
  49. .item.gray {
  50. color : rgb(77, 85, 87);
  51. font-weight: 700;
  52. transition : @transition;
  53. }
  54. }
  55. .panel-body {
  56. background: @white;
  57. .gray{
  58. color: @white;
  59. }
  60. .green{
  61. color: @green;
  62. }
  63. }
  64. .card-panel .card-left .tag {
  65. color: @black;
  66. }
  67. .panel-box>div {
  68. padding : 4px 0 8px 0;
  69. background : #fff;
  70. margin-bottom: 4px;
  71. border-radius: 8px;
  72. overflow : hidden;
  73. }
  74. .panel-box .panel-title .panel-title-name {
  75. font-size : 1.296vh;
  76. color : rgb(5, 187, 76);
  77. font-weight: bold;
  78. background : #fff;
  79. }
  80. .panel-box .sub-title-item {
  81. .sub-title {
  82. color : #000;
  83. transition: @transition;
  84. }
  85. .sub-count.write {
  86. color : rgb(0, 0, 0);
  87. font-weight: 700;
  88. transition : @transition;
  89. }
  90. .sub-count.green {
  91. color : rgb(5, 187, 76);
  92. font-weight: 700;
  93. transition : @transition;
  94. }
  95. .sub-count.blue {
  96. color : rgb(53, 64, 164);
  97. font-weight: 700;
  98. transition : @transition;
  99. }
  100. .sub-count.purple {
  101. color : rgb(202, 68, 205);
  102. font-weight: 700;
  103. transition : @transition;
  104. }
  105. .sub-count.red {
  106. color : rgb(187, 52, 57);
  107. font-weight: 700;
  108. transition : @transition;
  109. }
  110. .sub-count.orange {
  111. color : rgb(221, 109, 9);
  112. font-weight: 700;
  113. transition : @transition;
  114. }
  115. .sub-count.gray {
  116. color : rgb(24, 24, 24);
  117. transition: @transition;
  118. }
  119. }
  120. .panel-box .panel-title .svg-icon.svg-icon-green svg use {
  121. fill : rgb(5, 187, 76);
  122. transition: @transition;
  123. }
  124. }
  125. }