@omnia/runtime 8.0.222-dev → 8.0.223-dev
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/bundles/omnia.fx.ux_dee030cc-4ab3-4158-bb06-8049f5c67542.css +97 -19
- package/dist/localizations/bb000000-0000-bbbb-0000-0000000000bb_localized.loc.public.en-us.json +1 -1
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_admin_manifests.json +1 -1
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_docs_manifests.json +1 -1
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_public_manifests.json +1 -1
- package/package.json +5 -5
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
.om8a6f2:not(#\#):not(#\#){row-gap:var(--rowGap,revert)}
|
|
44
44
|
.o1w9wy87:not(#\#):not(#\#){text-align:var(--textAlign,revert)}
|
|
45
45
|
.otc2z4j:not(#\#):not(#\#){text-fill-color:var(--textFillColor,revert)}
|
|
46
|
+
.o9227vg:not(#\#):not(#\#){text-overflow:var(--textOverflow,revert)}
|
|
46
47
|
.o8rf0a0:not(#\#):not(#\#){text-transform:var(--textTransform,revert)}
|
|
47
48
|
.o1yesafu:not(#\#):not(#\#){transform-origin:var(--transformOrigin,revert)}
|
|
48
49
|
.o1v0jg1i:not(#\#):not(#\#){transform:var(--transform,revert)}
|
|
@@ -82,7 +83,7 @@
|
|
|
82
83
|
width: var(--width, revert) !important
|
|
83
84
|
}
|
|
84
85
|
|
|
85
|
-
.o-ip-
|
|
86
|
+
.o-ip-h {
|
|
86
87
|
height: var(--height, revert) !important
|
|
87
88
|
}
|
|
88
89
|
|
|
@@ -209,81 +210,81 @@
|
|
|
209
210
|
/* sm size */
|
|
210
211
|
@media screen and (max-width: 420px) {
|
|
211
212
|
.o-media-sm-fs {
|
|
212
|
-
font-size: var(--fontSize, revert);
|
|
213
|
+
font-size: var(--fontSize-sm, revert);
|
|
213
214
|
}
|
|
214
215
|
|
|
215
216
|
.o-media-sm-fw {
|
|
216
|
-
font-weight: var(--fontWeight, revert);
|
|
217
|
+
font-weight: var(--fontWeight-sm, revert);
|
|
217
218
|
}
|
|
218
219
|
|
|
219
220
|
.o-media-sm-lh {
|
|
220
|
-
line-height: var(--lineHeight, revert);
|
|
221
|
+
line-height: var(--lineHeight-sm, revert);
|
|
221
222
|
}
|
|
222
223
|
|
|
223
224
|
.o-ip-media-sm-fs {
|
|
224
|
-
font-size: var(--fontSize, revert) !important;
|
|
225
|
+
font-size: var(--fontSize-sm, revert) !important;
|
|
225
226
|
}
|
|
226
227
|
|
|
227
228
|
.o-ip-media-sm-fw {
|
|
228
|
-
font-weight: var(--fontWeight, revert) !important;
|
|
229
|
+
font-weight: var(--fontWeight-sm, revert) !important;
|
|
229
230
|
}
|
|
230
231
|
|
|
231
232
|
.o-ip-media-sm-lh {
|
|
232
|
-
line-height: var(--lineHeight, revert) !important;
|
|
233
|
+
line-height: var(--lineHeight-sm, revert) !important;
|
|
233
234
|
}
|
|
234
235
|
}
|
|
235
236
|
|
|
236
237
|
/* medium size */
|
|
237
238
|
@media screen and (min-width: 420px) and (max-width: 1200px) {
|
|
238
239
|
.o-media-md-fs {
|
|
239
|
-
font-size: var(--fontSize, revert);
|
|
240
|
+
font-size: var(--fontSize-md, revert);
|
|
240
241
|
}
|
|
241
242
|
|
|
242
243
|
.o-media-md-fw {
|
|
243
|
-
font-weight: var(--fontWeight, revert);
|
|
244
|
+
font-weight: var(--fontWeight-md, revert);
|
|
244
245
|
}
|
|
245
246
|
|
|
246
247
|
.o-media-md-lh {
|
|
247
|
-
line-height: var(--lineHeight, revert);
|
|
248
|
+
line-height: var(--lineHeight-md, revert);
|
|
248
249
|
}
|
|
249
250
|
|
|
250
251
|
.o-ip-media-md-fs {
|
|
251
|
-
font-size: var(--fontSize, revert) !important;
|
|
252
|
+
font-size: var(--fontSize-md, revert) !important;
|
|
252
253
|
}
|
|
253
254
|
|
|
254
255
|
.o-ip-media-md-fw {
|
|
255
|
-
font-weight: var(--fontWeight, revert) !important;
|
|
256
|
+
font-weight: var(--fontWeight-md, revert) !important;
|
|
256
257
|
}
|
|
257
258
|
|
|
258
259
|
.o-ip-media-md-lh {
|
|
259
|
-
line-height: var(--lineHeight, revert) !important;
|
|
260
|
+
line-height: var(--lineHeight-md, revert) !important;
|
|
260
261
|
}
|
|
261
262
|
}
|
|
262
263
|
|
|
263
264
|
/* large size */
|
|
264
265
|
@media screen and (min-width: 1201px) {
|
|
265
266
|
.o-media-lg-fs {
|
|
266
|
-
font-size: var(--fontSize, revert);
|
|
267
|
+
font-size: var(--fontSize-lg, revert);
|
|
267
268
|
}
|
|
268
269
|
|
|
269
270
|
.o-media-lg-fw {
|
|
270
|
-
font-weight: var(--fontWeight, revert);
|
|
271
|
+
font-weight: var(--fontWeight-lg, revert);
|
|
271
272
|
}
|
|
272
273
|
|
|
273
274
|
.o-media-lg-lh {
|
|
274
|
-
line-height: var(--lineHeight, revert);
|
|
275
|
+
line-height: var(--lineHeight-lg, revert);
|
|
275
276
|
}
|
|
276
277
|
|
|
277
278
|
.o-ip-media-lg-fs {
|
|
278
|
-
font-size: var(--fontSize, revert) !important;
|
|
279
|
+
font-size: var(--fontSize-lg, revert) !important;
|
|
279
280
|
}
|
|
280
281
|
|
|
281
282
|
.o-ip-media-lg-fw {
|
|
282
|
-
font-weight: var(--fontWeight, revert) !important;
|
|
283
|
+
font-weight: var(--fontWeight-lg, revert) !important;
|
|
283
284
|
}
|
|
284
285
|
|
|
285
286
|
.o-ip-media-lg-lh {
|
|
286
|
-
line-height: var(--lineHeight, revert) !important;
|
|
287
|
+
line-height: var(--lineHeight-lg, revert) !important;
|
|
287
288
|
}
|
|
288
289
|
}
|
|
289
290
|
|
|
@@ -1689,3 +1690,80 @@ html[data-omfx] pre {
|
|
|
1689
1690
|
padding-right: 0 !important;
|
|
1690
1691
|
|
|
1691
1692
|
}
|
|
1693
|
+
.o-list-nest-mh .v-list-item__content {
|
|
1694
|
+
max-height: 20px;
|
|
1695
|
+
}
|
|
1696
|
+
|
|
1697
|
+
.o-list-nest-b .v-list-item {
|
|
1698
|
+
border-bottom: var(--borderBottom, revert);
|
|
1699
|
+
}
|
|
1700
|
+
|
|
1701
|
+
.o-list-item-nest-mh .v-list-item__content {
|
|
1702
|
+
max-height: 50px;
|
|
1703
|
+
}
|
|
1704
|
+
|
|
1705
|
+
.o-list-item-nest-h .v-list-item__content {
|
|
1706
|
+
height: 45px;
|
|
1707
|
+
}
|
|
1708
|
+
|
|
1709
|
+
.o-list-item-nest-jc .v-list-item__content {
|
|
1710
|
+
justify-content: center;
|
|
1711
|
+
}
|
|
1712
|
+
|
|
1713
|
+
|
|
1714
|
+
.o-list-item-wrapper .v-list-item__content {
|
|
1715
|
+
display: flex;
|
|
1716
|
+
align-items: center;
|
|
1717
|
+
overflow: visible;
|
|
1718
|
+
}
|
|
1719
|
+
|
|
1720
|
+
.o-list-item-hover:hover i {
|
|
1721
|
+
cursor: pointer;
|
|
1722
|
+
}
|
|
1723
|
+
.o-checkbox-wrapper.v-selection-control--dirty,
|
|
1724
|
+
.o-checkbox-wrapper i,
|
|
1725
|
+
.o-checkbox-wrapper .v-selection-control--dirty i,
|
|
1726
|
+
.o-checkbox-wrapper .v-selection-control--dirty label {
|
|
1727
|
+
color: var(--color, revert)
|
|
1728
|
+
}
|
|
1729
|
+
|
|
1730
|
+
.o-checkbox-wrapper .v-selection-control {
|
|
1731
|
+
min-height: 40px;
|
|
1732
|
+
}
|
|
1733
|
+
|
|
1734
|
+
.o-checkbox-wrapper label {
|
|
1735
|
+
color: var(--textColor, revert);
|
|
1736
|
+
font-family: var(--fontFamily, revert);
|
|
1737
|
+
font-size: var(--fontSize, revert);
|
|
1738
|
+
font-weight: var(--fontWeight, revert);
|
|
1739
|
+
line-height: var(--lineHeight, revert);
|
|
1740
|
+
text-decoration: var(--textDecoration, revert) !important
|
|
1741
|
+
}
|
|
1742
|
+
|
|
1743
|
+
/* medium size */
|
|
1744
|
+
@media screen and (min-width: 420px) and (max-width: 1200px) {
|
|
1745
|
+
.o-checkbox-wrapper label {
|
|
1746
|
+
font-size: var(--fontSize-md, revert) !important;
|
|
1747
|
+
font-weight: var(--fontWeight-md, revert) !important;
|
|
1748
|
+
line-height: var(--lineHeight-md, revert) !important;
|
|
1749
|
+
}
|
|
1750
|
+
}
|
|
1751
|
+
.o-chip-nest::after {
|
|
1752
|
+
content: "";
|
|
1753
|
+
display: block;
|
|
1754
|
+
width: 100%;
|
|
1755
|
+
height: 100%;
|
|
1756
|
+
border-radius: 50%;
|
|
1757
|
+
position: absolute;
|
|
1758
|
+
top: 0;
|
|
1759
|
+
left: 0;
|
|
1760
|
+
box-shadow: "inset 10px 24px 40px 0px white, inset -10px -24px 40px 0px white, inset 20px -10px 40px 0px white,inset -20px 10px 40px 0px white"
|
|
1761
|
+
}
|
|
1762
|
+
.o-cp-nest-bw .v-color-picker__controls {
|
|
1763
|
+
margin-top: -12px;
|
|
1764
|
+
padding-top: 0 !important;
|
|
1765
|
+
}
|
|
1766
|
+
|
|
1767
|
+
.o-cp-nest-tw .v-color-picker__controls {
|
|
1768
|
+
padding-bottom: 0 !important;
|
|
1769
|
+
}
|