satis 2.1.21 → 2.1.23
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2b65b8aaf48dcbd31e7a43c7ec007e7ae293c0aadee288626ac7198471224d6a
|
4
|
+
data.tar.gz: f8560abe70d4c2f4de98ee2c397f7d55faf00116e56a402af07b22f5eab03d65
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a75254d2ff582a35d1b5549320002a521a59763a033ebe43825e3681ec5af46c8abf5668d4d3bab94abc2de3df984d3252c499c2f0a9abc7e3a9e2594961af14
|
7
|
+
data.tar.gz: 6a578305def058e8153131e97369a3a04c872b21dc2140b51f98c65275774ed280e482b9f6520440361d540c85583eb55ba5e2e11bf95a8797869cba4c3ff748
|
@@ -1,8 +1,235 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
1
|
+
.tippy-box[data-animation="fade"][data-state="hidden"] {
|
2
|
+
opacity: 0;
|
3
|
+
}
|
4
|
+
[data-tippy-root] {
|
5
|
+
max-width: calc(100vw - 10px);
|
6
|
+
}
|
7
|
+
.tippy-box {
|
8
|
+
position: relative;
|
9
|
+
background-color: #333;
|
10
|
+
color: #fff;
|
11
|
+
border-radius: 4px;
|
12
|
+
font-size: 14px;
|
13
|
+
line-height: 1.4;
|
14
|
+
white-space: normal;
|
15
|
+
outline: 0;
|
16
|
+
transition-property: transform, visibility, opacity;
|
17
|
+
}
|
18
|
+
.tippy-box[data-placement^="top"] > .tippy-arrow {
|
19
|
+
bottom: 0;
|
20
|
+
}
|
21
|
+
.tippy-box[data-placement^="top"] > .tippy-arrow:before {
|
22
|
+
bottom: -7px;
|
23
|
+
left: 0;
|
24
|
+
border-width: 8px 8px 0;
|
25
|
+
border-top-color: initial;
|
26
|
+
transform-origin: center top;
|
27
|
+
}
|
28
|
+
.tippy-box[data-placement^="bottom"] > .tippy-arrow {
|
29
|
+
top: 0;
|
30
|
+
}
|
31
|
+
.tippy-box[data-placement^="bottom"] > .tippy-arrow:before {
|
32
|
+
top: -7px;
|
33
|
+
left: 0;
|
34
|
+
border-width: 0 8px 8px;
|
35
|
+
border-bottom-color: initial;
|
36
|
+
transform-origin: center bottom;
|
37
|
+
}
|
38
|
+
.tippy-box[data-placement^="left"] > .tippy-arrow {
|
39
|
+
right: 0;
|
40
|
+
}
|
41
|
+
.tippy-box[data-placement^="left"] > .tippy-arrow:before {
|
42
|
+
border-width: 8px 0 8px 8px;
|
43
|
+
border-left-color: initial;
|
44
|
+
right: -7px;
|
45
|
+
transform-origin: center left;
|
46
|
+
}
|
47
|
+
.tippy-box[data-placement^="right"] > .tippy-arrow {
|
48
|
+
left: 0;
|
49
|
+
}
|
50
|
+
.tippy-box[data-placement^="right"] > .tippy-arrow:before {
|
51
|
+
left: -7px;
|
52
|
+
border-width: 8px 8px 8px 0;
|
53
|
+
border-right-color: initial;
|
54
|
+
transform-origin: center right;
|
55
|
+
}
|
56
|
+
.tippy-box[data-inertia][data-state="visible"] {
|
57
|
+
transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
|
58
|
+
}
|
59
|
+
.tippy-arrow {
|
60
|
+
width: 16px;
|
61
|
+
height: 16px;
|
62
|
+
color: #333;
|
63
|
+
}
|
64
|
+
.tippy-arrow:before {
|
65
|
+
content: "";
|
66
|
+
position: absolute;
|
67
|
+
border-color: transparent;
|
68
|
+
border-style: solid;
|
69
|
+
}
|
70
|
+
.tippy-content {
|
71
|
+
position: relative;
|
72
|
+
padding: 5px 9px;
|
73
|
+
z-index: 1;
|
74
|
+
}
|
75
|
+
.tippy-box[data-placement^="top"] > .tippy-svg-arrow {
|
76
|
+
bottom: 0;
|
77
|
+
}
|
78
|
+
.tippy-box[data-placement^="top"] > .tippy-svg-arrow:after,
|
79
|
+
.tippy-box[data-placement^="top"] > .tippy-svg-arrow > svg {
|
80
|
+
top: 16px;
|
81
|
+
transform: rotate(180deg);
|
82
|
+
}
|
83
|
+
.tippy-box[data-placement^="bottom"] > .tippy-svg-arrow {
|
84
|
+
top: 0;
|
85
|
+
}
|
86
|
+
.tippy-box[data-placement^="bottom"] > .tippy-svg-arrow > svg {
|
87
|
+
bottom: 16px;
|
88
|
+
}
|
89
|
+
.tippy-box[data-placement^="left"] > .tippy-svg-arrow {
|
90
|
+
right: 0;
|
91
|
+
}
|
92
|
+
.tippy-box[data-placement^="left"] > .tippy-svg-arrow:after,
|
93
|
+
.tippy-box[data-placement^="left"] > .tippy-svg-arrow > svg {
|
94
|
+
transform: rotate(90deg);
|
95
|
+
top: calc(50% - 3px);
|
96
|
+
left: 11px;
|
97
|
+
}
|
98
|
+
.tippy-box[data-placement^="right"] > .tippy-svg-arrow {
|
99
|
+
left: 0;
|
100
|
+
}
|
101
|
+
.tippy-box[data-placement^="right"] > .tippy-svg-arrow:after,
|
102
|
+
.tippy-box[data-placement^="right"] > .tippy-svg-arrow > svg {
|
103
|
+
transform: rotate(-90deg);
|
104
|
+
top: calc(50% - 3px);
|
105
|
+
right: 11px;
|
106
|
+
}
|
107
|
+
.tippy-svg-arrow {
|
108
|
+
width: 16px;
|
109
|
+
height: 16px;
|
110
|
+
fill: #333;
|
111
|
+
text-align: initial;
|
112
|
+
}
|
113
|
+
.tippy-svg-arrow,
|
114
|
+
.tippy-svg-arrow > svg {
|
115
|
+
position: absolute;
|
116
|
+
}
|
117
|
+
.tippy-box[data-placement^="top"] > .tippy-backdrop {
|
118
|
+
transform-origin: 0 25%;
|
119
|
+
border-radius: 40% 40% 0 0;
|
120
|
+
}
|
121
|
+
.tippy-box[data-placement^="top"] > .tippy-backdrop[data-state="visible"] {
|
122
|
+
transform: scale(1) translate(-50%, -55%);
|
123
|
+
}
|
124
|
+
.tippy-box[data-placement^="top"] > .tippy-backdrop[data-state="hidden"] {
|
125
|
+
transform: scale(0.2) translate(-50%, -45%);
|
126
|
+
}
|
127
|
+
.tippy-box[data-placement^="bottom"] > .tippy-backdrop {
|
128
|
+
transform-origin: 0 -50%;
|
129
|
+
border-radius: 0 0 30% 30%;
|
130
|
+
}
|
131
|
+
.tippy-box[data-placement^="bottom"] > .tippy-backdrop[data-state="visible"] {
|
132
|
+
transform: scale(1) translate(-50%, -45%);
|
133
|
+
}
|
134
|
+
.tippy-box[data-placement^="bottom"] > .tippy-backdrop[data-state="hidden"] {
|
135
|
+
transform: scale(0.2) translate(-50%);
|
136
|
+
}
|
137
|
+
.tippy-box[data-placement^="left"] > .tippy-backdrop {
|
138
|
+
transform-origin: 50% 0;
|
139
|
+
border-radius: 50% 0 0 50%;
|
140
|
+
}
|
141
|
+
.tippy-box[data-placement^="left"] > .tippy-backdrop[data-state="visible"] {
|
142
|
+
transform: scale(1) translate(-50%, -50%);
|
143
|
+
}
|
144
|
+
.tippy-box[data-placement^="left"] > .tippy-backdrop[data-state="hidden"] {
|
145
|
+
transform: scale(0.2) translate(-75%, -50%);
|
146
|
+
}
|
147
|
+
.tippy-box[data-placement^="right"] > .tippy-backdrop {
|
148
|
+
transform-origin: -50% 0;
|
149
|
+
border-radius: 0 50% 50% 0;
|
150
|
+
}
|
151
|
+
.tippy-box[data-placement^="right"] > .tippy-backdrop[data-state="visible"] {
|
152
|
+
transform: scale(1) translate(-50%, -50%);
|
153
|
+
}
|
154
|
+
.tippy-box[data-placement^="right"] > .tippy-backdrop[data-state="hidden"] {
|
155
|
+
transform: scale(0.2) translate(-25%, -50%);
|
156
|
+
}
|
157
|
+
.tippy-box[data-animatefill] {
|
158
|
+
background-color: transparent !important;
|
159
|
+
}
|
160
|
+
.tippy-backdrop {
|
161
|
+
position: absolute;
|
162
|
+
background-color: #333;
|
163
|
+
border-radius: 50%;
|
164
|
+
width: calc(110% + 32px);
|
165
|
+
left: 50%;
|
166
|
+
top: 50%;
|
167
|
+
z-index: -1;
|
168
|
+
transition: all cubic-bezier(0.46, 0.1, 0.52, 0.98);
|
169
|
+
-webkit-backface-visibility: hidden;
|
170
|
+
backface-visibility: hidden;
|
171
|
+
}
|
172
|
+
.tippy-backdrop[data-state="hidden"] {
|
173
|
+
opacity: 0;
|
174
|
+
}
|
175
|
+
.tippy-backdrop:after {
|
176
|
+
content: "";
|
177
|
+
float: left;
|
178
|
+
padding-top: 100%;
|
179
|
+
}
|
180
|
+
.tippy-backdrop + .tippy-content {
|
181
|
+
transition-property: opacity;
|
182
|
+
will-change: opacity;
|
183
|
+
}
|
184
|
+
.tippy-backdrop + .tippy-content[data-state="hidden"] {
|
185
|
+
opacity: 0;
|
186
|
+
}
|
187
|
+
.tippy-box {
|
188
|
+
border: 1px transparent;
|
189
|
+
}
|
190
|
+
.tippy-box[data-placement^="top"] > .tippy-arrow:after {
|
191
|
+
border-top-color: inherit;
|
192
|
+
border-width: 8px 8px 0;
|
193
|
+
bottom: -8px;
|
194
|
+
left: 0;
|
195
|
+
}
|
196
|
+
.tippy-box[data-placement^="bottom"] > .tippy-arrow:after {
|
197
|
+
border-bottom-color: inherit;
|
198
|
+
border-width: 0 8px 8px;
|
199
|
+
top: -8px;
|
200
|
+
left: 0;
|
201
|
+
}
|
202
|
+
.tippy-box[data-placement^="left"] > .tippy-arrow:after {
|
203
|
+
border-left-color: inherit;
|
204
|
+
border-width: 8px 0 8px 8px;
|
205
|
+
right: -8px;
|
206
|
+
top: 0;
|
207
|
+
}
|
208
|
+
.tippy-box[data-placement^="right"] > .tippy-arrow:after {
|
209
|
+
border-width: 8px 8px 8px 0;
|
210
|
+
left: -8px;
|
211
|
+
top: 0;
|
212
|
+
border-right-color: inherit;
|
213
|
+
}
|
214
|
+
.tippy-box[data-placement^="top"] > .tippy-svg-arrow > svg:first-child:not(:last-child) {
|
215
|
+
top: 17px;
|
216
|
+
}
|
217
|
+
.tippy-box[data-placement^="bottom"] > .tippy-svg-arrow > svg:first-child:not(:last-child) {
|
218
|
+
bottom: 17px;
|
219
|
+
}
|
220
|
+
.tippy-box[data-placement^="left"] > .tippy-svg-arrow > svg:first-child:not(:last-child) {
|
221
|
+
left: 12px;
|
222
|
+
}
|
223
|
+
.tippy-box[data-placement^="right"] > .tippy-svg-arrow > svg:first-child:not(:last-child) {
|
224
|
+
right: 12px;
|
225
|
+
}
|
226
|
+
.tippy-arrow {
|
227
|
+
border-color: inherit;
|
228
|
+
}
|
229
|
+
.tippy-arrow:after {
|
230
|
+
content: "";
|
231
|
+
z-index: -1;
|
232
|
+
position: absolute;
|
233
|
+
border-color: transparent;
|
234
|
+
border-style: solid;
|
235
|
+
}
|
@@ -43,7 +43,8 @@ export default class SidebarMenuItemComponentController extends ApplicationContr
|
|
43
43
|
event.preventDefault()
|
44
44
|
}
|
45
45
|
}
|
46
|
-
|
46
|
+
// This breaks turbo, so we need to keep the propagation.
|
47
|
+
// event.stopPropagation();
|
47
48
|
}
|
48
49
|
|
49
50
|
openListener(event) {
|
data/lib/satis/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: satis
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.
|
4
|
+
version: 2.1.23
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tom de Grunt
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-06-
|
11
|
+
date: 2024-06-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: browser
|