zydx-plus 1.35.478 → 1.35.479
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/package.json
CHANGED
|
@@ -342,6 +342,7 @@ export default defineComponent({
|
|
|
342
342
|
position: relative;
|
|
343
343
|
opacity: 1;
|
|
344
344
|
overflow: scroll;
|
|
345
|
+
border-top: 1px solid #cccccc;
|
|
345
346
|
}
|
|
346
347
|
|
|
347
348
|
.table_wrapper::-webkit-scrollbar {
|
|
@@ -353,7 +354,6 @@ export default defineComponent({
|
|
|
353
354
|
table-layout: fixed;
|
|
354
355
|
display: table;
|
|
355
356
|
max-width: 100%;
|
|
356
|
-
border-top: 1px solid #cccccc;
|
|
357
357
|
border-left: 1px solid #cccccc;
|
|
358
358
|
margin: 0 auto;
|
|
359
359
|
border-spacing: 0;
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
</div>
|
|
90
90
|
</div>
|
|
91
91
|
|
|
92
|
-
<div v-if="!readOnly && toolbar.length > 0" class="complete">
|
|
92
|
+
<div v-if="!readOnly && toolbar.length > 0 && butShow" class="complete">
|
|
93
93
|
<button v-if="butShow" class="but" @click="confirm">完成</button>
|
|
94
94
|
</div>
|
|
95
95
|
|
|
@@ -4095,13 +4095,13 @@ export default {
|
|
|
4095
4095
|
background-color: #fff;
|
|
4096
4096
|
box-sizing: border-box;
|
|
4097
4097
|
position: relative;
|
|
4098
|
-
|
|
4098
|
+
border: 1px solid #CCCCCC;
|
|
4099
4099
|
margin-bottom: 10px;
|
|
4100
|
-
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5)
|
|
4100
|
+
/*box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);*/
|
|
4101
4101
|
}
|
|
4102
4102
|
|
|
4103
4103
|
.read-only-page:last-child {
|
|
4104
|
-
|
|
4104
|
+
margin-bottom: 0;
|
|
4105
4105
|
}
|
|
4106
4106
|
|
|
4107
4107
|
.read-only-p {
|
|
@@ -4130,6 +4130,8 @@ export default {
|
|
|
4130
4130
|
|
|
4131
4131
|
:deep(.title) {
|
|
4132
4132
|
/*padding: 10px 0 2px 0;*/
|
|
4133
|
+
font-weight: 900;
|
|
4134
|
+
color:#333333;
|
|
4133
4135
|
}
|
|
4134
4136
|
|
|
4135
4137
|
.read-only-a {
|
|
@@ -4143,7 +4145,7 @@ export default {
|
|
|
4143
4145
|
}
|
|
4144
4146
|
|
|
4145
4147
|
.complete {
|
|
4146
|
-
padding: 0 10px
|
|
4148
|
+
padding: 0 10px 0px 10px;
|
|
4147
4149
|
text-align: right;
|
|
4148
4150
|
}
|
|
4149
4151
|
|
|
@@ -4242,7 +4244,7 @@ label {
|
|
|
4242
4244
|
}
|
|
4243
4245
|
|
|
4244
4246
|
:deep(.custom-link) {
|
|
4245
|
-
|
|
4247
|
+
/*//margin: 10px 0;*/
|
|
4246
4248
|
}
|
|
4247
4249
|
|
|
4248
4250
|
:deep(.mu) {
|
|
@@ -4373,6 +4375,7 @@ li {
|
|
|
4373
4375
|
position: relative;
|
|
4374
4376
|
display: flex;
|
|
4375
4377
|
align-items: center;
|
|
4378
|
+
border: 1px solid #CCCCCC;
|
|
4376
4379
|
}
|
|
4377
4380
|
|
|
4378
4381
|
.editing-cont {
|
|
@@ -4502,7 +4505,8 @@ li {
|
|
|
4502
4505
|
|
|
4503
4506
|
|
|
4504
4507
|
.menu-one {
|
|
4505
|
-
|
|
4508
|
+
/*max-width: 557px; min-width: 300px; width: max-content; padding: 10px; border-radius: 7px;
|
|
4509
|
+
//margin:0 100px; box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.58); background: #FFFFFF; display: flex; flex-direction: column; justify-content: space-between; z-index: 10 !important;*/
|
|
4506
4510
|
}
|
|
4507
4511
|
|
|
4508
4512
|
.menu-one-text {
|
|
@@ -4514,7 +4518,7 @@ li {
|
|
|
4514
4518
|
font-weight: 400;
|
|
4515
4519
|
overflow-y: auto;
|
|
4516
4520
|
font-family: FangSong;
|
|
4517
|
-
|
|
4521
|
+
/*text-indent: 2em; margin-bottom: 6px;*/
|
|
4518
4522
|
}
|
|
4519
4523
|
|
|
4520
4524
|
.menu-one-title {
|
|
@@ -1356,7 +1356,9 @@ export default {
|
|
|
1356
1356
|
display: inline-block;
|
|
1357
1357
|
margin: 0 auto;
|
|
1358
1358
|
position: relative;
|
|
1359
|
-
|
|
1359
|
+
border: 1px solid #cccccc;
|
|
1360
|
+
overflow: hidden;
|
|
1361
|
+
/*box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);*/
|
|
1360
1362
|
/*cursor: none;*/
|
|
1361
1363
|
}
|
|
1362
1364
|
|
|
@@ -1440,8 +1442,8 @@ export default {
|
|
|
1440
1442
|
.book {
|
|
1441
1443
|
width: 100%;
|
|
1442
1444
|
/*min-height: 600px;*/
|
|
1443
|
-
max-height: 1200px;
|
|
1444
|
-
overflow-y: auto
|
|
1445
|
+
/*max-height: 1200px;
|
|
1446
|
+
overflow-y: auto;*/
|
|
1445
1447
|
}
|
|
1446
1448
|
|
|
1447
1449
|
.book::-webkit-scrollbar{
|
|
@@ -280,10 +280,13 @@ export default {
|
|
|
280
280
|
}
|
|
281
281
|
.pageContainer{
|
|
282
282
|
width: 100%;
|
|
283
|
-
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5)
|
|
283
|
+
/*box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);*/
|
|
284
284
|
margin-bottom: 10px;
|
|
285
285
|
display: inline-block;
|
|
286
286
|
position: relative;
|
|
287
|
+
box-sizing: border-box;
|
|
288
|
+
overflow: hidden;
|
|
289
|
+
border: 1px solid #cccccc;
|
|
287
290
|
}
|
|
288
291
|
.mp4,.mp3{
|
|
289
292
|
max-width: 100%;
|