@umbraco-cms/backoffice 16.0.0-rc3 → 16.0.0-rc5

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.
Files changed (142) hide show
  1. package/dist-cms/apps/backoffice/backoffice.context.js +5 -1
  2. package/dist-cms/apps/backoffice/components/backoffice-main.element.js +3 -1
  3. package/dist-cms/assets/lang/en-us.js +1 -1
  4. package/dist-cms/assets/lang/en-us.ts +1 -1
  5. package/dist-cms/css/uui-css.css +481 -100
  6. package/dist-cms/custom-elements.json +33 -17
  7. package/dist-cms/external/rxjs/index.d.ts +1 -1
  8. package/dist-cms/external/rxjs/index.js +3 -3
  9. package/dist-cms/external/uui/index.js +663 -393
  10. package/dist-cms/libs/context-api/consume/context-consumer.js +1 -2
  11. package/dist-cms/libs/controller-api/controller-host.mixin.js +2 -2
  12. package/dist-cms/libs/extension-api/controller/server-extension-registrator.controller.js +6 -2
  13. package/dist-cms/packages/block/block/context/block-entry.context.js +10 -3
  14. package/dist-cms/packages/block/block/workspace/views/edit/block-workspace-view-edit.element.js +1 -0
  15. package/dist-cms/packages/block/block-list/components/block-list-entry/block-list-entry.element.js +2 -1
  16. package/dist-cms/packages/content/content/components/property-type-based-property/index.d.ts +2 -0
  17. package/dist-cms/packages/content/content/components/property-type-based-property/index.js +2 -0
  18. package/dist-cms/packages/content/content/components/property-type-based-property/property-type-based-property.context-token.d.ts +8 -0
  19. package/dist-cms/packages/content/content/components/property-type-based-property/property-type-based-property.context-token.js +7 -0
  20. package/dist-cms/packages/content/content/{content-property.context.d.ts → components/property-type-based-property/property-type-based-property.context.d.ts} +6 -1
  21. package/dist-cms/packages/content/content/components/property-type-based-property/property-type-based-property.context.js +19 -0
  22. package/dist-cms/packages/content/content/components/property-type-based-property/property-type-based-property.element.d.ts +1 -1
  23. package/dist-cms/packages/content/content/components/property-type-based-property/property-type-based-property.element.js +8 -7
  24. package/dist-cms/packages/content/content/global-components/content-workspace-property.element.d.ts +26 -0
  25. package/dist-cms/packages/content/content/global-components/content-workspace-property.element.js +104 -0
  26. package/dist-cms/packages/content/content/global-components/index.d.ts +1 -0
  27. package/dist-cms/packages/content/content/global-components/index.js +1 -0
  28. package/dist-cms/packages/content/content/index.d.ts +1 -2
  29. package/dist-cms/packages/content/content/index.js +1 -2
  30. package/dist-cms/packages/content/content/workspace/content-detail-workspace-base.js +2 -1
  31. package/dist-cms/packages/content/content/workspace/views/edit/content-editor-properties.element.d.ts +1 -3
  32. package/dist-cms/packages/content/content/workspace/views/edit/content-editor-properties.element.js +8 -48
  33. package/dist-cms/packages/content/content/workspace/views/edit/content-editor.element.js +1 -0
  34. package/dist-cms/packages/content/content-type/structure/content-type-property-structure-helper.class.d.ts +1 -0
  35. package/dist-cms/packages/content/content-type/structure/content-type-property-structure-helper.class.js +1 -0
  36. package/dist-cms/packages/content/content-type/structure/content-type-structure-manager.class.d.ts +1 -0
  37. package/dist-cms/packages/content/content-type/structure/content-type-structure-manager.class.js +3 -3
  38. package/dist-cms/packages/content/content-type/workspace/views/design/content-type-design-editor.element.js +11 -7
  39. package/dist-cms/packages/content/property-type/workspace/property-type-workspace.context.js +5 -1
  40. package/dist-cms/packages/core/collection/collection-view.manager.js +4 -4
  41. package/dist-cms/packages/core/collection/components/collection-filter-field.element.js +1 -1
  42. package/dist-cms/packages/core/components/input-number-range/input-number-range.element.d.ts +4 -1
  43. package/dist-cms/packages/core/components/input-number-range/input-number-range.element.js +27 -3
  44. package/dist-cms/packages/core/components/input-with-alias/input-with-alias.element.js +0 -2
  45. package/dist-cms/packages/core/localization/manifests.js +27 -27
  46. package/dist-cms/packages/core/localization/registry/localization.registry.d.ts +2 -1
  47. package/dist-cms/packages/core/localization/registry/localization.registry.js +97 -37
  48. package/dist-cms/packages/core/menu/menu-variant-tree-structure-workspace-context-base.js +2 -2
  49. package/dist-cms/packages/core/package.json +2 -2
  50. package/dist-cms/packages/core/property/components/property/property.element.js +1 -0
  51. package/dist-cms/packages/core/property-editor/extensions/property-editor-ui-element.interface.d.ts +2 -0
  52. package/dist-cms/packages/core/repository/detail/detail-repository-base.js +6 -7
  53. package/dist-cms/packages/core/repository/item/item-repository-base.d.ts +1 -1
  54. package/dist-cms/packages/core/repository/item/item-repository-base.js +25 -9
  55. package/dist-cms/packages/core/repository/item/item-repository.interface.d.ts +1 -1
  56. package/dist-cms/packages/core/router/route/router-slot.element.js +3 -1
  57. package/dist-cms/packages/core/router/router-slot/model.d.ts +1 -0
  58. package/dist-cms/packages/core/router/router-slot/router-slot.d.ts +1 -0
  59. package/dist-cms/packages/core/router/router-slot/router-slot.js +30 -0
  60. package/dist-cms/packages/core/tree/data/tree-repository-base.d.ts +5 -1
  61. package/dist-cms/packages/core/tree/data/tree-repository-base.js +27 -13
  62. package/dist-cms/packages/core/tree/tree-item/tree-item.element.js +1 -1
  63. package/dist-cms/packages/core/validation/controllers/validation.controller.js +1 -1
  64. package/dist-cms/packages/core/workspace/components/workspace-action/common/save/save.action.js +3 -1
  65. package/dist-cms/packages/core/workspace/components/workspace-breadcrumb/workspace-variant-menu-breadcrumb/workspace-variant-menu-breadcrumb.element.js +5 -2
  66. package/dist-cms/packages/core/workspace/components/workspace-split-view/workspace-split-view-variant-selector.element.js +2 -2
  67. package/dist-cms/packages/core/workspace/contexts/tokens/submittable-tree-entity-workspace.context-token.js +1 -1
  68. package/dist-cms/packages/core/workspace/controllers/workspace-is-new-redirect.controller.d.ts +7 -0
  69. package/dist-cms/packages/core/workspace/controllers/workspace-is-new-redirect.controller.js +31 -10
  70. package/dist-cms/packages/core/workspace/controllers/workspace-route-manager.controller.js +5 -5
  71. package/dist-cms/packages/core/workspace/entity-detail/entity-detail-workspace-base.js +1 -1
  72. package/dist-cms/packages/core/workspace/submittable/submittable-workspace-context-base.d.ts +1 -0
  73. package/dist-cms/packages/core/workspace/submittable/submittable-workspace-context-base.js +10 -0
  74. package/dist-cms/packages/data-type/collection/repository/data-type-collection.repository.js +6 -1
  75. package/dist-cms/packages/data-type/repository/detail/data-type-detail.repository.js +6 -1
  76. package/dist-cms/packages/documents/document-blueprints/workspace/document-blueprint-workspace-editor.element.js +5 -4
  77. package/dist-cms/packages/documents/documents/entity-actions/create-blueprint/modal/create-blueprint-modal.element.js +1 -1
  78. package/dist-cms/packages/documents/documents/publishing/workspace-context/document-publishing.workspace-context.js +12 -2
  79. package/dist-cms/packages/documents/documents/tree/document-tree.context.js +2 -2
  80. package/dist-cms/packages/documents/documents/types.d.ts +1 -0
  81. package/dist-cms/packages/documents/documents/url/index.d.ts +1 -0
  82. package/dist-cms/packages/documents/documents/url/index.js +1 -0
  83. package/dist-cms/packages/documents/documents/url/types.d.ts +1 -0
  84. package/dist-cms/packages/documents/documents/url/types.js +1 -0
  85. package/dist-cms/packages/documents/documents/user-permissions/document/conditions/document-user-permission.condition.js +3 -1
  86. package/dist-cms/packages/documents/documents/workspace/actions/save.action.js +4 -2
  87. package/dist-cms/packages/documents/documents/workspace/document-workspace-editor.element.js +13 -7
  88. package/dist-cms/packages/log-viewer/components/log-viewer-date-range-selector.element.d.ts +0 -2
  89. package/dist-cms/packages/log-viewer/components/log-viewer-date-range-selector.element.js +12 -24
  90. package/dist-cms/packages/log-viewer/repository/sources/log-viewer.server.data.js +9 -1
  91. package/dist-cms/packages/log-viewer/workspace/views/search/components/log-viewer-message.element.js +1 -1
  92. package/dist-cms/packages/media/media/dashboard/media-dashboard.element.js +1 -0
  93. package/dist-cms/packages/media/media/modals/media-picker/media-picker-modal.element.js +2 -2
  94. package/dist-cms/packages/media/media/tree/media-tree.context.js +2 -2
  95. package/dist-cms/packages/media/media/workspace/media-workspace-editor.element.js +1 -0
  96. package/dist-cms/packages/members/member/repository/member-repository-base.d.ts +8 -8
  97. package/dist-cms/packages/members/member/repository/member-repository-base.js +13 -12
  98. package/dist-cms/packages/members/member/workspace/member/member-workspace-editor.element.js +1 -0
  99. package/dist-cms/packages/packages/package-section/views/created/created-packages-section-view.element.js +1 -0
  100. package/dist-cms/packages/property-editors/dimensions/property-editor-ui-dimensions.element.js +16 -3
  101. package/dist-cms/packages/segment/package.json +8 -0
  102. package/dist-cms/packages/settings/package.json +8 -0
  103. package/dist-cms/packages/settings/vite.config.d.ts +2 -0
  104. package/dist-cms/packages/settings/vite.config.js +11 -0
  105. package/dist-cms/packages/templating/partial-views/entity-actions/rename/rename-partial-view.server.data-source.js +1 -1
  106. package/dist-cms/packages/templating/partial-views/repository/partial-view-detail.server.data-source.js +3 -3
  107. package/dist-cms/packages/templating/partial-views/tree/folder/repository/partial-view-folder.server.data-source.js +2 -2
  108. package/dist-cms/packages/templating/scripts/entity-actions/rename/rename-script.server.data-source.js +1 -1
  109. package/dist-cms/packages/templating/scripts/repository/script-detail.server.data-source.js +3 -3
  110. package/dist-cms/packages/templating/scripts/tree/folder/repository/script-folder.server.data-source.js +2 -2
  111. package/dist-cms/packages/templating/stylesheets/entity-actions/rename/rename-stylesheet.server.data-source.js +1 -1
  112. package/dist-cms/packages/templating/stylesheets/repository/stylesheet-detail.server.data-source.js +3 -3
  113. package/dist-cms/packages/templating/stylesheets/tree/folder/repository/stylesheet-folder.server.data-source.js +2 -2
  114. package/dist-cms/packages/tiptap/components/character-map/character-map-modal.element.js +0 -4
  115. package/dist-cms/packages/tiptap/components/input-tiptap/input-tiptap.element.js +1 -1
  116. package/dist-cms/packages/tiptap/components/input-tiptap/tiptap-toolbar.element.d.ts +6 -0
  117. package/dist-cms/packages/tiptap/components/input-tiptap/tiptap-toolbar.element.js +7 -1
  118. package/dist-cms/packages/tiptap/property-editors/tiptap/components/property-editor-ui-tiptap-extensions-configuration.element.js +1 -1
  119. package/dist-cms/packages/tiptap/property-editors/tiptap/components/property-editor-ui-tiptap-statusbar-configuration.element.js +0 -4
  120. package/dist-cms/packages/tiptap/property-editors/tiptap/components/property-editor-ui-tiptap-toolbar-configuration.element.js +1 -4
  121. package/dist-cms/packages/translation/package.json +8 -0
  122. package/dist-cms/packages/user/current-user/current-user.context.js +4 -1
  123. package/dist-cms/packages/user/current-user/repository/current-user.repository.d.ts +2 -2
  124. package/dist-cms/packages/user/current-user/repository/current-user.repository.js +8 -5
  125. package/dist-cms/packages/user/user/repository/user-repository-base.d.ts +7 -7
  126. package/dist-cms/packages/user/user/repository/user-repository-base.js +13 -12
  127. package/dist-cms/packages/user/user-group/collection/repository/user-group-collection.repository.js +4 -1
  128. package/dist-cms/packages/user/user-group/collection/user-group-collection.element.js +1 -1
  129. package/dist-cms/packages/webhook/webhook-event/repository/webhook-event.repository.d.ts +4 -0
  130. package/dist-cms/packages/webhook/webhook-event/repository/webhook-event.repository.js +7 -1
  131. package/dist-cms/tsconfig.build.tsbuildinfo +1 -1
  132. package/dist-cms/umbraco-package.json +1 -1
  133. package/dist-cms/vscode-html-custom-data.json +16 -10
  134. package/examples/modal-routed/dashboard.element.ts +1 -0
  135. package/examples/modal-routed/modal/example-modal.element.ts +1 -0
  136. package/examples/validation-context/validation-context-dashboard.ts +12 -12
  137. package/package.json +8 -7
  138. package/dist-cms/packages/content/content/content-property.context-token.d.ts +0 -3
  139. package/dist-cms/packages/content/content/content-property.context-token.js +0 -2
  140. package/dist-cms/packages/content/content/content-property.context.js +0 -14
  141. package/dist-cms/packages/content/content/workspace/views/edit/content-editor-property.element.d.ts +0 -21
  142. package/dist-cms/packages/content/content/workspace/views/edit/content-editor-property.element.js +0 -63
