| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- @CHARSET "UTF-8";
- /********************************
- A jQuery plugin for search hints
- Author: Lorenzo Cioni
- https://github.com/lorecioni
- ********************************/
- .autocomplete-container {
- position: relative;
- width: 170px;
- height: 32px;
- }
- .autocomplete-input {
- padding: 9px;
- border-radius: 3px;
- font-family: inherit;
- float: left;
- font-size: 1em;
- border: 1px solid rgba(0, 0, 0, 0.19);
- margin: 0;
- }
- .autocomplete-button {
- font-family: inherit;
- border: none;
- background-color: #990101;
- color: white;
- padding: 8px;
- float: left;
- cursor: pointer;
- border-radius: 0px 3px 3px 0px;
- transition: all 0.2s ease-out 0s;
- margin: 0.5px 0px 0px -1px;
- }
- .autocomplete-button:HOVER {
- background-color: #D11E1E;
- }
- .proposal-box {
- position: absolute;
- height: auto;
- border-left: 1px solid rgba(0, 0, 0, 0.11);
- border-right: 1px solid rgba(0, 0, 0, 0.11);
- left: 0px;
- }
- .proposal-list {
- list-style: none;
- box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.44);
- -webkit-margin-before: 0em;
- -webkit-margin-after: 0em;
- -webkit-margin-start: 0px;
- -webkit-margin-end: 0px;
- -webkit-padding-start: 0px;
- }
- .proposal-list li {
- text-align: left;
- padding: 5px;
- font-family: inherit;
- /*border-bottom: 1px solid #000000;*/
- height: 25px;
- line-height: 25px;
- background-color: #FFFFFF;
- cursor: pointer;
- }
- li.proposal.selected {
- background-color: #00a1cb;
- color: #FFFFFF;
- }
|