From 040e2ccd2a26efd3b0bf65ddb400f9803ed52360 Mon Sep 17 00:00:00 2001 From: Tevin <tingquanren@163.com> Date: Tue, 16 Nov 2021 19:09:01 +0800 Subject: [PATCH] 所有表单控件、弹窗,基础字体大小,加大到36px --- plugins/infiniteScroll/cInfiniteScroll.scss | 72 +++++++++++++++++++++++++++++++++--- 1 files changed, 66 insertions(+), 6 deletions(-) diff --git a/plugins/infiniteScroll/cInfiniteScroll.scss b/plugins/infiniteScroll/cInfiniteScroll.scss index 81f7b9c..41e7f5d 100644 --- a/plugins/infiniteScroll/cInfiniteScroll.scss +++ b/plugins/infiniteScroll/cInfiniteScroll.scss @@ -6,13 +6,73 @@ @import "../../common/sassMixin"; .c-infinite-scroll { - .bottom { - height: 1.8rem; + .c-infinite-top { + position: relative; + width: 100%; + height: 0; + overflow: hidden; + transition-duration: 0.3s; + &.touching { + transition-duration: 0s; + } + .inner { + @include position(absolute, n 0 0 n); + width: 100%; + height: 234px; + padding-top: 155px; + text-align: center; + box-sizing: border-box; + .at-activity-indicator { + display: inline-block; + height: 40px; + margin-right: 9px; + vertical-align: middle; + } + .text { + vertical-align: middle; + } + } + .tips { + .text:nth-child(3) { + display: none; + } + .at-icon { + margin-right: 9px; + font-size: 33px; + vertical-align: middle; + transition-duration: 0.3s; + } + .text { + vertical-align: middle; + } + &.release { + .at-icon { + transform: rotate(180deg); + } + .text:nth-child(2) { + display: none; + } + .text:nth-child(3) { + display: inline-block; + } + } + } + } + .c-infinite-bottom { + padding-bottom: 20px; text-align: center; - line-height: 1.5rem; - color: #666; - .empty { - line-height: 5rem; + .c-infinite-loading { + height: 94px; + color: #666; + line-height: 84px; + } + .c-infinite-ended { + height: 94px; + color: #999; + line-height: 84px; + } + .c-infinite-empty { + line-height: 234px; color: #999; } } -- Gitblit v1.9.1