@steedos-widgets/amis-object 1.0.39 → 1.0.41

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.
@@ -366,6 +366,9 @@ body {
366
366
  .flex {
367
367
  display: flex
368
368
  }
369
+ .inline-flex {
370
+ display: inline-flex
371
+ }
369
372
  .table {
370
373
  display: table
371
374
  }
@@ -432,6 +435,12 @@ body {
432
435
  .w-12 {
433
436
  width: 3rem
434
437
  }
438
+ .w-1\/3 {
439
+ width: 33.333333%
440
+ }
441
+ .w-full {
442
+ width: 100%
443
+ }
435
444
  .w-10 {
436
445
  width: 2.5rem
437
446
  }
@@ -444,9 +453,6 @@ body {
444
453
  .\!w-full {
445
454
  width: 100% !important
446
455
  }
447
- .w-full {
448
- width: 100%
449
- }
450
456
  .w-8 {
451
457
  width: 2rem
452
458
  }
@@ -488,6 +494,9 @@ body {
488
494
  .flex-col {
489
495
  flex-direction: column
490
496
  }
497
+ .flex-wrap {
498
+ flex-wrap: wrap
499
+ }
491
500
  .items-center {
492
501
  align-items: center
493
502
  }
@@ -595,6 +604,9 @@ body {
595
604
  .fill-slate-500 {
596
605
  fill: #64748b
597
606
  }
607
+ .fill-gray-500 {
608
+ fill: #6b7280
609
+ }
598
610
  .p-4 {
599
611
  padding: 1rem
600
612
  }
@@ -1048,8 +1060,10 @@ body.sidebar-open .sidebar-wrapper {
1048
1060
  body.sidebar #sidebar {
1049
1061
  margin-top: 50px;
1050
1062
  }
1051
- body.sidebar.sidebar-open #main {
1052
- margin-left: 220px;
1063
+ @media (min-width: 768px) {
1064
+ body.sidebar.sidebar-open #main {
1065
+ margin-left: 220px;
1066
+ }
1053
1067
  }
1054
1068
  @media (max-width: 768px) {
1055
1069
  body.sidebar.sidebar-open #sidebar {
@@ -1148,3 +1162,34 @@ body.sidebar.sidebar-open #main {
1148
1162
  .steedos-amis-instance-view .form-control {
1149
1163
  background: no-repeat;
1150
1164
  }
1165
+ .steedos-amis-instance-view .form-control .antd-Table-table thead th {
1166
+ background: transparent !important;
1167
+ border-color: #000;
1168
+ }
1169
+ .steedos-amis-instance-view .form-control .antd-Table-table tbody td {
1170
+ border: 1px solid #000;
1171
+ padding-left: 0.75rem !important;
1172
+ }
1173
+ .steedos-amis-instance-view .form-control .antd-Table-table tbody td:last-child {
1174
+ border-right: none !important;
1175
+ }
1176
+ .steedos-amis-instance-view .form-control .antd-Table-table tbody td:first-child {
1177
+ border-left: none !important;
1178
+ }
1179
+ .steedos-amis-instance-view .form-control .antd-Table-table tbody tr:last-child td {
1180
+ border-bottom: none !important;
1181
+ }
1182
+ .steedos-amis-instance-view .form-control .antd-InputTable .antd-Table {
1183
+ margin-bottom: 0px;
1184
+ }
1185
+ .steedos-amis-instance-view .form-control .antd-InputTable .antd-InputTable-toolbar {
1186
+ border-top: 1px solid #000;
1187
+ }
1188
+ .steedos-amis-instance-view .form-control .antd-InputTable .antd-InputTable-toolbar button {
1189
+ width: 100%;
1190
+ height: 100%;
1191
+ border-radius: 0px;
1192
+ background: transparent;
1193
+ border: none;
1194
+ color: #000;
1195
+ }