typespecial-fix.css 778 B

1234567891011121314151617181920212223242526272829303132
  1. .typepsecial .selectize-input { width:366px; padding:4px 6px; }
  2. .typepsecial .selectize-control::before {
  3. -moz-transition: opacity 0.2s;
  4. -webkit-transition: opacity 0.2s;
  5. transition: opacity 0.2s;
  6. content: ' ';
  7. z-index: 2;
  8. position: absolute;
  9. display: block;
  10. top: 12px;
  11. right: 34px;
  12. width: 16px;
  13. height: 16px;
  14. background: url(stuff/i/loading.gif);
  15. background-size: 16px 16px;
  16. opacity: 0;
  17. }
  18. .typepsecial .selectize-control.loading::before {
  19. opacity: 0.4;
  20. }
  21. .typepsecial .selectize-control.single .selectize-input {
  22. color: #333;
  23. text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  24. background-color: #fff;
  25. background-image: none;
  26. background-repeat: none;
  27. border-color: #ccc;
  28. filter: none;
  29. -webkit-box-shadow: none;
  30. -moz-box-shadow: none;
  31. box-shadow: none;
  32. }