| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- /* Cell Component */
- /* Header Component */
- /* Button Component */
- /* Tab Item Component */
- /* Tabbar Component */
- /* Navbar Component */
- /* Checklist Component */
- /* Radio Component */
- /* z-index */
- .mint-search {
- height: 100%;
- height: 100vh;
- overflow: hidden;
- }
- .mint-searchbar {
- position: relative;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- background-color: #d9d9d9;
- box-sizing: border-box;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- padding: 8px 10px;
- z-index: 1;
- }
- .mint-searchbar-inner {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- background-color: #fff;
- border-radius: 2px;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-flex: 1;
- -ms-flex: 1;
- flex: 1;
- height: 28px;
- padding: 4px 6px;
- }
- .mint-searchbar-inner .mintui-search {
- font-size: 12px;
- color: #d9d9d9;
- }
- .mint-searchbar-core {
- -webkit-appearance: none;
- -moz-appearance: none;
- appearance: none;
- border: 0;
- box-sizing: border-box;
- width: 100%;
- height: 100%;
- outline: 0;
- }
- .mint-searchbar-cancel {
- color: #26a2ff;
- margin-left: 10px;
- text-decoration: none;
- }
- .mint-search-list {
- overflow: auto;
- padding-top: 44px;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- position: absolute;
- }
|