form-driver 0.3.14 → 0.4.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
@@ -318,6 +318,63 @@ table.M3_table tr:last-child td {
318
318
  margin-bottom: 5px;
319
319
  }
320
320
 
321
+ .diy-checkbox-wrapper:hover .diy-checkbox-icon {
322
+ transform: scale(1.1);
323
+ }
324
+ .diy-checkbox-wrapper .diy-checkbox-icon {
325
+ display: inline-flex;
326
+ align-items: center;
327
+ justify-content: center;
328
+ width: 16px;
329
+ height: 16px;
330
+ border: 1px solid #d9d9d9;
331
+ border-radius: 2px;
332
+ transition: all 0.3s;
333
+ }
334
+ .diy-checkbox-wrapper .diy-checkbox-icon.checked {
335
+ background-color: #1890ff;
336
+ border-color: #1890ff;
337
+ color: white;
338
+ }
339
+ .diy-checkbox-wrapper .diy-checkbox-icon.indeterminate {
340
+ background-color: #1890ff;
341
+ border-color: #1890ff;
342
+ color: white;
343
+ }
344
+ .diy-checkbox-wrapper .diy-checkbox-icon:hover {
345
+ border-color: #40a9ff;
346
+ }
347
+ .diy-checkbox-wrapper .diy-checkbox-label {
348
+ -webkit-user-select: none;
349
+ -moz-user-select: none;
350
+ -ms-user-select: none;
351
+ user-select: none;
352
+ }
353
+
354
+ .sortDrag .dragItem {
355
+ display: flex;
356
+ justify-content: space-between;
357
+ padding: 4px 8px;
358
+ background: #fff;
359
+ font-size: 16px;
360
+ transition: background 0.2s, box-shadow 0.2s;
361
+ cursor: -webkit-grab;
362
+ cursor: grab;
363
+ }
364
+ .sortDrag .dragItem.dragging {
365
+ background: #bae7ff;
366
+ box-shadow: 0 2px 8px rgba(24,144,255,0.2);
367
+ }
368
+ .sortDrag .dragItem.dropping {
369
+ background: #f2f2f2;
370
+ }
371
+ .sortDrag .dragBody {
372
+ flex: 1;
373
+ }
374
+ .sortDrag .dragHandle {
375
+ width: 40px;
376
+ }
377
+
321
378
  .form-driver-plugin-richtext-viewer-wrap .richtext-viewer-more {
322
379
  text-align: center;
323
380
  box-shadow: 0px -5px 5px rgba(232,232,232,0.38039);