_multiple.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. .select2-selection--multiple {
  2. background-color: white;
  3. //border: 1px solid $cnaf-border;
  4. border-radius: 0px;
  5. cursor: text;
  6. .select2-selection__rendered {
  7. box-sizing: border-box;
  8. list-style: none;
  9. margin: 0;
  10. padding: 0 5px;
  11. width: 100%;
  12. li {
  13. list-style: none;
  14. }
  15. }
  16. .select2-selection__placeholder {
  17. //color: $cnaf-placeholder;
  18. margin-top: 5px;
  19. float: left;
  20. }
  21. .select2-selection__clear {
  22. cursor: pointer;
  23. float: right;
  24. font-weight: bold;
  25. margin-top: 5px;
  26. margin-right: 10px;
  27. }
  28. .select2-selection__choice {
  29. background-color: $secondary;
  30. border: 0;
  31. border-radius: 2px;
  32. cursor: default;
  33. //color: $cnaf;
  34. float: left;
  35. margin-right: 5px;
  36. margin-top: 5px;
  37. padding: 0 5px;
  38. }
  39. .select2-selection__choice__remove {
  40. //color: $cnaf;
  41. cursor: pointer;
  42. display: inline-block;
  43. font-weight: bold;
  44. margin-right: 2px;
  45. &:hover {
  46. //color: $cnaf-dark;
  47. }
  48. }
  49. }
  50. &[dir="rtl"] {
  51. .select2-selection--multiple {
  52. .select2-selection__choice, .select2-selection__placeholder, .select2-search--inline {
  53. float: right;
  54. }
  55. .select2-selection__choice {
  56. margin-left: 5px;
  57. margin-right: auto;
  58. }
  59. .select2-selection__choice__remove {
  60. margin-left: 2px;
  61. margin-right: auto;
  62. }
  63. }
  64. }
  65. &.select2-container--focus {
  66. .select2-selection--multiple {
  67. //border: solid $cnaf-border 1px;
  68. outline: 0;
  69. }
  70. }
  71. &.select2-container--disabled {
  72. .select2-selection--multiple {
  73. //background-color: $cnaf-disabled;
  74. cursor: default;
  75. }
  76. .select2-selection__choice__remove {
  77. display: none;
  78. }
  79. }