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
| @import "../../base/fn";
|
| .weui-cell_access {
| .setTapColor();
| color: inherit;
| &:active {
| background-color: #ECECEC;
| }
| .weui-cell__ft {
| padding-right: 13px;
| position: relative;
| &:after {
| content: " ";
| .setArrow(right, 6px, #C8C8CD, 2px);
| position: absolute;
| top: 50%;
| margin-top: -4px;
| right: 2px;
| }
| }
| }
| .weui-cell_link{
| color: @weuiLinkColorDefault;
| font-size: 14px;
|
| // 由于weui-cell:first-child的:before为隐藏,所以这里要重新显示出来
| &:first-child{
| &:before{
| display: block;
| }
| }
| }
|
|