riku
2026-03-05 9465dc404f7e7cd56100e4859ee0946a3fef7b09
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
.fyui-mask.fyui-mask_hidden {
  opacity: 0;
  transform: scale3d(1, 1, 0)
}
 
.fyui-mask {
  opacity: 1;
  transform: scale3d(1, 1, 1);
  transition: all .3s
}
 
.fyui-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 5000;
  /* min-width: 60%; */
  height: 100%;
  background-color: var(--fyui-BG_1);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  border-bottom-right-radius: 12px;
  border-top-right-radius: 12px;
  overflow: hidden;
  /* background-color: rgb(136, 136, 136); */
  display: flex;
}
 
.fyui-sidebar_toggle {
  -webkit-transform: translate(0);
  transform: translate(0)
}
.fyui-sidebar__menu {
  font-size: 14px;
  border-right: 1px solid var(--fyui-text-color_3);
}
 
.fyui-sidebar__menu>view{
  /* width: 20%; */
  text-align: center;
  padding: 8px 16px;
  overflow: hidden;
  overflow-y: auto;
}
.fyui-sidebar__content {
  position: relative;
  display: block;
  font-size: 14px;
}
 
.fyui-sidebar__content>view{
  display: block;
  width: 100%;
  /* text-align: center; */
  padding: 8px 16px;
  margin-right: 40px;
  /* background-color: teal; */
}
 
.selected {
  background-color: #1cebc5;
  color: white;
}
 
.fyui-sidebar__check {
  background-color: var(--fyui-BG_1);
  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
  padding-bottom: calc(40px + constant(safe-area-inset-bottom));
  padding-bottom: calc(40px + env(safe-area-inset-bottom));
  z-index: 6000;
}
 
.fyui-sidebar__check>mp-icon {
  background-color: #1cebc5;
  margin-bottom: 8px;
  border-radius: 50%;
  padding: 16px;
}
 
.submit_cancel {
  background: linear-gradient(to right, #b3b3b3, #b3b3b3);
}