| 1234567891011121314151617181920212223242526272829303132 |
- .typepsecial .selectize-input { width:366px; padding:4px 6px; }
- .typepsecial .selectize-control::before {
- -moz-transition: opacity 0.2s;
- -webkit-transition: opacity 0.2s;
- transition: opacity 0.2s;
- content: ' ';
- z-index: 2;
- position: absolute;
- display: block;
- top: 12px;
- right: 34px;
- width: 16px;
- height: 16px;
- background: url(stuff/i/loading.gif);
- background-size: 16px 16px;
- opacity: 0;
- }
- .typepsecial .selectize-control.loading::before {
- opacity: 0.4;
- }
- .typepsecial .selectize-control.single .selectize-input {
- color: #333;
- text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
- background-color: #fff;
- background-image: none;
- background-repeat: none;
- border-color: #ccc;
- filter: none;
- -webkit-box-shadow: none;
- -moz-box-shadow: none;
- box-shadow: none;
- }
|