您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

64 行
1.2 KiB

  1. .typeahead,
  2. .tt-query,
  3. .tt-hint {
  4. width: 100%;
  5. height: 46px;
  6. padding: 8px 12px;
  7. font-size: 24px;
  8. line-height: 30px;
  9. border: 2px solid #ccc;
  10. -webkit-border-radius: 8px;
  11. -moz-border-radius: 8px;
  12. border-radius: 8px;
  13. outline: none;
  14. }
  15. .typeahead {
  16. background-color: #fff;
  17. }
  18. .typeahead:focus {
  19. border: 2px solid #0097cf;
  20. }
  21. .tt-query {
  22. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  23. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  24. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  25. }
  26. .tt-hint {
  27. color: #999
  28. }
  29. .tt-dropdown-menu {
  30. width: 422px;
  31. margin-top: 12px;
  32. padding: 8px 0;
  33. background-color: #fff;
  34. border: 1px solid #ccc;
  35. border: 1px solid rgba(0, 0, 0, 0.2);
  36. -webkit-border-radius: 8px;
  37. -moz-border-radius: 8px;
  38. border-radius: 8px;
  39. -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
  40. -moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
  41. box-shadow: 0 5px 10px rgba(0,0,0,.2);
  42. }
  43. .tt-suggestion {
  44. padding: 3px 20px;
  45. font-size: 18px;
  46. line-height: 24px;
  47. }
  48. .tt-suggestion.tt-is-under-cursor {
  49. color: #fff;
  50. background-color: #0097cf;
  51. }
  52. .tt-suggestion p {
  53. margin: 0;
  54. }