_multi.scss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. .multi-wrapper {
  2. border: 1px solid #e7eaf3;
  3. border-radius: 5px;
  4. width: 100%;
  5. overflow: hidden;
  6. .non-selected-wrapper,
  7. .selected-wrapper {
  8. box-sizing: border-box;
  9. display: inline-block;
  10. height: 200px;
  11. overflow-y: scroll;
  12. padding: 0;
  13. vertical-align: top;
  14. width: 50%;
  15. }
  16. .non-selected-wrapper {
  17. background: #f6f6fb;
  18. border-inline-end: 1px solid $border;
  19. }
  20. .selected-wrapper {
  21. background: #fff;
  22. }
  23. .header {
  24. display: block;
  25. font-size: 14px;
  26. padding: 0px 15px;
  27. text-transform: capitalize;
  28. font-weight: 500;
  29. height: 40px;
  30. line-height: 40px;
  31. }
  32. .item-1 {
  33. cursor: pointer;
  34. display: block;
  35. padding: 0px 15px;
  36. color: #424e79;
  37. text-decoration: none;
  38. font-size: 13px;
  39. height: 35px;
  40. line-height: 35px;
  41. &:hover {
  42. color: #5646ff;
  43. border: 0;
  44. border-radius: 2px;
  45. }
  46. }
  47. .item-group-1 {
  48. padding: 0;
  49. .group-label {
  50. display: block;
  51. font-size: 14px;
  52. padding: 0px 15px;
  53. text-transform: capitalize;
  54. font-weight: 500;
  55. height: 40px;
  56. line-height: 40px;
  57. }
  58. }
  59. .search-input {
  60. border: 0;
  61. border-block-end: 1px solid $border;
  62. border-radius: 0;
  63. display: block;
  64. font-size: 14px !important;
  65. margin: 0;
  66. outline: 0;
  67. padding: 10px 20px;
  68. width: 100%;
  69. box-sizing: border-box;
  70. border-radius: 5px 5px 0 0;
  71. }
  72. .non-selected-wrapper .item {
  73. &.selected {
  74. opacity: 0.5;
  75. }
  76. &.disabled {
  77. opacity: 0.5;
  78. text-decoration: line-through;
  79. }
  80. }
  81. .selected-wrapper .item.disabled {
  82. opacity: 0.5;
  83. text-decoration: line-through;
  84. }
  85. .non-selected-wrapper .item.disabled:hover,
  86. .selected-wrapper .item.disabled:hover {
  87. background: inherit;
  88. cursor: inherit;
  89. }
  90. }