rk-web-core 0.12.67 → 0.12.69
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rk-web-core",
|
|
3
3
|
"description": "iep core utils",
|
|
4
|
-
"version": "0.12.
|
|
4
|
+
"version": "0.12.69",
|
|
5
5
|
"author": "",
|
|
6
6
|
"main": "rk-web-core.js",
|
|
7
7
|
"scripts": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"nprogress": "^0.2.0",
|
|
17
17
|
"resize-observer-polyfill": "^1.5.1",
|
|
18
18
|
"store": "^2.0.12",
|
|
19
|
-
"rk-web-map": "^0.3.
|
|
19
|
+
"rk-web-map": "^0.3.136",
|
|
20
20
|
"jsencrypt": "^3.0.1",
|
|
21
21
|
"md5": "^2.3.0"
|
|
22
22
|
},
|
package/rk-web-core.css
CHANGED
|
@@ -170,10 +170,9 @@
|
|
|
170
170
|
.rk-web-core-extension {
|
|
171
171
|
width: 50px;
|
|
172
172
|
height: 50px;
|
|
173
|
-
background:
|
|
173
|
+
background: #f5222d;
|
|
174
174
|
border-radius: 50%;
|
|
175
175
|
touch-action: none;
|
|
176
|
-
/*防止谷歌浏览器监听touch事件时报错*/
|
|
177
176
|
animation: light 1s ease-in-out infinite alternate;
|
|
178
177
|
position: fixed;
|
|
179
178
|
top: 50%;
|
|
@@ -186,7 +185,8 @@
|
|
|
186
185
|
align-items: center;
|
|
187
186
|
}
|
|
188
187
|
.rk-web-core-extension svg {
|
|
189
|
-
fill: #
|
|
188
|
+
fill: #fff;
|
|
189
|
+
font-size: 20px;
|
|
190
190
|
}
|
|
191
191
|
.rk-web-core-extension-group {
|
|
192
192
|
display: grid;
|
|
@@ -198,12 +198,15 @@
|
|
|
198
198
|
justify-content: center;
|
|
199
199
|
align-items: center;
|
|
200
200
|
}
|
|
201
|
+
.rk-web-core-extension-tooltip .ant-tooltip-inner {
|
|
202
|
+
background: rgba(245, 34, 45, 0.3);
|
|
203
|
+
}
|
|
201
204
|
@keyframes light {
|
|
202
205
|
from {
|
|
203
|
-
box-shadow: 0 0 4px
|
|
206
|
+
box-shadow: 0 0 4px #f5222d;
|
|
204
207
|
}
|
|
205
208
|
to {
|
|
206
|
-
box-shadow: 0 0 20px
|
|
209
|
+
box-shadow: 0 0 20px #f5222d;
|
|
207
210
|
}
|
|
208
211
|
}
|
|
209
212
|
|