_multiselect.scss 643 B

12345678910111213141516171819202122232425262728293031
  1. .ms-container {
  2. width: auto !important;
  3. .ms-list {
  4. @include box-shadow(none !important);
  5. @include border-radius(0 !important);
  6. }
  7. .ms-list.ms-focus {
  8. @include box-shadow(none !important);
  9. }
  10. .ms-selectable,
  11. .ms-selection {
  12. min-width: 250px !important;
  13. li.ms-hover {
  14. color: #000000 !important;
  15. background-color: #e6e6e6 !important;
  16. }
  17. li.ms-elem-selectable,
  18. li.ms-elem-selection {
  19. padding: 9px 15px 6px 15px !important;
  20. }
  21. }
  22. .ms-optgroup-label {
  23. padding: 5px 0 0 8px !important;
  24. }
  25. }