@tuya-miniapp/ark-extension-virtual-device 1.8.12 → 1.8.13
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/view/app.min.css +14 -15
- package/dist/view/app.min.js +1 -1
- package/dist/view/index.html +1 -1
- package/dist/worker/index.js +1220 -675
- package/package.json +2 -2
package/dist/view/app.min.css
CHANGED
|
@@ -1228,7 +1228,7 @@ template {
|
|
|
1228
1228
|
}
|
|
1229
1229
|
.extension-container .head h1 {
|
|
1230
1230
|
/* 文字/标准 */
|
|
1231
|
-
color: #
|
|
1231
|
+
color: #bbbbbb;
|
|
1232
1232
|
}
|
|
1233
1233
|
.extension-container .list {
|
|
1234
1234
|
display: grid;
|
|
@@ -1236,7 +1236,7 @@ template {
|
|
|
1236
1236
|
row-gap: 30px;
|
|
1237
1237
|
column-gap: 30px;
|
|
1238
1238
|
padding: 16px;
|
|
1239
|
-
height: calc(100vh -
|
|
1239
|
+
height: calc(100vh - 64px);
|
|
1240
1240
|
overflow: scroll;
|
|
1241
1241
|
overflow-x: hidden;
|
|
1242
1242
|
}
|
|
@@ -1264,7 +1264,7 @@ template {
|
|
|
1264
1264
|
min-width: 400px;
|
|
1265
1265
|
width: 100%;
|
|
1266
1266
|
/* 面板/背景 */
|
|
1267
|
-
background: #
|
|
1267
|
+
background: #3c3f41;
|
|
1268
1268
|
display: flex;
|
|
1269
1269
|
align-items: center;
|
|
1270
1270
|
justify-content: space-between;
|
|
@@ -1272,7 +1272,6 @@ template {
|
|
|
1272
1272
|
border-radius: 16px;
|
|
1273
1273
|
height: 200px;
|
|
1274
1274
|
/* Elevation = 1 */
|
|
1275
|
-
box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.24), 0px 0px 2px 0px rgba(0, 0, 0, 0.12);
|
|
1276
1275
|
}
|
|
1277
1276
|
.ext-item .icon {
|
|
1278
1277
|
width: 80px;
|
|
@@ -1295,7 +1294,7 @@ template {
|
|
|
1295
1294
|
.ext-item .info .info-item .title {
|
|
1296
1295
|
font-size: 16px;
|
|
1297
1296
|
/* 文字/标准 */
|
|
1298
|
-
color: #
|
|
1297
|
+
color: #bbbbbb;
|
|
1299
1298
|
font-weight: 600;
|
|
1300
1299
|
}
|
|
1301
1300
|
.ext-item .info .info-item .version {
|
|
@@ -1304,12 +1303,12 @@ template {
|
|
|
1304
1303
|
font-weight: 500;
|
|
1305
1304
|
line-height: 16px;
|
|
1306
1305
|
/* 填充/二级背景 */
|
|
1307
|
-
background: #
|
|
1306
|
+
background: #4c5052;
|
|
1308
1307
|
/* 成功色/文本色 */
|
|
1309
|
-
color: #
|
|
1308
|
+
color: #44b257;
|
|
1310
1309
|
padding: 0 2px;
|
|
1311
1310
|
/* 成功色/成功色 */
|
|
1312
|
-
border: 1px solid #
|
|
1311
|
+
border: 1px solid #21a43b;
|
|
1313
1312
|
border-radius: 2px;
|
|
1314
1313
|
}
|
|
1315
1314
|
.ext-item .info .info-item .installed {
|
|
@@ -1318,12 +1317,12 @@ template {
|
|
|
1318
1317
|
font-weight: 500;
|
|
1319
1318
|
line-height: 16px;
|
|
1320
1319
|
/* 警戒色/文本色 */
|
|
1321
|
-
color: #
|
|
1320
|
+
color: #e19f51;
|
|
1322
1321
|
padding: 0 2px;
|
|
1323
1322
|
/* 填充/二级背景 */
|
|
1324
|
-
background: #
|
|
1323
|
+
background: #4c5052;
|
|
1325
1324
|
/* 警戒色/警戒色 */
|
|
1326
|
-
border: 1px solid #
|
|
1325
|
+
border: 1px solid #ea8a24;
|
|
1327
1326
|
margin-left: 8px;
|
|
1328
1327
|
border-radius: 2px;
|
|
1329
1328
|
}
|
|
@@ -1336,14 +1335,14 @@ template {
|
|
|
1336
1335
|
.ext-item .info .install-container .uninstall {
|
|
1337
1336
|
height: 32px;
|
|
1338
1337
|
/* 填充/二级背景 */
|
|
1339
|
-
background: #
|
|
1338
|
+
background: #4c5052;
|
|
1340
1339
|
border-radius: 2px;
|
|
1341
1340
|
padding: 5px 16px;
|
|
1342
1341
|
border: unset;
|
|
1343
1342
|
/* 分割/边框 */
|
|
1344
1343
|
border: 1px solid #555555;
|
|
1345
1344
|
/* 文字/标准 */
|
|
1346
|
-
color: #
|
|
1345
|
+
color: #bbbbbb;
|
|
1347
1346
|
}
|
|
1348
1347
|
.ext-item .info .author {
|
|
1349
1348
|
display: flex;
|
|
@@ -1362,7 +1361,7 @@ template {
|
|
|
1362
1361
|
line-height: 14px;
|
|
1363
1362
|
letter-spacing: 0px;
|
|
1364
1363
|
/* 文字/标准 */
|
|
1365
|
-
color: #
|
|
1364
|
+
color: #bbbbbb;
|
|
1366
1365
|
}
|
|
1367
1366
|
[data-theme='light'] .ext-item {
|
|
1368
1367
|
background: #ffffff;
|
|
@@ -1390,6 +1389,6 @@ template {
|
|
|
1390
1389
|
color: #000000d9;
|
|
1391
1390
|
}
|
|
1392
1391
|
[data-theme='light'] .ext-item .info .author .owner {
|
|
1393
|
-
color: #
|
|
1392
|
+
color: #306fff;
|
|
1394
1393
|
}
|
|
1395
1394
|
|