_bootstrapselect.scss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. .bootstrap-select {
  2. box-shadow: none !important;
  3. border-bottom: 1px solid #ddd !important;
  4. @include border-radius(0);
  5. .dropdown-toggle {
  6. &:focus,
  7. &:active {
  8. outline: none !important;
  9. }
  10. }
  11. .bs-searchbox,
  12. .bs-actionsbox,
  13. .bs-donebutton {
  14. padding: 0 0 5px 0;
  15. border-bottom: 1px solid #e9e9e9;
  16. .form-control {
  17. @include border-radius(0);
  18. @include box-shadow(none !important);
  19. border: none;
  20. margin-left: 30px;
  21. }
  22. }
  23. .bs-searchbox {
  24. position: relative;
  25. &:after {
  26. content: '\E8B6';
  27. font-family: 'Material Icons';
  28. position: absolute;
  29. top: 0;
  30. left: 10px;
  31. font-size: 25px;
  32. }
  33. }
  34. ul.dropdown-menu {
  35. margin-top: 0 !important;
  36. }
  37. .dropdown-menu {
  38. li.selected {
  39. a {
  40. background-color: #eee !important;
  41. color: #555 !important;
  42. }
  43. }
  44. .active {
  45. a {
  46. background-color: transparent;
  47. color: #333 !important;
  48. }
  49. }
  50. .notify {
  51. background-color: #F44336 !important;
  52. color: #fff !important;
  53. border: none !important;
  54. }
  55. }
  56. }
  57. .bootstrap-select.btn-group.show-tick {
  58. .dropdown-menu {
  59. li.selected {
  60. a {
  61. span.check-mark {
  62. margin-top: 9px;
  63. }
  64. }
  65. }
  66. }
  67. }