form-driver 0.2.3 → 0.3.0

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/m3.css CHANGED
@@ -134,7 +134,7 @@ table.M3_table tr:last-child td {
134
134
  }
135
135
  .ant-rate .ant-rate-star-zero .ant-rate-star-first,
136
136
  .ant-rate .ant-rate-star-zero .ant-rate-star-second {
137
- color: #666;
137
+ color: #a2a2a2;
138
138
  }
139
139
  .ant-rate .ant-rate-star {
140
140
  flex: 1;
@@ -353,3 +353,50 @@ table.M3_table tr:last-child td {
353
353
  display: inline-block;
354
354
  white-space: nowrap;
355
355
  }
356
+
357
+ .m3-plugin-ossupload-progress-modal {
358
+ display: block;
359
+ position: fixed;
360
+ right: 30px;
361
+ bottom: 30px;
362
+ width: 400px;
363
+ padding: 14px 24px 24px 24px;
364
+ border-radius: 5px;
365
+ background-color: #fff;
366
+ box-shadow: 2px 2px 24px 2px rgba(0, 0, 0, 0.1);
367
+ }
368
+ .m3-plugin-ossupload-progress-modal .cancel-icon {
369
+ text-align: right;
370
+ }
371
+ .m3-plugin-ossupload-progress-modal .divider {
372
+ width: calc(100% + 48px);
373
+ margin: 4px -24px 12px -24px;
374
+ }
375
+ .m3-plugin-ossupload-progress-modal .link-text {
376
+ color: #1890ff;
377
+ cursor: pointer;
378
+ transition: color 0.3s;
379
+ pointer-events: auto;
380
+ }
381
+ .m3-plugin-ossupload-progress-modal .progress-list {
382
+ min-height: 30px;
383
+ max-height: 400px;
384
+ overflow-y: scroll;
385
+ }
386
+ .m3-plugin-ossupload-progress-modal .progress-list .upload-progress-box {
387
+ display: flex;
388
+ }
389
+ .m3-plugin-ossupload-progress-modal .progress-list .upload-progress-box .file-name {
390
+ cursor: default;
391
+ width: 110px;
392
+ overflow: hidden;
393
+ white-space: nowrap;
394
+ text-overflow: ellipsis;
395
+ display: inline-block;
396
+ }
397
+ .m3-plugin-ossupload-progress-modal .progress-list .none {
398
+ width: 100%;
399
+ height: 100%;
400
+ text-align: center;
401
+ line-height: 30px;
402
+ }