Blame view

components/thorui/fui-css/base/common.scss 1.19 KB
46b6767c   刘淇   init 提交到库
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
  /*!
   * common v1.0.0 (https://doc.firstui.cn)
   * Copyright 2024 FirstUI.
   * Licensed under the Apache license
   */
  
  /* ipx 底部安全区域 */
  .fs-safe__area{
  	/* #ifdef APP-NVUE || MP-TOUTIAO */
  	padding-bottom: 34px;
  	/* #endif */
  	
  	/* #ifndef APP-NVUE || MP-TOUTIAO */
  	padding-bottom: constant(safe-area-inset-bottom);
  	padding-bottom: env(safe-area-inset-bottom);
  	/* #endif */
  }
  
  /* hover */
  .fs-hover,
  .fs-text__hover{
  	/* #ifdef H5 */
  	cursor: pointer;
  	/* #endif */
  }
  
  .fs-hover:active{
  	background: $fv-bg-color-hover;
  }
  
  .fs-text__hover:active{
  	opacity: .5;
  }
  
  .fs-full{
  	/* #ifndef APP-NVUE */
  	width: 100%;
  	/* #endif */
  	/* #ifdef APP-NVUE */
  	width: 750rpx;
  	/* #endif */
  }
  
  .fs-disabled{
  	opacity: $fv-opacity-disabled;
  	/* #ifdef H5 */
  	cursor: not-allowed;
  	/* #endif */
  }
  
  /* thin 细边线 0.5px*/
  .fs-cell__thin{
  	position: relative;
  	/* #ifdef APP-NVUE */
  	border-bottom: 0.5px solid $fv-color-border;
  	/* #endif */
  }
  
  /* #ifndef APP-NVUE */
  .fs-cell__thin::after{
  	content: ' ';
  	position: absolute;
  	border-bottom: 1px solid $fv-color-border;
  	-webkit-transform: scaleY(0.5);
  	transform: scaleY(0.5);
  	bottom: 0;
  	left: 32rpx;
  	right: 0;
  	z-index: 1;
  	pointer-events: none;
  }
  /* #endif */