@@ -66,8 +66,11 @@ UUI - Mapping-level or specific component name - State - Name - Part - Overwrite
66
66
  --uui-type-h5-size: var(--uui-type-default-size,14px);
67
67
  --uui-type-h6-size: var(--uui-type-small-size,12px);
68
68
  }
69
+
69
70
  /** Interface shadows*/
71
+
70
72
  /* TODO: fix automatic fallback values for shadows before we use them */
73
+
71
74
  :root {
72
75
  --uui-shadow-depth-1: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
73
76
  --uui-shadow-depth-2: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
@@ -75,136 +78,434 @@ UUI - Mapping-level or specific component name - State - Name - Part - Overwrite
75
78
  --uui-shadow-depth-4: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
76
79
  --uui-shadow-depth-5: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
77
80
  }
81
+
78
82
  /* Currently used https://chir.ag/projects/name-that-color/ for naming inspiration */
83
+
79
84
  /* Color Properties */
85
+
80
86
  :root {
81
87
  --uui-palette-deep-saffron: #f79c37;
82
- --uui-palette-deep-saffron-light: rgb(249, 181, 103);
83
- --uui-palette-deep-saffron-dark: rgb(222, 145, 56);
84
- --uui-palette-deep-saffron-dimmed: rgb(166, 150, 133);
88
+ --uui-palette-deep-saffron-light: rgb(
89
+ 249,
90
+ 181,
91
+ 103
92
+ ); /* color($deep-saffron lightness(+ 10%)) */
93
+ --uui-palette-deep-saffron-dark: rgb(
94
+ 222,
95
+ 145,
96
+ 56
97
+ ); /* color($deep-saffron blackness(+ 10%)); */
98
+ --uui-palette-deep-saffron-dimmed: rgb(
99
+ 166,
100
+ 150,
101
+ 133
102
+ ); /* color(
103
+ $deep-saffron saturation(- 74%) blackness(+ 1%)
104
+ ); */
85
105
  --uui-palette-sunglow: #fad634;
86
- --uui-palette-sunglow-light: rgb(251, 224, 101);
87
- --uui-palette-sunglow-dark: rgb(224, 193, 51);
88
- --uui-palette-sunglow-dimmed: rgb(166, 160, 133);
106
+ --uui-palette-sunglow-light: rgb(
107
+ 251,
108
+ 224,
109
+ 101
110
+ ); /* color($sunglow lightness(+ 10%)); */
111
+ --uui-palette-sunglow-dark: rgb(
112
+ 224,
113
+ 193,
114
+ 51
115
+ ); /* color($sunglow blackness(+ 10%)); */
116
+ --uui-palette-sunglow-dimmed: rgb(
117
+ 166,
118
+ 160,
119
+ 133
120
+ ); /* color(
121
+ $sunglow saturation(- 78%) blackness(+ 1%)
122
+ ); */
89
123
  --uui-palette-spanish-pink: #f5c1bc;
90
- --uui-palette-spanish-pink-light: rgb(248, 214, 211);
91
- --uui-palette-spanish-pink-dark: rgb(232, 192, 189);
92
- --uui-palette-spanish-pink-dimmed: rgb(219, 212, 212);
124
+ --uui-palette-spanish-pink-light: rgb(
125
+ 248,
126
+ 214,
127
+ 211
128
+ ); /* color($spanish-pink lightness(+ 5%)); */
129
+ --uui-palette-spanish-pink-dark: rgb(
130
+ 232,
131
+ 192,
132
+ 189
133
+ ); /* color($spanish-pink blackness(+ 5%)); */
134
+ --uui-palette-spanish-pink-dimmed: rgb(
135
+ 219,
136
+ 212,
137
+ 212
138
+ ); /* color(
139
+ $spanish-pink saturation(- 60%) blackness(+ 1%)
140
+ ); */
93
141
  --uui-palette-gunmetal: #162335;
94
- --uui-palette-gunmetal-light: rgb(35, 55, 83);
95
- --uui-palette-gunmetal-dark: rgb(23, 27, 33);
96
- --uui-palette-gunmetal-dimmed: rgb(54, 54, 54);
142
+ --uui-palette-gunmetal-light: rgb(
143
+ 35,
144
+ 55,
145
+ 83
146
+ ); /* color($gunmetal lightness(+ 8%)); */
147
+ --uui-palette-gunmetal-dark: rgb(
148
+ 23,
149
+ 27,
150
+ 33
151
+ ); /* color($gunmetal blackness(+ 8%)); */
152
+ --uui-palette-gunmetal-dimmed: rgb(
153
+ 54,
154
+ 54,
155
+ 54
156
+ ); /* color(
157
+ $gunmetal saturation(- 50%) lightness(+ 6%)
158
+ ); */
97
159
  --uui-palette-space-cadet: #1b264f;
98
- --uui-palette-space-cadet-light: rgb(38, 53, 110);
99
- --uui-palette-space-cadet-dark: rgb(28, 35, 59);
100
- --uui-palette-space-cadet-dimmed: rgb(106, 117, 154);
160
+ --uui-palette-space-cadet-light: rgb(
161
+ 38,
162
+ 53,
163
+ 110
164
+ ); /* color($space-cadet lightness(+ 8%)); */
165
+ --uui-palette-space-cadet-dark: rgb(
166
+ 28,
167
+ 35,
168
+ 59
169
+ ); /* color($space-cadet blackness(+ 8%)); */
170
+ --uui-palette-space-cadet-dimmed: rgb(
171
+ 106,
172
+ 117,
173
+ 154
174
+ ); /* color(
175
+ $space-cadet saturation(- 30%) lightness(+ 30%)
176
+ ); */
101
177
  --uui-palette-violet-blue: #3544b1;
102
- --uui-palette-violet-blue-light: rgb(70, 86, 200);
103
- --uui-palette-violet-blue-dark: rgb(54, 65, 156);
104
- --uui-palette-violet-blue-dimmed: rgb(87, 87, 87);
105
-
106
- /*
107
- // not used jet.
108
- $matisse: #2152a3;
109
- --uui-palette-matisse: $matisse;
110
- --uui-palette-matisse-light: color($matisse lightness(+ 8%));
111
- --uui-palette-matisse-dark: color($matisse blackness(+ 8%));
112
- --uui-palette-matisse-dimmed: color(
113
- $matisse saturation(- 30%) blackness(+ 22%)
114
- );
115
- */
178
+ --uui-palette-violet-blue-light: rgb(
179
+ 70,
180
+ 86,
181
+ 200
182
+ ); /* color($violet-blue lightness(+ 8%)); */
183
+ --uui-palette-violet-blue-dark: rgb(
184
+ 54,
185
+ 65,
186
+ 156
187
+ ); /* color($violet-blue blackness(+ 8%)); */
188
+ --uui-palette-violet-blue-dimmed: rgb(
189
+ 87,
190
+ 87,
191
+ 87
192
+ ); /* color(
193
+ $violet-blue saturation(- 30%) blackness(+ 22%)
194
+ ); */
116
195
  --uui-palette-malibu: #3879ff;
117
- --uui-palette-malibu-light: rgb(97, 150, 255);
118
- --uui-palette-malibu-dark: rgb(56, 116, 235);
119
- --uui-palette-malibu-dimmed: rgb(115, 120, 130);
120
- /*
121
- $outline-blue: #3879ff;
122
- --uui-palette-outline-blue: $outline-blue;
123
- --uui-palette-outline-blue-light: color($outline-blue lightness(+ 8%));
124
- --uui-palette-outline-blue-dark: color($outline-blue blackness(+ 8%));
125
- --uui-palette-outline-blue-dimmed: color(
126
- $outline-blue saturation(- 60%) blackness(+ 26%)
127
- );
128
- */
196
+ --uui-palette-malibu-light: rgb(
197
+ 97,
198
+ 150,
199
+ 255
200
+ ); /* color($malibu lightness(+ 8%)); */
201
+ --uui-palette-malibu-dark: rgb(
202
+ 56,
203
+ 116,
204
+ 235
205
+ ); /* color($malibu blackness(+ 8%)); */
206
+ --uui-palette-malibu-dimmed: rgb(
207
+ 115,
208
+ 120,
209
+ 130
210
+ ); /* color(
211
+ $malibu saturation(- 60%) blackness(+ 26%)
212
+ ); */
129
213
  --uui-palette-maroon-flush: #d42054;
130
- --uui-palette-maroon-flush-light: rgb(226, 60, 107);
131
- --uui-palette-maroon-flush-dark: rgb(191, 33, 78);
132
- --uui-palette-maroon-flush-dimmed: rgb(133, 107, 114);
214
+ --uui-palette-maroon-flush-light: rgb(
215
+ 226,
216
+ 60,
217
+ 107
218
+ ); /* color($maroon-flush lightness(+ 8%)); */
219
+ --uui-palette-maroon-flush-dark: rgb(
220
+ 191,
221
+ 33,
222
+ 78
223
+ ); /* color($maroon-flush blackness(+ 8%)); */
224
+ --uui-palette-maroon-flush-dimmed: rgb(
225
+ 133,
226
+ 107,
227
+ 114
228
+ ); /* color(
229
+ $maroon-flush saturation(- 62%) blackness(+ 2%)
230
+ ); */
133
231
  --uui-palette-jungle-green: #2bc37c;
134
- --uui-palette-jungle-green-light: rgb(58, 212, 140);
135
- --uui-palette-jungle-green-dark: rgb(43, 179, 115);
136
- --uui-palette-jungle-green-dimmed: rgb(102, 135, 120);
232
+ --uui-palette-jungle-green-light: rgb(
233
+ 58,
234
+ 212,
235
+ 140
236
+ ); /* color($jungle-green lightness(+ 6%)); */
237
+ --uui-palette-jungle-green-dark: rgb(
238
+ 43,
239
+ 179,
240
+ 115
241
+ ); /* color($jungle-green blackness(+ 6%)); */
242
+ --uui-palette-jungle-green-dimmed: rgb(
243
+ 102,
244
+ 135,
245
+ 120
246
+ ); /* color(
247
+ $jungle-green saturation(- 50%) blackness(+ 1%)
248
+ ); */
137
249
  --uui-palette-forest-green: #0b8152;
138
- --uui-palette-forest-green-light: rgb(13, 155, 98);
139
- --uui-palette-forest-green-dark: rgb(10, 115, 73);
140
- --uui-palette-forest-green-dimmed: rgb(46, 89, 72);
250
+ --uui-palette-forest-green-light: rgb(
251
+ 13,
252
+ 155,
253
+ 98
254
+ ); /* color($forest-green lightness(+ 6%)); */
255
+ --uui-palette-forest-green-dark: rgb(
256
+ 10,
257
+ 115,
258
+ 73
259
+ ); /* color($forest-green blackness(+ 6%)); */
260
+ --uui-palette-forest-green-dimmed: rgb(
261
+ 46,
262
+ 89,
263
+ 72
264
+ ); /* color(
265
+ $forest-green saturation(- 50%) blackness(+ 1%)
266
+ ); */
141
267
  --uui-palette-cocoa-black: #191715;
142
- --uui-palette-cocoa-black-light: rgb(39, 36, 32);
143
- --uui-palette-cocoa-black-dark: rgb(20, 20, 20);
144
- --uui-palette-cocoa-black-dimmed: rgb(48, 48, 48);
268
+ --uui-palette-cocoa-black-light: rgb(
269
+ 39,
270
+ 36,
271
+ 32
272
+ ); /* color($cocoa-black lightness(+ 5%)); */
273
+ --uui-palette-cocoa-black-dark: rgb(
274
+ 20,
275
+ 20,
276
+ 20
277
+ ); /* color($cocoa-black blackness(+ 5%)); */
278
+ --uui-palette-cocoa-black-dimmed: rgb(
279
+ 48,
280
+ 48,
281
+ 48
282
+ ); /* color(
283
+ $cocoa-black saturation(- 20%) lightness(+ 10%)
284
+ ); */
145
285
  --uui-palette-dune-black: #2e2b29;
146
- --uui-palette-dune-black-light: rgb(57, 53, 50);
147
- --uui-palette-dune-black-dark: rgb(38, 38, 38);
148
- --uui-palette-dune-black-dimmed: rgb(64, 64, 64);
286
+ --uui-palette-dune-black-light: rgb(
287
+ 57,
288
+ 53,
289
+ 50
290
+ ); /* color($dune-black lightness(+ 4%)); */
291
+ --uui-palette-dune-black-dark: rgb(
292
+ 38,
293
+ 38,
294
+ 38
295
+ ); /* color($dune-black blackness(+ 10%)); */
296
+ --uui-palette-dune-black-dimmed: rgb(
297
+ 64,
298
+ 64,
299
+ 64
300
+ ); /* color(
301
+ $dune-black saturation(- 30%) lightness(+ 8%)
302
+ ); */
149
303
  --uui-palette-cocoa-brown: #332a24;
150
- --uui-palette-cocoa-brown-light: rgb(66, 54, 47);
151
- --uui-palette-cocoa-brown-dark: rgb(38, 37, 36);
152
- --uui-palette-cocoa-brown-dimmed: rgb(43, 43, 43);
304
+ --uui-palette-cocoa-brown-light: rgb(
305
+ 66,
306
+ 54,
307
+ 47
308
+ ); /* color($cocoa-brown lightness(+ 5%)); */
309
+ --uui-palette-cocoa-brown-dark: rgb(
310
+ 38,
311
+ 37,
312
+ 36
313
+ ); /* color($cocoa-brown blackness(+ 5%)); */
314
+ --uui-palette-cocoa-brown-dimmed: rgb(
315
+ 43,
316
+ 43,
317
+ 43
318
+ ); /* color(
319
+ $cocoa-brown saturation(- 40%) blackness(+ 2%)
320
+ ); */
153
321
  --uui-palette-chamoisee: #9d8057;
154
- --uui-palette-chamoisee-light: rgb(175, 148, 110);
155
- --uui-palette-chamoisee-dark: rgb(138, 116, 87);
156
- --uui-palette-chamoisee-dimmed: rgb(115, 113, 110);
322
+ --uui-palette-chamoisee-light: rgb(
323
+ 175,
324
+ 148,
325
+ 110
326
+ ); /* color($chamoisee lightness(+ 8%)); */
327
+ --uui-palette-chamoisee-dark: rgb(
328
+ 138,
329
+ 116,
330
+ 87
331
+ ); /* color($chamoisee blackness(+ 8%)); */
332
+ --uui-palette-chamoisee-dimmed: rgb(
333
+ 115,
334
+ 113,
335
+ 110
336
+ ); /* color(
337
+ $chamoisee saturation(- 18%) blackness(+ 8%)
338
+ ); */
157
339
  --uui-palette-timberwolf: #e2dad4;
158
- --uui-palette-timberwolf-light: rgb(243, 239, 237);
159
- --uui-palette-timberwolf-dark: rgb(208, 208, 208);
160
- --uui-palette-timberwolf-dimmed: rgb(207, 207, 207);
340
+ --uui-palette-timberwolf-light: rgb(
341
+ 243,
342
+ 239,
343
+ 237
344
+ ); /* color($timberwolf lightness(+ 8%)); */
345
+ --uui-palette-timberwolf-dark: rgb(
346
+ 208,
347
+ 208,
348
+ 208
349
+ ); /* color($timberwolf blackness(+ 8%)); */
350
+ --uui-palette-timberwolf-dimmed: rgb(
351
+ 207,
352
+ 207,
353
+ 207
354
+ ); /* color(
355
+ $timberwolf saturation(- 82%) blackness(+ 6%)
356
+ ); */
161
357
  --uui-palette-gravel: #d8d7d9;
162
- --uui-palette-gravel-light: rgb(237, 237, 238);
163
- --uui-palette-gravel-dark: rgb(200, 200, 200);
164
- --uui-palette-gravel-dimmed: rgb(204, 204, 204);
358
+ --uui-palette-gravel-light: rgb(
359
+ 237,
360
+ 237,
361
+ 238
362
+ ); /* color($gravel lightness(+ 8%)); */
363
+ --uui-palette-gravel-dark: rgb(
364
+ 200,
365
+ 200,
366
+ 200
367
+ ); /* color($gravel blackness(+ 8%)); */
368
+ --uui-palette-gravel-dimmed: rgb(
369
+ 204,
370
+ 204,
371
+ 204
372
+ ); /* color($gravel saturation(- 82%) blackness(+ 6%)); */
165
373
  --uui-palette-sand: #f3f3f5;
166
- --uui-palette-sand-light: rgb(255, 255, 255);
167
- --uui-palette-sand-dark: rgb(226, 226, 226);
168
- --uui-palette-sand-dimmed: rgb(231, 231, 231);
374
+ --uui-palette-sand-light: rgb(
375
+ 255,
376
+ 255,
377
+ 255
378
+ ); /* color($sand lightness(+ 8%)); */
379
+ --uui-palette-sand-dark: rgb(
380
+ 226,
381
+ 226,
382
+ 226
383
+ ); /* color($sand blackness(+ 8%)); */
384
+ --uui-palette-sand-dimmed: rgb(
385
+ 231,
386
+ 231,
387
+ 231
388
+ ); /* color($sand saturation(- 82%) blackness(+ 6%)); */
169
389
  --uui-palette-white: #fefefe;
170
- --uui-palette-white-light: rgb(255, 255, 255);
171
- --uui-palette-white-dark: rgb(250, 250, 250);
172
- --uui-palette-white-dimmed: rgb(228, 228, 228);
390
+ --uui-palette-white-light: rgb(
391
+ 255,
392
+ 255,
393
+ 255
394
+ ); /* color($white lightness(+ 2%)); */
395
+ --uui-palette-white-dark: rgb(
396
+ 250,
397
+ 250,
398
+ 250
399
+ ); /* color($white blackness(+ 2%)); */
400
+ --uui-palette-white-dimmed: rgb(
401
+ 228,
402
+ 228,
403
+ 228
404
+ ); /* color($white saturation(- 100%) blackness(+ 12%)); */
173
405
  --uui-palette-black: #060606;
174
- --uui-palette-black-light: rgb(26, 26, 26);
175
- --uui-palette-black-dark: rgb(5, 5, 5);
176
- --uui-palette-black-dimmed: rgb(36, 36, 36);
406
+ --uui-palette-black-light: rgb(
407
+ 26,
408
+ 26,
409
+ 26
410
+ ); /* color($black lightness(+ 8%)); */
411
+ --uui-palette-black-dark: rgb(5, 5, 5); /* color($black blackness(+ 8%)); */
412
+ --uui-palette-black-dimmed: rgb(
413
+ 36,
414
+ 36,
415
+ 36
416
+ ); /* color($black saturation(- 100%) lightness(+ 12%)); */
177
417
  --uui-palette-grey: #c4c4c4;
178
- --uui-palette-grey-light: rgb(222, 222, 222);
179
- --uui-palette-grey-dark: rgb(179, 179, 179);
180
- --uui-palette-grey-dimmed: rgb(189, 189, 189);
418
+ --uui-palette-grey-light: rgb(
419
+ 222,
420
+ 222,
421
+ 222
422
+ ); /* color($grey lightness(+ 10%)); */
423
+ --uui-palette-grey-dark: rgb(
424
+ 179,
425
+ 179,
426
+ 179
427
+ ); /* color($grey blackness(+ 10%)); */
428
+ --uui-palette-grey-dimmed: rgb(
429
+ 189,
430
+ 189,
431
+ 189
432
+ ); /* color($grey saturation(- 100%) blackness(+ 4%)); */
181
433
 
182
434
  /** not begin used currently. */
183
435
  --uui-palette-dusty-grey: #9b9b9b;
184
- --uui-palette-dusty-grey-light: rgb(176, 176, 176);
185
- --uui-palette-dusty-grey-dark: rgb(141, 141, 141);
186
- --uui-palette-dusty-grey-dimmed: rgb(186, 186, 186);
436
+ --uui-palette-dusty-grey-light: rgb(
437
+ 176,
438
+ 176,
439
+ 176
440
+ ); /* color($dusty-grey lightness(+ 8%)); */
441
+ --uui-palette-dusty-grey-dark: rgb(
442
+ 141,
443
+ 141,
444
+ 141
445
+ ); /* color($dusty-grey blackness(+ 10%)); */
446
+ --uui-palette-dusty-grey-dimmed: rgb(
447
+ 186,
448
+ 186,
449
+ 186
450
+ ); /* color(
451
+ $dusty-grey saturation(- 100%) lightness(+ 12%)
452
+ ); */
187
453
  --uui-palette-mine-grey: #3e3e3e;
188
- --uui-palette-mine-grey-light: rgb(82, 82, 82);
189
- --uui-palette-mine-grey-dark: rgb(56, 56, 56);
190
- --uui-palette-mine-grey-dimmed: rgb(87, 87, 87);
454
+ --uui-palette-mine-grey-light: rgb(
455
+ 82,
456
+ 82,
457
+ 82
458
+ ); /* color($mine-grey lightness(+ 8%)); */
459
+ --uui-palette-mine-grey-dark: rgb(
460
+ 56,
461
+ 56,
462
+ 56
463
+ ); /* color($mine-grey blackness(+ 10%)); */
464
+ --uui-palette-mine-grey-dimmed: rgb(
465
+ 87,
466
+ 87,
467
+ 87
468
+ ); /* color(
469
+ $mine-grey saturation(- 100%) lightness(+ 10%)
470
+ ); */
191
471
  }
