style.css 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /* Cell Component */
  2. /* Header Component */
  3. /* Button Component */
  4. /* Tab Item Component */
  5. /* Tabbar Component */
  6. /* Navbar Component */
  7. /* Checklist Component */
  8. /* Radio Component */
  9. /* z-index */
  10. .mint-search {
  11. height: 100%;
  12. height: 100vh;
  13. overflow: hidden;
  14. }
  15. .mint-searchbar {
  16. position: relative;
  17. -webkit-box-align: center;
  18. -ms-flex-align: center;
  19. align-items: center;
  20. background-color: #d9d9d9;
  21. box-sizing: border-box;
  22. display: -webkit-box;
  23. display: -ms-flexbox;
  24. display: flex;
  25. padding: 8px 10px;
  26. z-index: 1;
  27. }
  28. .mint-searchbar-inner {
  29. -webkit-box-align: center;
  30. -ms-flex-align: center;
  31. align-items: center;
  32. background-color: #fff;
  33. border-radius: 2px;
  34. display: -webkit-box;
  35. display: -ms-flexbox;
  36. display: flex;
  37. -webkit-box-flex: 1;
  38. -ms-flex: 1;
  39. flex: 1;
  40. height: 28px;
  41. padding: 4px 6px;
  42. }
  43. .mint-searchbar-inner .mintui-search {
  44. font-size: 12px;
  45. color: #d9d9d9;
  46. }
  47. .mint-searchbar-core {
  48. -webkit-appearance: none;
  49. -moz-appearance: none;
  50. appearance: none;
  51. border: 0;
  52. box-sizing: border-box;
  53. width: 100%;
  54. height: 100%;
  55. outline: 0;
  56. }
  57. .mint-searchbar-cancel {
  58. color: #26a2ff;
  59. margin-left: 10px;
  60. text-decoration: none;
  61. }
  62. .mint-search-list {
  63. overflow: auto;
  64. padding-top: 44px;
  65. top: 0;
  66. right: 0;
  67. bottom: 0;
  68. left: 0;
  69. position: absolute;
  70. }