openatc-components 0.1.184 → 0.1.186
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/config/index.js +1 -0
- package/package/kisscomps/components/PatternStatus/PatternStatus.vue +20 -19
- package/package/kisscomps/components/SchemeConfig/SchemeConfig.vue +2 -0
- package/package/kissui.min.js +1 -1
- package/package.json +1 -1
- package/src/kisscomps/components/PatternStatus/PatternStatus.vue +20 -19
- package/src/kisscomps/components/SchemeConfig/SchemeConfig.vue +2 -0
- package/static/styles/overview.scss +20 -1
- package/src/node_modules/.package_versions.json +0 -1
package/package.json
CHANGED
|
@@ -297,6 +297,7 @@ export default {
|
|
|
297
297
|
if (this.patternStatusList && this.newCycle) {
|
|
298
298
|
setTimeout(() => {
|
|
299
299
|
this.handleCurrentChange(this.patternStatusList)
|
|
300
|
+
this.handleBarrierHeight()
|
|
300
301
|
}, 10)
|
|
301
302
|
this.handleBarrierHeight()
|
|
302
303
|
}
|
|
@@ -1416,26 +1417,26 @@ export default {
|
|
|
1416
1417
|
width: 3px;
|
|
1417
1418
|
// height: 99px;
|
|
1418
1419
|
z-index: 999;
|
|
1419
|
-
background-color
|
|
1420
|
-
}
|
|
1421
|
-
.curTimeLine {
|
|
1422
|
-
position: absolute;
|
|
1423
|
-
top: -10px;
|
|
1424
|
-
width: 4px;
|
|
1425
|
-
background-color: black;
|
|
1426
|
-
}
|
|
1427
|
-
.curTimeDiv {
|
|
1428
|
-
position: absolute;
|
|
1429
|
-
z-index:50;
|
|
1430
|
-
top: -21px;
|
|
1431
|
-
margin-left: -10px;
|
|
1432
|
-
text-align:center;
|
|
1433
|
-
vertical-align: middle;
|
|
1434
|
-
width: 60px;
|
|
1435
|
-
height: 19px;
|
|
1436
|
-
color:black;
|
|
1437
|
-
// background-color: black;
|
|
1420
|
+
background-color:#B9BABF;
|
|
1438
1421
|
}
|
|
1422
|
+
// .curTimeLine {
|
|
1423
|
+
// position: absolute;
|
|
1424
|
+
// top: -10px;
|
|
1425
|
+
// width: 4px;
|
|
1426
|
+
// background-color: black;
|
|
1427
|
+
// }
|
|
1428
|
+
// .curTimeDiv {
|
|
1429
|
+
// position: absolute;
|
|
1430
|
+
// z-index:50;
|
|
1431
|
+
// top: -21px;
|
|
1432
|
+
// margin-left: -10px;
|
|
1433
|
+
// text-align:center;
|
|
1434
|
+
// vertical-align: middle;
|
|
1435
|
+
// width: 60px;
|
|
1436
|
+
// height: 19px;
|
|
1437
|
+
// color:black;
|
|
1438
|
+
// // background-color: black;
|
|
1439
|
+
// }
|
|
1439
1440
|
}
|
|
1440
1441
|
.ring-first {
|
|
1441
1442
|
margin-top: 1px;
|
|
@@ -44,7 +44,26 @@
|
|
|
44
44
|
position: relative;
|
|
45
45
|
overflow-x: auto;
|
|
46
46
|
}
|
|
47
|
-
|
|
47
|
+
.main-patternstatus{
|
|
48
|
+
.curTimeLine {
|
|
49
|
+
position: absolute;
|
|
50
|
+
top: -10px;
|
|
51
|
+
width: 3px;
|
|
52
|
+
background-color: $--color-text-primary;
|
|
53
|
+
}
|
|
54
|
+
.curTimeDiv {
|
|
55
|
+
position: absolute;
|
|
56
|
+
z-index:50;
|
|
57
|
+
top: -21px;
|
|
58
|
+
margin-left: -10px;
|
|
59
|
+
text-align:center;
|
|
60
|
+
vertical-align: middle;
|
|
61
|
+
width: 60px;
|
|
62
|
+
height: 19px;
|
|
63
|
+
color:$--color-text-primary;
|
|
64
|
+
// background-color: black;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
48
67
|
.pattern-status {
|
|
49
68
|
min-height: 200PX;
|
|
50
69
|
margin-left: 20PX;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{}
|