Riku
2024-08-12 7c3c82d429f86358142adceb080e8922f6a18aa0
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
@import '../../../components/filter/index.wxss';
 
.page .page-header {
  background: linear-gradient(var(--td-primary-color-7), var(--td-bg-color));
  padding: initial;
}
 
.supervision-search {
  padding: 0 var(--td-spacer-1);
  padding-top: 1px;
}
 
.filter-wrap {
  background: initial;
}
 
.filter-wrap-2 {
  background: initial;
}
 
.picker-location {
  color: var(--td-font-white-1) !important;
}
 
.fy-loading {
  text-align: center;
  background-color: transparent;
}
 
.fy-loading-indicator,
.fy-loading-text {
  color: var(--td-text-color-placeholder) !important;
}
 
.flex-v {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
 
.scene__item-tag__wrap{
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
}
 
.scene__item {
  background-color: var(--td-bg-color-fade);
  border-radius: var(--td-border-radius);
  box-shadow: var(--td-shadow-4);
  padding: var(--td-spacer);
  margin-top: var(--td-spacer);
  display: flex;
  justify-content: space-between;
  gap: 2px;
  color: var(--td-text-color-primary);
}
 
.scene__item:active {
  background-color: var(--td-gray-color-1);
}
 
.scene__item .scene__item-name {
  --ei-font-size: var(--td-font-size-m);
  --ei-line-height: calc(var(--td-text-line-height) * var(--ei-font-size));
  font-size: var(--ei-font-size);
  line-height: var(--ei-line-height);
  height: calc(var(--ei-line-height) * 2);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
 
.scene__item-abstract {
  font-size: var(--td-font-size-s);
  color: var(--td-text-color-secondary);
}
 
.scene__nav-icon {
  position: relative;
  bottom: 0px;
  right: 0px;
  display: flex;
  justify-content: flex-end;
  /* margin-top: var(--td-spacer); */
  /* background-color: blanchedalmond; */
}