-
Notifications
You must be signed in to change notification settings - Fork 8
/
app.wxss
executable file
·94 lines (72 loc) · 2.1 KB
/
app.wxss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*!
* Fresns 微信小程序 (https://fresns.cn)
* Copyright 2021-Present 唐杰
* Licensed under the Apache-2.0 license
*/
@import '/assets/styles/variable.wxss';
@import '/assets/styles/weui.wxss';
page {
height: 100vh;
display: flex;
flex-direction: column;
}
.scrollarea {
flex: 1;
overflow-y: hidden;
background-color: var(--weui-BG-1);
}
/* 以下 CSS 为兼容 Skyline 渲染引擎提供的 WeUI 临时方案 */
/* button */
.weui-btn_default {
color: var(--weui-FG-0);
}
.weui-btn_medium {
color: var(--weui-FG-0);
}
/* badge */
.weui-badge {
padding: 4.8rpx 12.8rpx !important;
}
/* footer */
.weui-footer__links {
flex: 1;
flex-direction: row;
display: flex;
text-align: center;
align-items: center;
justify-content: center;
}
/* list */
.weui-cell_access .weui-cell__ft::after {
background: transparent
url('data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.454%206.58l1.06-1.06%205.78%205.779a.996.996%200%20010%201.413l-5.78%205.779-1.06-1.061%205.425-5.425-5.425-5.424z%22%20fill%3D%22%23B2B2B2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E')
no-repeat 50% 50%;
}
/* panel */
.weui-media-box__info {
flex-direction: row;
display: flex;
line-height: 32rpx !important;
}
.weui-media-box__info__meta {
padding-right: 32rpx !important;
}
.weui-media-box__info__meta_extra {
padding-left: 32rpx !important;
}
/* loadmore */
.weui-loadmore_line .weui-loadmore__tips {
top: -28.8rpx !important;
}
/* half-screen-dialog */
.weui-btn_icon {
width: 30rpx !important;
height: 30rpx !important;
background: transparent
url('data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12.25%2010.693L6.057%204.5%205%205.557l6.193%206.193L5%2017.943%206.057%2019l6.193-6.193L18.443%2019l1.057-1.057-6.193-6.193L19.5%205.557%2018.443%204.5z%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E')
no-repeat 50% 50% !important;
}
/* form */
.weui-textarea {
font-size: 32rpx !important;
}