@lambo-design/workflow-approve 1.0.0-beta.83 → 1.0.0-beta.85
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 +2 -2
- package/src/components/history.vue +2 -2
- package/src/components/horizontal/attachment.vue +224 -224
- package/src/components/horizontal/history.vue +464 -464
- package/src/components/horizontal/opinion.vue +263 -263
- package/src/components/title.vue +24 -24
- package/src/horizontal.vue +1002 -1002
- package/src/styles/css/index.less +8 -0
- package/src/workflow-diagram.vue +1 -0
|
@@ -237,8 +237,16 @@
|
|
|
237
237
|
color: #808695;
|
|
238
238
|
}
|
|
239
239
|
|
|
240
|
+
.operating-instructions {
|
|
241
|
+
float: left;
|
|
242
|
+
font-size: 12px;
|
|
243
|
+
text-align: left;
|
|
244
|
+
color: #808695
|
|
245
|
+
}
|
|
246
|
+
|
|
240
247
|
.notes-div {
|
|
241
248
|
text-align: right;
|
|
249
|
+
float: right;
|
|
242
250
|
}
|
|
243
251
|
|
|
244
252
|
.notes-done-task {
|
package/src/workflow-diagram.vue
CHANGED