index.less 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. @import './color.less';
  2. .title {
  3. text-align: center;
  4. font-weight: bold;
  5. padding: 4px 6px 6px;
  6. font-size: 16px;
  7. margin-bottom: 4px;
  8. position: relative;
  9. }
  10. .cell {
  11. text-align: center;
  12. background-color: #fafafa;
  13. color: rgb(212, 46, 46);
  14. }
  15. .middle {
  16. tr,
  17. td {
  18. font-size: 14px !important;
  19. }
  20. }
  21. .small {
  22. tr,
  23. td {
  24. font-size: 13px !important;
  25. }
  26. }
  27. .ranking {
  28. tr,
  29. td {
  30. font-size: 14px !important;
  31. span {
  32. font-size: 14px;
  33. }
  34. }
  35. }
  36. .large {
  37. tr,
  38. td {
  39. font-size: 14px !important;
  40. }
  41. }
  42. .item_img {
  43. width: 25px;
  44. border-radius: 2px;
  45. margin-right: 5px;
  46. background-color: #efefef;
  47. }
  48. .blue {
  49. background-color: cornflowerblue;
  50. }
  51. .cardtitle {
  52. position: relative;
  53. width: 100%;
  54. height: 100%;
  55. .text {
  56. width: 100%;
  57. height: 100%;
  58. text-align: center;
  59. }
  60. .cardTab {
  61. position: absolute;
  62. width: 400px;
  63. height: 100%;
  64. top: 0;
  65. left: 0;
  66. }
  67. }
  68. .unfollow {
  69. background-color: #fafafa;
  70. }
  71. .ant-table-row.expanded>.ant-table-cell {
  72. padding: 5px 16px !important;
  73. }
  74. .ant-table-row.error {
  75. background-color: #ffe9e9;
  76. }
  77. .ellipsisText {
  78. overflow: hidden;
  79. text-overflow: ellipsis;
  80. white-space: nowrap;
  81. display: block;
  82. }
  83. .components-table-resizable-column .react-resizable {
  84. position: relative;
  85. background-clip: padding-box;
  86. }
  87. .components-table-resizable-column .react-resizable-handle {
  88. position: absolute;
  89. width: 10px;
  90. height: 100%;
  91. bottom: 0;
  92. right: -9px;
  93. cursor: col-resize;
  94. z-index: 1;
  95. border-left: white 1px solid;
  96. }