_override-rbt.scss 425 B

1234567891011121314151617181920212223
  1. // override react-bootstrap-typeahead styles
  2. // see: https://github.com/ericgio/react-bootstrap-typeahead
  3. .form-group:not(.has-error) {
  4. .rbt-input.form-control {
  5. // focus
  6. &.focus {
  7. border-color: inherit;
  8. box-shadow: none;
  9. }
  10. }
  11. }
  12. .rbt-input-wrapper {
  13. .close.rbt-close {
  14. // default bootstrap .close has padding 0
  15. padding: 3px 7px;
  16. }
  17. }
  18. // hide loading icon
  19. .rbt-aux {
  20. display: none;
  21. }