rolelist.scss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. .bf-rolelist {
  2. width: 100%;
  3. height: 100%;
  4. > .cont {
  5. width: 100%;
  6. height: 100%;
  7. background: #ffffff;
  8. box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.06);
  9. border-radius: 16px;
  10. padding: 0 32px 0 32px;
  11. > .paren_header {
  12. width: 100%;
  13. height: 90px;
  14. display: flex;
  15. align-items: center;
  16. > p {
  17. font-size: 24px;
  18. font-family: Microsoft YaHei;
  19. font-weight: bold;
  20. color: #303133;
  21. margin-top: 0;
  22. margin-bottom: 0;
  23. }
  24. }
  25. .paren_content {
  26. width: 100%;
  27. height: 83%;
  28. .el-row {
  29. width: 100%;
  30. }
  31. .cide {
  32. height: 80px;
  33. background: #f5f7fa;
  34. box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
  35. border-radius: 8px;
  36. margin-bottom: 16px;
  37. padding: 16px 16px 0 16px;
  38. cursor: pointer;
  39. > .cide_header {
  40. display: flex;
  41. align-items: center;
  42. justify-content: space-between;
  43. > p {
  44. font-size: 16px;
  45. font-family: Microsoft YaHei;
  46. font-weight: 400;
  47. color: #303133;
  48. margin-top: 0;
  49. margin-bottom: 0;
  50. text-overflow: -o-ellipsis-lastline;
  51. overflow: hidden;
  52. text-overflow: ellipsis;
  53. display: -webkit-box;
  54. -webkit-line-clamp: 2;
  55. line-clamp: 2;
  56. -webkit-box-orient: vertical;
  57. }
  58. }
  59. }
  60. }
  61. .bgActive {
  62. .cide {
  63. height: 64px;
  64. }
  65. .bgColor {
  66. background: #6e81bc;
  67. > .cide_header {
  68. > p {
  69. color: #f5f7fa;
  70. }
  71. }
  72. .el-radio__input.is-checked .el-radio__inner {
  73. border-color: #f5f7fa;
  74. }
  75. }
  76. }
  77. .bgActivecheckbox {
  78. > .el-scrollbar {
  79. > .el-scrollbar__wrap {
  80. > .el-scrollbar__view {
  81. .cide {
  82. // height: 64px;
  83. }
  84. .bgColor {
  85. background: #6e81bc;
  86. > .cide_header {
  87. > p {
  88. color: #f5f7fa;
  89. }
  90. }
  91. .el-radio__input.is-checked .el-radio__inner {
  92. border-color: #f5f7fa;
  93. }
  94. }
  95. }
  96. }
  97. }
  98. }
  99. }
  100. }
  101. .lessData {
  102. .cont {
  103. padding: 0;
  104. box-shadow: none;
  105. background: inherit;
  106. }
  107. }