@uxda/appkit 4.1.2 → 4.1.6
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.
- package/dist/appkit.css +8 -2
- package/dist/index.js +1043 -1104
- package/package.json +2 -2
- package/src/shared/components/OcrBusinessLicense.vue +55 -40
- package/src/shared/components/OcrIcon.vue +15 -2
package/dist/appkit.css
CHANGED
|
@@ -187,14 +187,20 @@
|
|
|
187
187
|
width: 24px;
|
|
188
188
|
height: 24px;
|
|
189
189
|
}
|
|
190
|
-
.ocr-icon {
|
|
190
|
+
.ocr-icon.disabled .ns-icon {
|
|
191
|
+
filter: brightness(1.5) grayscale(1);
|
|
192
|
+
}
|
|
193
|
+
.ocr-business-license {
|
|
191
194
|
width: 24px;
|
|
192
195
|
height: 24px;
|
|
193
196
|
}
|
|
194
|
-
.ocr-
|
|
197
|
+
.ocr-business-license .ns-icon {
|
|
195
198
|
width: 24px;
|
|
196
199
|
height: 24px;
|
|
197
200
|
}
|
|
201
|
+
.ocr-business-license.disabled .ns-icon {
|
|
202
|
+
filter: brightness(1.5) grayscale(1);
|
|
203
|
+
}
|
|
198
204
|
.recharge-view {
|
|
199
205
|
height: 100%;
|
|
200
206
|
display: flex;
|