1234567891011121314151617181920212223242526272829303132333435363738394041 |
- .l-wrapper {
- position: absolute;
- z-index: 1;
- top: 60px;
- bottom: 0px;
- left: 0;
- width: 100%;
- /*background: #ccc;*/
- overflow: hidden;
-
- }
- .l-scroller {
- box-sizing: content-box;
- min-height: 100%;
- padding-bottom: 2px;
- position: absolute;
- z-index: 1;
- -webkit-tap-highlight-color: rgba(0,0,0,0);
- width: 100%;
- -webkit-transform: translateZ(0);
- -moz-transform: translateZ(0);
- -ms-transform: translateZ(0);
- -o-transform: translateZ(0);
- transform: translateZ(0);
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- -webkit-text-size-adjust: none;
- -moz-text-size-adjust: none;
- -ms-text-size-adjust: none;
- -o-text-size-adjust: none;
- text-size-adjust: none;
- }
- .l-pullDown, .l-pullUp, .l-loading, .l-flip, .noMoreData{
- text-align: center; height: 30px; line-height: 29px; font-size: 14px;color: #909090;
- }
|