472
+
192
473
  :root {
193
474
  font-family: 'Roboto', sans-serif;
194
475
 
195
476
  /* ----- STATES ----- */
196
477
  --uui-color-selected: var(--uui-palette-violet-blue,#3544b1);
197
- --uui-color-selected-emphasis: var(--uui-palette-violet-blue-light,rgb(70, 86, 200));
198
- --uui-color-selected-standalone: var(--uui-palette-violet-blue-dark,rgb(54, 65, 156));
478
+ --uui-color-selected-emphasis: var(--uui-palette-violet-blue-light,rgb(
479
+ 70,
480
+ 86,
481
+ 200
482
+ ));
483
+ --uui-color-selected-standalone: var(--uui-palette-violet-blue-dark,rgb(
484
+ 54,
485
+ 65,
486
+ 156
487
+ ));
199
488
  --uui-color-selected-contrast: #fff;
200
489
 
201
490
  --uui-color-current: var(--uui-palette-spanish-pink,#f5c1bc);
202
- --uui-color-current-emphasis: var(--uui-palette-spanish-pink-light,rgb(248, 214, 211));
203
- --uui-color-current-standalone: var(--uui-palette-spanish-pink-dark,rgb(232, 192, 189));
491
+ --uui-color-current-emphasis: var(--uui-palette-spanish-pink-light,rgb(
492
+ 248,
493
+ 214,
494
+ 211
495
+ ));
496
+ --uui-color-current-standalone: var(--uui-palette-spanish-pink-dark,rgb(
497
+ 232,
498
+ 192,
499
+ 189
500
+ ));
204
501
  --uui-color-current-contrast: var(--uui-palette-space-cadet,#1b264f);
205
502
 
206
503
  --uui-color-disabled: var(--uui-palette-sand,#f3f3f5);
207
- --uui-color-disabled-standalone: var(--uui-palette-sand-dark,rgb(226, 226, 226));
504
+ --uui-color-disabled-standalone: var(--uui-palette-sand-dark,rgb(
505
+ 226,
506
+ 226,
507
+ 226
508
+ ));
208
509
  --uui-color-disabled-contrast: var(--uui-palette-grey,#c4c4c4);
209
510
 
210
511
  /* ----- UNIVERSAL ----- */
@@ -217,7 +518,11 @@ UUI - Mapping-level or specific component name - State - Name - Part - Overwrite
217
518
  /* ----- SURFACE ----- */
218
519
  --uui-color-surface: #fff;
219
520
  --uui-color-surface-alt: var(--uui-palette-sand,#f3f3f5);
220
- --uui-color-surface-emphasis: var(--uui-palette-white-dark,rgb(250, 250, 250));
521
+ --uui-color-surface-emphasis: var(--uui-palette-white-dark,rgb(
522
+ 250,
523
+ 250,
524
+ 250
525
+ ));
221
526
 
222
527
  --uui-color-background: var(--uui-palette-sand,#f3f3f5);
223
528
 
@@ -238,31 +543,64 @@ UUI - Mapping-level or specific component name - State - Name - Part - Overwrite
238
543
  /* ----- COLORS ----- */
239
544
  --uui-color-default: var(--uui-palette-space-cadet,#1b264f);
240
545
  --uui-color-default-emphasis: var(--uui-palette-violet-blue,#3544b1);
241
- --uui-color-default-standalone: var(--uui-palette-space-cadet-dark,rgb(28, 35, 59));
546
+ --uui-color-default-standalone: var(--uui-palette-space-cadet-dark,rgb(
547
+ 28,
548
+ 35,
549
+ 59
550
+ ));
242
551
  --uui-color-default-contrast: #fff;
243
552
 
244
553
  --uui-color-warning: #fbd142;
245
- --uui-color-warning-emphasis: var(--uui-palette-sunglow-light,rgb(251, 224, 101));
554
+ --uui-color-warning-emphasis: var(--uui-palette-sunglow-light,rgb(
555
+ 251,
556
+ 224,
557
+ 101
558
+ ));
246
559
  --uui-color-warning-standalone: #a17700;
247
560
  --uui-color-warning-contrast: #000;
248
561
  /* --uui-color-warning: var(--uui-palette-sunglow); Contrast not high enough */
249
562
  /* --uui-color-warning-standalone: var(--uui-palette-sunglow-dark); Contrast not high enough */
250
563
 
251
564
  --uui-color-danger: var(--uui-palette-maroon-flush,#d42054);
252
- --uui-color-danger-emphasis: var(--uui-palette-maroon-flush-light,rgb(226, 60, 107));
253
- --uui-color-danger-standalone: var(--uui-palette-maroon-flush-dark,rgb(191, 33, 78));
565
+ --uui-color-danger-emphasis: var(--uui-palette-maroon-flush-light,rgb(
566
+ 226,
567
+ 60,
568
+ 107
569
+ ));
570
+ --uui-color-danger-standalone: var(--uui-palette-maroon-flush-dark,rgb(
571
+ 191,
572
+ 33,
573
+ 78
574
+ ));
254
575
  --uui-color-danger-contrast: white;
255
576
 
256
577
  --uui-color-invalid: var(--uui-palette-maroon-flush,#d42054);
257
- --uui-color-invalid-emphasis: var(--uui-palette-maroon-flush-light,rgb(226, 60, 107));
258
- --uui-color-invalid-standalone: var(--uui-palette-maroon-flush-dark,rgb(191, 33, 78));
578
+ --uui-color-invalid-emphasis: var(--uui-palette-maroon-flush-light,rgb(
579
+ 226,
580
+ 60,
581
+ 107
582
+ ));
583
+ --uui-color-invalid-standalone: var(--uui-palette-maroon-flush-dark,rgb(
584
+ 191,
585
+ 33,
586
+ 78
587
+ ));
259
588
  --uui-color-invalid-contrast: white;
260
589
 
261
590
  --uui-color-positive: var(--uui-palette-forest-green,#0b8152);
262
- --uui-color-positive-emphasis: var(--uui-palette-forest-green-light,rgb(13, 155, 98));
263
- --uui-color-positive-standalone: var(--uui-palette-forest-green-dark,rgb(10, 115, 73));
591
+ --uui-color-positive-emphasis: var(--uui-palette-forest-green-light,rgb(
592
+ 13,
593
+ 155,
594
+ 98
595
+ ));
596
+ --uui-color-positive-standalone: var(--uui-palette-forest-green-dark,rgb(
597
+ 10,
598
+ 115,
599
+ 73
600
+ ));
264
601
  --uui-color-positive-contrast: #fff;
265
602
  }
603
+
266
604
  :root[data-theme='dark'] {
267
605
  /* ----- STATES ----- */
268
606
  /* --uui-color-selected: #2a72b6;
@@ -324,9 +662,11 @@ UUI - Mapping-level or specific component name - State - Name - Part - Overwrite
324
662
  --uui-color-positive-standalone: #52d176;
325
663
  --uui-color-positive-contrast: white; */
326
664
  }
665
+
327
666
  :root {
328
667
  --uui-font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
329
668
  }
669
+
330
670
  /*
331
671
  Lato
332
672
 
@@ -336,7 +676,9 @@ UUI - Mapping-level or specific component name - State - Name - Part - Overwrite
336
676
  Black: font-weight: 900;
337
677
 
338
678
  */
679
+
339
680
  /* Webfont: LatoLatin-Black */
681
+
340
682
  @font-face {
341
683
  font-family: 'Lato';
342
684
  src: local('LatoLatin Black'), local('LatoLatin-Black'),
@@ -346,7 +688,9 @@ UUI - Mapping-level or specific component name - State - Name - Part - Overwrite
346
688
  font-weight: 900;
347
689
  text-rendering: optimizeLegibility;
348
690
  }
691
+
349
692
  /* Webfont: LatoLatin-BlackItalic */
693
+
350
694
  @font-face {
351
695
  font-family: 'Lato';
352
696
  src: local('LatoLatin BlackItalic'), local('LatoLatin-BlackItalic'),
@@ -356,7 +700,9 @@ UUI - Mapping-level or specific component name - State - Name - Part - Overwrite
356
700
  font-display: swap;
357
701
  text-rendering: optimizeLegibility;
358
702
  }
703
+
359
704
  /* Webfont: LatoLatin-Bold */
705
+
360
706
  @font-face {
361
707
  font-family: 'Lato';
362
708
  src: local('LatoLatin Bold'), local('LatoLatin-Bold'),
@@ -366,7 +712,9 @@ UUI - Mapping-level or specific component name - State - Name - Part - Overwrite
366
712
  font-display: swap;
367
713
  text-rendering: optimizeLegibility;
368
714
  }
715
+
369
716
  /* Webfont: LatoLatin-BoldItalic */
717
+
370
718
  @font-face {
371
719
  font-family: 'Lato';
372
720
  src: local('LatoLatin BoldItalic'), local('LatoLatin-BoldItalic'),
@@ -376,7 +724,9 @@ UUI - Mapping-level or specific component name - State - Name - Part - Overwrite
376
724
  font-display: swap;
377
725
  text-rendering: optimizeLegibility;
378
726
  }
727
+
379
728
  /* Webfont: LatoLatin-Italic */
729
+
380
730
  @font-face {
381
731
  font-family: 'Lato';
382
732
  src: local('LatoLatin Italic'), local('LatoLatin-Italic'),
@@ -386,7 +736,9 @@ UUI - Mapping-level or specific component name - State - Name - Part - Overwrite
386
736
  font-display: swap;
387
737
  text-rendering: optimizeLegibility;
388
738
  }
739
+
389
740
  /* Webfont: LatoLatin-Regular */
741
+
390
742
  @font-face {
391
743
  font-family: 'Lato';
392
744
  src: local('LatoLatin Regular'), local('LatoLatin-Regular'),
@@ -396,7 +748,9 @@ UUI - Mapping-level or specific component name - State - Name - Part - Overwrite
396
748
  font-display: swap;
397
749
  text-rendering: optimizeLegibility;
398
750
  }
751
+
399
752
  /* Webfont: LatoLatin-Light */
753
+
400
754
  @font-face {
401
755
  font-family: 'Lato';
402
756
  src: local('LatoLatin Light'), local('LatoLatin-Light'),
@@ -406,7 +760,9 @@ UUI - Mapping-level or specific component name - State - Name - Part - Overwrite
406
760
  font-display: swap;
407
761
  text-rendering: optimizeLegibility;
408
762
  }
763
+
409
764
  /* Webfont: LatoLatin-LightItalic */
765
+
410
766
  @font-face {
411
767
  font-family: 'Lato';
412
768
  src: local('LatoLatin LightItalic'), local('LatoLatin-LightItalic'),
@@ -416,12 +772,14 @@ UUI - Mapping-level or specific component name - State - Name - Part - Overwrite
416
772
  font-display: swap;
417
773
  text-rendering: optimizeLegibility;
418
774
  }
775
+
419
776
  .uui-font {
420
777
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
421
778
  font-size: 14px;
422
779
  line-height: calc(var(--uui-size-2,6px) * 4);
423
780
  -webkit-font-smoothing: antialiased;
424
781
  }
782
+
425
783
  .uui-h1,
426
784
  .uui-h2,
427
785
  .uui-h3,
@@ -440,6 +798,7 @@ UUI - Mapping-level or specific component name - State - Name - Part - Overwrite
440
798
  line-height: 21px;
441
799
  -webkit-font-smoothing: antialiased;
442
800
  }
801
+
443
802
  .uui-text h1,
444
803
  .uui-h1.uui-h1 {
445
804
  font-size: var(--uui-type-h1-size,60px);
@@ -449,16 +808,19 @@ UUI - Mapping-level or specific component name - State - Name - Part - Overwrite
449
808
  margin-top: var(--uui-size-layout-1,24px);
450
809
  margin-bottom: var(--uui-size-layout-1,24px);
451
810
  }
811
+
452
812
  .uui-text p + h1,
453
813
  .uui-text p + .uui-h1 {
454
814
  margin-top: var(--uui-size-layout-4,66px);
455
815
  }
816
+
456
817
  .uui-text h1.--no-top-margin,
457
818
  .uui-text h1:first-child,
458
819
  .uui-h1.--no-top-margin,
459
820
  .uui-h1:first-child {
460
821
  margin-top: 0;
461
822
  }
823
+
462
824
  .uui-text h2,
463
825
  .uui-h2.uui-h2 {
464
826
  font-size: var(--uui-type-h2-size,42px);
@@ -468,16 +830,19 @@ UUI - Mapping-level or specific component name - State - Name - Part - Overwrite
468
830
  margin-top: var(--uui-size-layout-1,24px);
469
831
  margin-bottom: var(--uui-size-layout-1,24px);
470
832
  }
833
+
471
834
  .uui-text p + h2,
472
835
  .uui-text p + .uui-h2 {
473
836
  margin-top: var(--uui-size-layout-3,42px);
474
837
  }
838
+
475
839
  .uui-text h2.--no-top-margin,
476
840
  .uui-text h2:first-child,
477
841
  .uui-h2.--no-top-margin,
478
842
  .uui-h2:first-child {
479
843
  margin-top: 0;
480
844
  }
845
+
481
846
  .uui-text h3,
482
847
  .uui-h3.uui-h3 {
483
848
  font-size: var(--uui-type-h3-size,30px);
@@ -487,12 +852,14 @@ UUI - Mapping-level or specific component name - State - Name - Part - Overwrite
487
852
  margin-top: var(--uui-size-layout-1,24px);
488
853
  margin-bottom: var(--uui-size-layout-1,24px);
489
854
  }
855
+
490
856
  .uui-text h3.--no-top-margin,
491
857
  .uui-text h3:first-child,
492
858
  .uui-h3.--no-top-margin,
493
859
  .uui-h3:first-child {
494
860
  margin-top: 0;
495
861
  }
862
+
496
863
  .uui-text h4,
497
864
  .uui-h4.uui-h4 {
498
865
  font-size: var(--uui-type-h4-size,21px);
@@ -502,12 +869,14 @@ UUI - Mapping-level or specific component name - State - Name - Part - Overwrite
502
869
  margin-top: var(--uui-size-layout-1,24px);
503
870
  margin-bottom: var(--uui-size-layout-1,24px);
504
871
  }
872
+
505
873
  .uui-text h4.--no-top-margin,
506
874
  .uui-text h4:first-child,
507
875
  .uui-h4.--no-top-margin,
508
876
  .uui-h4:first-child {
509
877
  margin-top: 0;
510
878
  }
879
+
511
880
  .uui-text h5,
512
881
  .uui-h5.uui-h5 {
513
882
  font-size: var(--uui-type-h5-size,14px);
@@ -517,41 +886,49 @@ UUI - Mapping-level or specific component name - State - Name - Part - Overwrite
517
886
  margin-top: var(--uui-size-layout-1,24px);
518
887
  margin-bottom: 0;
519
888
  }
889
+
520
890
  .uui-text h5.--no-top-margin,
521
891
  .uui-text h5:first-child,
522
892
  .uui-h5.--no-top-margin,
523
893
  .uui-h5:first-child {
524
894
  margin-top: 0;
525
895
  }
896
+
526
897
  .uui-p,
527
898
  .uui-text p {
528
899
  margin-top: var(--uui-size-layout-1,24px);
529
900
  margin-bottom: var(--uui-size-layout-1,24px);
530
901
  }
902
+
531
903
  .uui-p-lead,
532
904
  .uui-text p.uui-lead {
533
905
  font-size: var(--uui-size-6,18px);
534
906
  line-height: var(--uui-size-8,24px);
535
907
  }
908
+
536
909
  .uui-a,
537
910
  .uui-text a {
538
911
  color: var(--uui-color-interactive,#1b264f);
539
912
  }
913
+
540
914
  .uui-a:link,
541
915
  .uui-a:active .uui-text a:link,
542
916
  .uui-text a:active {
543
917
  color: var(--uui-color-interactive,#1b264f);
544
918
  }
919
+
545
920
  .uui-a:hover,
546
921
  .uui-text a:hover {
547
922
  color: var(--uui-color-interactive-emphasis,#3544b1);
548
923
  }
924
+
549
925
  .uui-small,
550
926
  .uui-text small {
551
927
  display: inline-block;
552
928
  font-size: var(--uui-type-small-size,12px);
553
929
  line-height: 18px;
554
930
  }
931
+
555
932
  .uui-quoteblock,
556
933
  .uui-text blockquote {
557
934
  float: right;
@@ -565,6 +942,7 @@ UUI - Mapping-level or specific component name - State - Name - Part - Overwrite
565
942
  max-width: 16em;
566
943
  quotes: '“' '”' '‘' '’';
567
944
  }
945
+
568
946
  .uui-quoteblock:before,
569
947
  .uui-text blockquote:before {
570
948
  content: open-quote;
@@ -574,6 +952,7 @@ UUI - Mapping-level or specific component name - State - Name - Part - Overwrite
574
952
  font-weight: 400;
575
953
  font-size: 2em;
576
954
  }
955
+
577
956
  .uui-quoteblock:after,
578
957
  .uui-text blockquote:after {
579
958
  content: close-quote;
@@ -585,6 +964,7 @@ UUI - Mapping-level or specific component name - State - Name - Part - Overwrite
585
964
  margin-bottom: -2px;
586
965
  display: inline-block;
587
966
  }
967
+
588
968
  .uui-ul,
589
969
  .uui-text ul {
590
970
  list-style-type: square;
@@ -592,6 +972,7 @@ UUI - Mapping-level or specific component name - State - Name - Part - Overwrite
592
972
  margin-top: var(--uui-size-layout-1,24px);
593
973
  margin-bottom: var(--uui-size-layout-1,24px);
594
974
  }
975
+
595
976
  .uui-ol,
596
977
  .uui-text ol {
597
978
  padding-left: var(--uui-size-layout-1,24px);