_single.scss 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. .select2-selection--single {
  2. background-color: #fff;
  3. //border: 1px solid $cnaf-border;
  4. border-radius: 0px;
  5. .select2-selection__rendered {
  6. //color: $cnaf;
  7. line-height: 28px;
  8. }
  9. .select2-selection__clear {
  10. cursor: pointer;
  11. float: right;
  12. font-weight: bold;
  13. }
  14. .select2-selection__placeholder {
  15. //color: $cnaf-placeholder;
  16. }
  17. .select2-selection__arrow {
  18. height: 23px;
  19. background-image: str-replace(url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' viewBox='0 0 448 512'%3E%3Cpath fill='#{$custom-select-indicator-color}' d='M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z'/%3E%3C/svg%3E"), "#", "%23");
  20. position: absolute;
  21. top: 6px;
  22. right: 8px;
  23. width: 18px;
  24. /*
  25. b {
  26. border-color: $cnaf-placeholder transparent transparent transparent;
  27. border-style: solid;
  28. border-width: 5px 4px 0 4px;
  29. height: 0;
  30. left: 50%;
  31. margin-left: -4px;
  32. margin-top: -2px;
  33. position: absolute;
  34. top: 50%;
  35. }
  36. */
  37. }
  38. }
  39. &[dir="rtl"] {
  40. .select2-selection--single {
  41. .select2-selection__clear {
  42. float: left;
  43. }
  44. .select2-selection__arrow {
  45. left: 1px;
  46. right: auto;
  47. }
  48. }
  49. }
  50. &.select2-container--disabled {
  51. .select2-selection--single {
  52. //background-color: $cnaf-disabled;
  53. cursor: default;
  54. .select2-selection__clear {
  55. display: none;
  56. }
  57. }
  58. }
  59. &.select2-container--open {
  60. .select2-selection--single {
  61. .select2-selection__arrow {
  62. background-image: str-replace(url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' viewBox='0 0 448 512'%3E%3Cpath fill='#{$custom-select-indicator-color}' d='M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z'/%3E%3C/svg%3E"), "#", "%23");
  63. // b {
  64. // border-color: transparent transparent $cnaf-placeholder transparent;
  65. // border-width: 0 4px 5px 4px;
  66. // }
  67. }
  68. }
  69. }