123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- #searchform input[type="submit"] {
- width: 25%;
- }
- .twitter-typeahead {
- width: 73% !important;
- }
- .twitter-typeahead * {
- -moz-box-sizing: border-box;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- }
- .tt-query,
- .tt-hint {
- padding: 6px;
- outline: none;
- width: 100% !important;
- vertical-align: inherit !important;
- }
- .tt-hint {
- color: #999
- }
- .tt-dropdown-menu {
- width: 100%;
- margin-top: 12px;
- padding: 8px 0;
- background-color: #fff;
- border: 1px solid #ccc;
- border: 1px solid rgba(0, 0, 0, 0.2);
- -webkit-border-radius: 8px;
- -moz-border-radius: 8px;
- border-radius: 8px;
- -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
- -moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
- box-shadow: 0 5px 10px rgba(0,0,0,.2);
- text-shadow: none;
- }
- .tt-dropdown-menu h5 {
- color: #444 !important;
- border: 0 !important;
- display: block;
- text-decoration: none !important;
- font-weight: 700;
- }
- .tt-dropdown-menu p {
- font-size: 14px;
- margin: 0 0 5px!important;
- line-height: 1.4 !important;
- color: #444;
- font-weight: 400;
- }
- .tt-suggestion {
- padding: 3px 10px;
- font-size: 14px;
- line-height: 18px;
- }
- .tt-suggestion.tt-is-under-cursor {
- color: #fff;
- background-color: #0097cf;
- }
- .tt-suggestion.tt-is-under-cursor h5, .tt-suggestion.tt-is-under-cursor p {
- color: #fff !important;
- }
- .tt-suggestion p {
- margin: 0;
- }
- /* rtl support */
- .twitter-typeahead.tt-rtl {
- direction: rtl;
- }
- .twitter-typeahead.tt-rtl .tt-dropdown-menu {
- left: auto;
- right: 0;
- }
|