form-select.scss 491 B

1234567891011121314151617181920212223242526
  1. @import "vars";
  2. @import "mixins";
  3. .input-select {
  4. // background-color: rgba(255,255,255,0.04);
  5. // background-image: url('images/select_arrow.gif');
  6. border-radius: $radius;
  7. display: inline-block;
  8. width: 100%;
  9. }
  10. @-moz-document url-prefix() {
  11. select.input{
  12. background-repeat: no-repeat;
  13. background-position: right center;
  14. cursor: pointer;
  15. }
  16. }
  17. select {
  18. -webkit-appearance:none;
  19. // -moz-appearance:window;
  20. appearance:none;
  21. padding-left: 0px;
  22. width: 100%;
  23. }