rolelist.scss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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. ::v-deep .paren_content {
  26. width: 100%;
  27. height: calc(100% - 110px);
  28. .el-row {
  29. width: 100%;
  30. }
  31. .scrollBar {
  32. .el-scrollbar__wrap {
  33. overflow-x: auto;
  34. }
  35. }
  36. .cide {
  37. height: 80px;
  38. background: #f5f7fa;
  39. box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
  40. border-radius: 8px;
  41. margin-bottom: 16px;
  42. padding: 16px 16px 0 16px;
  43. cursor: pointer;
  44. > .cide_header {
  45. display: flex;
  46. align-items: center;
  47. justify-content: space-between;
  48. > p {
  49. font-size: 16px;
  50. font-family: Microsoft YaHei;
  51. font-weight: 400;
  52. color: #303133;
  53. margin-top: 0;
  54. margin-bottom: 0;
  55. text-overflow: -o-ellipsis-lastline;
  56. overflow: hidden;
  57. text-overflow: ellipsis;
  58. display: -webkit-box;
  59. -webkit-line-clamp: 2;
  60. line-clamp: 2;
  61. -webkit-box-orient: vertical;
  62. }
  63. }
  64. }
  65. }
  66. .bgActive {
  67. .cide {
  68. height: 64px;
  69. }
  70. .bgColor {
  71. background: #6e81bc;
  72. > .cide_header {
  73. > p {
  74. color: #f5f7fa;
  75. }
  76. }
  77. .el-radio__input.is-checked .el-radio__inner {
  78. border-color: #f5f7fa;
  79. }
  80. }
  81. }
  82. .bgActivecheckbox {
  83. > .el-scrollbar {
  84. > .el-scrollbar__wrap {
  85. > .el-scrollbar__view {
  86. .cide {
  87. // height: 64px;
  88. }
  89. .bgColor {
  90. background: #6e81bc;
  91. > .cide_header {
  92. > p {
  93. color: #f5f7fa;
  94. }
  95. }
  96. .el-radio__input.is-checked .el-radio__inner {
  97. border-color: #f5f7fa;
  98. }
  99. }
  100. }
  101. }
  102. }
  103. }
  104. }
  105. }
  106. .lessData {
  107. .cont {
  108. padding: 0;
  109. box-shadow: none;
  110. background: inherit;
  111. }
  112. }