domma-js 0.25.0 → 0.25.1
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/package.json +1 -1
- package/public/dist/bundles/domma-complete.css +136 -14
- package/public/dist/bundles/domma-data-focused.css +136 -14
- package/public/dist/bundles/domma-essentials.css +136 -14
- package/public/dist/bundles/domma-full.css +136 -14
- package/public/dist/bundles/domma-minimal.css +8 -8
- package/public/dist/domma-syntax.min.js +3 -3
- package/public/dist/domma.css +3 -3
- package/public/dist/domma.esm.js +4 -4
- package/public/dist/domma.min.js +4 -4
- package/public/dist/elements.css +125 -3
- package/public/dist/grid.css +3 -3
- package/public/dist/syntax.css +3 -3
- package/public/dist/themes/domma-themes.css +3 -3
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Domma Complete CSS Bundle v0.25.
|
|
2
|
+
* Domma Complete CSS Bundle v0.25.1
|
|
3
3
|
* Dynamic Object Manipulation & Modeling API
|
|
4
4
|
* (c) 2026 Darryl Waterhouse & DCBW-IT
|
|
5
|
-
* Built: 2026-05-
|
|
5
|
+
* Built: 2026-05-09T19:57:20.968Z
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
/* ============================================
|
|
@@ -11,11 +11,11 @@
|
|
|
11
11
|
============================================ */
|
|
12
12
|
|
|
13
13
|
/*!
|
|
14
|
-
* Domma Core CSS v0.25.
|
|
14
|
+
* Domma Core CSS v0.25.1
|
|
15
15
|
* Dynamic Object Manipulation & Modeling API
|
|
16
16
|
* (c) 2026 Darryl Waterhouse & DCBW-IT
|
|
17
|
-
* Built: 2026-05-
|
|
18
|
-
* Commit:
|
|
17
|
+
* Built: 2026-05-09T19:57:20.749Z
|
|
18
|
+
* Commit: d75ef91
|
|
19
19
|
*/
|
|
20
20
|
|
|
21
21
|
/**
|
|
@@ -4829,11 +4829,11 @@ body.dm-cloaked.dm-ready {
|
|
|
4829
4829
|
============================================ */
|
|
4830
4830
|
|
|
4831
4831
|
/*!
|
|
4832
|
-
* Domma Grid CSS v0.25.
|
|
4832
|
+
* Domma Grid CSS v0.25.1
|
|
4833
4833
|
* Dynamic Object Manipulation & Modeling API
|
|
4834
4834
|
* (c) 2026 Darryl Waterhouse & DCBW-IT
|
|
4835
|
-
* Built: 2026-05-
|
|
4836
|
-
* Commit:
|
|
4835
|
+
* Built: 2026-05-09T19:57:20.753Z
|
|
4836
|
+
* Commit: d75ef91
|
|
4837
4837
|
*/
|
|
4838
4838
|
|
|
4839
4839
|
/**
|
|
@@ -5454,11 +5454,11 @@ body.dm-cloaked.dm-ready {
|
|
|
5454
5454
|
============================================ */
|
|
5455
5455
|
|
|
5456
5456
|
/*!
|
|
5457
|
-
* Domma Elements CSS v0.25.
|
|
5457
|
+
* Domma Elements CSS v0.25.1
|
|
5458
5458
|
* Dynamic Object Manipulation & Modeling API
|
|
5459
5459
|
* (c) 2026 Darryl Waterhouse & DCBW-IT
|
|
5460
|
-
* Built: 2026-05-
|
|
5461
|
-
* Commit:
|
|
5460
|
+
* Built: 2026-05-09T19:57:20.759Z
|
|
5461
|
+
* Commit: d75ef91
|
|
5462
5462
|
*/
|
|
5463
5463
|
|
|
5464
5464
|
/**
|
|
@@ -13188,6 +13188,128 @@ code {
|
|
|
13188
13188
|
color: var(--dm-text);
|
|
13189
13189
|
}
|
|
13190
13190
|
|
|
13191
|
+
/* ============================================================
|
|
13192
|
+
* Page-roller chooser slideover — structured editor styling
|
|
13193
|
+
* ============================================================ */
|
|
13194
|
+
.qr-chooser-slideover-body {
|
|
13195
|
+
padding: 1.25rem;
|
|
13196
|
+
display: flex;
|
|
13197
|
+
flex-direction: column;
|
|
13198
|
+
gap: 1.25rem;
|
|
13199
|
+
}
|
|
13200
|
+
|
|
13201
|
+
.qr-chooser-slideover-body > h3 {
|
|
13202
|
+
margin: 0 0 0.25rem;
|
|
13203
|
+
font-size: 1.05rem;
|
|
13204
|
+
color: var(--dm-text);
|
|
13205
|
+
}
|
|
13206
|
+
|
|
13207
|
+
.qr-chooser-preview {
|
|
13208
|
+
padding: 0.85rem;
|
|
13209
|
+
border: 1px dashed var(--dm-border);
|
|
13210
|
+
border-radius: var(--dm-radius);
|
|
13211
|
+
background: var(--dm-bg-alt, color-mix(in srgb, var(--dm-card-bg) 92%, var(--dm-text)));
|
|
13212
|
+
}
|
|
13213
|
+
|
|
13214
|
+
.qr-chooser-preview-label {
|
|
13215
|
+
font-size: 0.7rem;
|
|
13216
|
+
text-transform: uppercase;
|
|
13217
|
+
letter-spacing: 0.06em;
|
|
13218
|
+
color: var(--dm-text-muted);
|
|
13219
|
+
margin-bottom: 0.5rem;
|
|
13220
|
+
font-weight: 600;
|
|
13221
|
+
}
|
|
13222
|
+
|
|
13223
|
+
.qr-chooser-section {
|
|
13224
|
+
border: 1px solid var(--dm-border);
|
|
13225
|
+
border-radius: var(--dm-radius);
|
|
13226
|
+
background: var(--dm-card-bg);
|
|
13227
|
+
}
|
|
13228
|
+
|
|
13229
|
+
.qr-chooser-section-header {
|
|
13230
|
+
padding: 0.6rem 0.85rem;
|
|
13231
|
+
border-bottom: 1px solid var(--dm-border);
|
|
13232
|
+
font-weight: 600;
|
|
13233
|
+
color: var(--dm-text);
|
|
13234
|
+
font-size: 0.9rem;
|
|
13235
|
+
background: color-mix(in srgb, var(--dm-bg) 50%, transparent);
|
|
13236
|
+
}
|
|
13237
|
+
|
|
13238
|
+
.qr-chooser-section-body {
|
|
13239
|
+
padding: 0.75rem 0.85rem;
|
|
13240
|
+
display: flex;
|
|
13241
|
+
flex-direction: column;
|
|
13242
|
+
gap: 0.6rem;
|
|
13243
|
+
}
|
|
13244
|
+
|
|
13245
|
+
.qr-chooser-row {
|
|
13246
|
+
display: grid;
|
|
13247
|
+
grid-template-columns: 1fr 1fr;
|
|
13248
|
+
gap: 0.6rem;
|
|
13249
|
+
}
|
|
13250
|
+
|
|
13251
|
+
.qr-chooser-row.is-single {
|
|
13252
|
+
grid-template-columns: 1fr;
|
|
13253
|
+
}
|
|
13254
|
+
|
|
13255
|
+
.qr-chooser-field-label {
|
|
13256
|
+
display: block;
|
|
13257
|
+
font-size: 0.8rem;
|
|
13258
|
+
font-weight: 500;
|
|
13259
|
+
color: var(--dm-text);
|
|
13260
|
+
margin-bottom: 0.2rem;
|
|
13261
|
+
}
|
|
13262
|
+
|
|
13263
|
+
.qr-chooser-field-help {
|
|
13264
|
+
font-size: 0.72rem;
|
|
13265
|
+
color: var(--dm-text-muted);
|
|
13266
|
+
margin-top: 0.2rem;
|
|
13267
|
+
line-height: 1.3;
|
|
13268
|
+
}
|
|
13269
|
+
|
|
13270
|
+
.qr-chooser-checkbox-row {
|
|
13271
|
+
display: flex;
|
|
13272
|
+
align-items: center;
|
|
13273
|
+
gap: 0.4rem;
|
|
13274
|
+
font-size: 0.85rem;
|
|
13275
|
+
color: var(--dm-text);
|
|
13276
|
+
}
|
|
13277
|
+
|
|
13278
|
+
.qr-chooser-options-list {
|
|
13279
|
+
display: flex;
|
|
13280
|
+
flex-direction: column;
|
|
13281
|
+
gap: 0.5rem;
|
|
13282
|
+
}
|
|
13283
|
+
|
|
13284
|
+
.qr-chooser-option-row {
|
|
13285
|
+
border: 1px solid var(--dm-border);
|
|
13286
|
+
border-radius: var(--dm-radius-sm);
|
|
13287
|
+
padding: 0.6rem;
|
|
13288
|
+
background: color-mix(in srgb, var(--dm-bg) 60%, transparent);
|
|
13289
|
+
display: flex;
|
|
13290
|
+
flex-direction: column;
|
|
13291
|
+
gap: 0.4rem;
|
|
13292
|
+
}
|
|
13293
|
+
|
|
13294
|
+
.qr-chooser-option-row .form-input,
|
|
13295
|
+
.qr-chooser-option-row select.form-input {
|
|
13296
|
+
font-size: 0.82rem;
|
|
13297
|
+
}
|
|
13298
|
+
|
|
13299
|
+
.qr-chooser-option-row-flags {
|
|
13300
|
+
display: flex;
|
|
13301
|
+
gap: 1rem;
|
|
13302
|
+
font-size: 0.78rem;
|
|
13303
|
+
}
|
|
13304
|
+
|
|
13305
|
+
.qr-chooser-actions {
|
|
13306
|
+
display: flex;
|
|
13307
|
+
gap: 0.5rem;
|
|
13308
|
+
justify-content: flex-end;
|
|
13309
|
+
padding-top: 0.5rem;
|
|
13310
|
+
border-top: 1px solid var(--dm-border);
|
|
13311
|
+
}
|
|
13312
|
+
|
|
13191
13313
|
|
|
13192
13314
|
/* ============================================
|
|
13193
13315
|
THEME SYSTEM
|
|
@@ -13195,11 +13317,11 @@ code {
|
|
|
13195
13317
|
============================================ */
|
|
13196
13318
|
|
|
13197
13319
|
/*!
|
|
13198
|
-
* Domma Themes v0.25.
|
|
13320
|
+
* Domma Themes v0.25.1
|
|
13199
13321
|
* Dynamic Object Manipulation & Modeling API
|
|
13200
13322
|
* (c) 2026 Darryl Waterhouse & DCBW-IT
|
|
13201
|
-
* Built: 2026-05-
|
|
13202
|
-
* Commit:
|
|
13323
|
+
* Built: 2026-05-09T19:57:20.733Z
|
|
13324
|
+
* Commit: d75ef91
|
|
13203
13325
|
*/
|
|
13204
13326
|
|
|
13205
13327
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Domma Data-Focused CSS Bundle v0.25.
|
|
2
|
+
* Domma Data-Focused CSS Bundle v0.25.1
|
|
3
3
|
* Dynamic Object Manipulation & Modeling API
|
|
4
4
|
* (c) 2026 Darryl Waterhouse & DCBW-IT
|
|
5
|
-
* Built: 2026-05-
|
|
5
|
+
* Built: 2026-05-09T19:57:20.962Z
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
/* ============================================
|
|
@@ -11,11 +11,11 @@
|
|
|
11
11
|
============================================ */
|
|
12
12
|
|
|
13
13
|
/*!
|
|
14
|
-
* Domma Core CSS v0.25.
|
|
14
|
+
* Domma Core CSS v0.25.1
|
|
15
15
|
* Dynamic Object Manipulation & Modeling API
|
|
16
16
|
* (c) 2026 Darryl Waterhouse & DCBW-IT
|
|
17
|
-
* Built: 2026-05-
|
|
18
|
-
* Commit:
|
|
17
|
+
* Built: 2026-05-09T19:57:20.749Z
|
|
18
|
+
* Commit: d75ef91
|
|
19
19
|
*/
|
|
20
20
|
|
|
21
21
|
/**
|
|
@@ -4829,11 +4829,11 @@ body.dm-cloaked.dm-ready {
|
|
|
4829
4829
|
============================================ */
|
|
4830
4830
|
|
|
4831
4831
|
/*!
|
|
4832
|
-
* Domma Grid CSS v0.25.
|
|
4832
|
+
* Domma Grid CSS v0.25.1
|
|
4833
4833
|
* Dynamic Object Manipulation & Modeling API
|
|
4834
4834
|
* (c) 2026 Darryl Waterhouse & DCBW-IT
|
|
4835
|
-
* Built: 2026-05-
|
|
4836
|
-
* Commit:
|
|
4835
|
+
* Built: 2026-05-09T19:57:20.753Z
|
|
4836
|
+
* Commit: d75ef91
|
|
4837
4837
|
*/
|
|
4838
4838
|
|
|
4839
4839
|
/**
|
|
@@ -5454,11 +5454,11 @@ body.dm-cloaked.dm-ready {
|
|
|
5454
5454
|
============================================ */
|
|
5455
5455
|
|
|
5456
5456
|
/*!
|
|
5457
|
-
* Domma Elements CSS v0.25.
|
|
5457
|
+
* Domma Elements CSS v0.25.1
|
|
5458
5458
|
* Dynamic Object Manipulation & Modeling API
|
|
5459
5459
|
* (c) 2026 Darryl Waterhouse & DCBW-IT
|
|
5460
|
-
* Built: 2026-05-
|
|
5461
|
-
* Commit:
|
|
5460
|
+
* Built: 2026-05-09T19:57:20.759Z
|
|
5461
|
+
* Commit: d75ef91
|
|
5462
5462
|
*/
|
|
5463
5463
|
|
|
5464
5464
|
/**
|
|
@@ -13188,6 +13188,128 @@ code {
|
|
|
13188
13188
|
color: var(--dm-text);
|
|
13189
13189
|
}
|
|
13190
13190
|
|
|
13191
|
+
/* ============================================================
|
|
13192
|
+
* Page-roller chooser slideover — structured editor styling
|
|
13193
|
+
* ============================================================ */
|
|
13194
|
+
.qr-chooser-slideover-body {
|
|
13195
|
+
padding: 1.25rem;
|
|
13196
|
+
display: flex;
|
|
13197
|
+
flex-direction: column;
|
|
13198
|
+
gap: 1.25rem;
|
|
13199
|
+
}
|
|
13200
|
+
|
|
13201
|
+
.qr-chooser-slideover-body > h3 {
|
|
13202
|
+
margin: 0 0 0.25rem;
|
|
13203
|
+
font-size: 1.05rem;
|
|
13204
|
+
color: var(--dm-text);
|
|
13205
|
+
}
|
|
13206
|
+
|
|
13207
|
+
.qr-chooser-preview {
|
|
13208
|
+
padding: 0.85rem;
|
|
13209
|
+
border: 1px dashed var(--dm-border);
|
|
13210
|
+
border-radius: var(--dm-radius);
|
|
13211
|
+
background: var(--dm-bg-alt, color-mix(in srgb, var(--dm-card-bg) 92%, var(--dm-text)));
|
|
13212
|
+
}
|
|
13213
|
+
|
|
13214
|
+
.qr-chooser-preview-label {
|
|
13215
|
+
font-size: 0.7rem;
|
|
13216
|
+
text-transform: uppercase;
|
|
13217
|
+
letter-spacing: 0.06em;
|
|
13218
|
+
color: var(--dm-text-muted);
|
|
13219
|
+
margin-bottom: 0.5rem;
|
|
13220
|
+
font-weight: 600;
|
|
13221
|
+
}
|
|
13222
|
+
|
|
13223
|
+
.qr-chooser-section {
|
|
13224
|
+
border: 1px solid var(--dm-border);
|
|
13225
|
+
border-radius: var(--dm-radius);
|
|
13226
|
+
background: var(--dm-card-bg);
|
|
13227
|
+
}
|
|
13228
|
+
|
|
13229
|
+
.qr-chooser-section-header {
|
|
13230
|
+
padding: 0.6rem 0.85rem;
|
|
13231
|
+
border-bottom: 1px solid var(--dm-border);
|
|
13232
|
+
font-weight: 600;
|
|
13233
|
+
color: var(--dm-text);
|
|
13234
|
+
font-size: 0.9rem;
|
|
13235
|
+
background: color-mix(in srgb, var(--dm-bg) 50%, transparent);
|
|
13236
|
+
}
|
|
13237
|
+
|
|
13238
|
+
.qr-chooser-section-body {
|
|
13239
|
+
padding: 0.75rem 0.85rem;
|
|
13240
|
+
display: flex;
|
|
13241
|
+
flex-direction: column;
|
|
13242
|
+
gap: 0.6rem;
|
|
13243
|
+
}
|
|
13244
|
+
|
|
13245
|
+
.qr-chooser-row {
|
|
13246
|
+
display: grid;
|
|
13247
|
+
grid-template-columns: 1fr 1fr;
|
|
13248
|
+
gap: 0.6rem;
|
|
13249
|
+
}
|
|
13250
|
+
|
|
13251
|
+
.qr-chooser-row.is-single {
|
|
13252
|
+
grid-template-columns: 1fr;
|
|
13253
|
+
}
|
|
13254
|
+
|
|
13255
|
+
.qr-chooser-field-label {
|
|
13256
|
+
display: block;
|
|
13257
|
+
font-size: 0.8rem;
|
|
13258
|
+
font-weight: 500;
|
|
13259
|
+
color: var(--dm-text);
|
|
13260
|
+
margin-bottom: 0.2rem;
|
|
13261
|
+
}
|
|
13262
|
+
|
|
13263
|
+
.qr-chooser-field-help {
|
|
13264
|
+
font-size: 0.72rem;
|
|
13265
|
+
color: var(--dm-text-muted);
|
|
13266
|
+
margin-top: 0.2rem;
|
|
13267
|
+
line-height: 1.3;
|
|
13268
|
+
}
|
|
13269
|
+
|
|
13270
|
+
.qr-chooser-checkbox-row {
|
|
13271
|
+
display: flex;
|
|
13272
|
+
align-items: center;
|
|
13273
|
+
gap: 0.4rem;
|
|
13274
|
+
font-size: 0.85rem;
|
|
13275
|
+
color: var(--dm-text);
|
|
13276
|
+
}
|
|
13277
|
+
|
|
13278
|
+
.qr-chooser-options-list {
|
|
13279
|
+
display: flex;
|
|
13280
|
+
flex-direction: column;
|
|
13281
|
+
gap: 0.5rem;
|
|
13282
|
+
}
|
|
13283
|
+
|
|
13284
|
+
.qr-chooser-option-row {
|
|
13285
|
+
border: 1px solid var(--dm-border);
|
|
13286
|
+
border-radius: var(--dm-radius-sm);
|
|
13287
|
+
padding: 0.6rem;
|
|
13288
|
+
background: color-mix(in srgb, var(--dm-bg) 60%, transparent);
|
|
13289
|
+
display: flex;
|
|
13290
|
+
flex-direction: column;
|
|
13291
|
+
gap: 0.4rem;
|
|
13292
|
+
}
|
|
13293
|
+
|
|
13294
|
+
.qr-chooser-option-row .form-input,
|
|
13295
|
+
.qr-chooser-option-row select.form-input {
|
|
13296
|
+
font-size: 0.82rem;
|
|
13297
|
+
}
|
|
13298
|
+
|
|
13299
|
+
.qr-chooser-option-row-flags {
|
|
13300
|
+
display: flex;
|
|
13301
|
+
gap: 1rem;
|
|
13302
|
+
font-size: 0.78rem;
|
|
13303
|
+
}
|
|
13304
|
+
|
|
13305
|
+
.qr-chooser-actions {
|
|
13306
|
+
display: flex;
|
|
13307
|
+
gap: 0.5rem;
|
|
13308
|
+
justify-content: flex-end;
|
|
13309
|
+
padding-top: 0.5rem;
|
|
13310
|
+
border-top: 1px solid var(--dm-border);
|
|
13311
|
+
}
|
|
13312
|
+
|
|
13191
13313
|
|
|
13192
13314
|
/* ============================================
|
|
13193
13315
|
THEME SYSTEM
|
|
@@ -13195,11 +13317,11 @@ code {
|
|
|
13195
13317
|
============================================ */
|
|
13196
13318
|
|
|
13197
13319
|
/*!
|
|
13198
|
-
* Domma Themes v0.25.
|
|
13320
|
+
* Domma Themes v0.25.1
|
|
13199
13321
|
* Dynamic Object Manipulation & Modeling API
|
|
13200
13322
|
* (c) 2026 Darryl Waterhouse & DCBW-IT
|
|
13201
|
-
* Built: 2026-05-
|
|
13202
|
-
* Commit:
|
|
13323
|
+
* Built: 2026-05-09T19:57:20.733Z
|
|
13324
|
+
* Commit: d75ef91
|
|
13203
13325
|
*/
|
|
13204
13326
|
|
|
13205
13327
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Domma Essentials CSS Bundle v0.25.
|
|
2
|
+
* Domma Essentials CSS Bundle v0.25.1
|
|
3
3
|
* Dynamic Object Manipulation & Modeling API
|
|
4
4
|
* (c) 2026 Darryl Waterhouse & DCBW-IT
|
|
5
|
-
* Built: 2026-05-
|
|
5
|
+
* Built: 2026-05-09T19:57:20.949Z
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
/* ============================================
|
|
@@ -11,11 +11,11 @@
|
|
|
11
11
|
============================================ */
|
|
12
12
|
|
|
13
13
|
/*!
|
|
14
|
-
* Domma Core CSS v0.25.
|
|
14
|
+
* Domma Core CSS v0.25.1
|
|
15
15
|
* Dynamic Object Manipulation & Modeling API
|
|
16
16
|
* (c) 2026 Darryl Waterhouse & DCBW-IT
|
|
17
|
-
* Built: 2026-05-
|
|
18
|
-
* Commit:
|
|
17
|
+
* Built: 2026-05-09T19:57:20.749Z
|
|
18
|
+
* Commit: d75ef91
|
|
19
19
|
*/
|
|
20
20
|
|
|
21
21
|
/**
|
|
@@ -4829,11 +4829,11 @@ body.dm-cloaked.dm-ready {
|
|
|
4829
4829
|
============================================ */
|
|
4830
4830
|
|
|
4831
4831
|
/*!
|
|
4832
|
-
* Domma Grid CSS v0.25.
|
|
4832
|
+
* Domma Grid CSS v0.25.1
|
|
4833
4833
|
* Dynamic Object Manipulation & Modeling API
|
|
4834
4834
|
* (c) 2026 Darryl Waterhouse & DCBW-IT
|
|
4835
|
-
* Built: 2026-05-
|
|
4836
|
-
* Commit:
|
|
4835
|
+
* Built: 2026-05-09T19:57:20.753Z
|
|
4836
|
+
* Commit: d75ef91
|
|
4837
4837
|
*/
|
|
4838
4838
|
|
|
4839
4839
|
/**
|
|
@@ -5454,11 +5454,11 @@ body.dm-cloaked.dm-ready {
|
|
|
5454
5454
|
============================================ */
|
|
5455
5455
|
|
|
5456
5456
|
/*!
|
|
5457
|
-
* Domma Elements CSS v0.25.
|
|
5457
|
+
* Domma Elements CSS v0.25.1
|
|
5458
5458
|
* Dynamic Object Manipulation & Modeling API
|
|
5459
5459
|
* (c) 2026 Darryl Waterhouse & DCBW-IT
|
|
5460
|
-
* Built: 2026-05-
|
|
5461
|
-
* Commit:
|
|
5460
|
+
* Built: 2026-05-09T19:57:20.759Z
|
|
5461
|
+
* Commit: d75ef91
|
|
5462
5462
|
*/
|
|
5463
5463
|
|
|
5464
5464
|
/**
|
|
@@ -13188,6 +13188,128 @@ code {
|
|
|
13188
13188
|
color: var(--dm-text);
|
|
13189
13189
|
}
|
|
13190
13190
|
|
|
13191
|
+
/* ============================================================
|
|
13192
|
+
* Page-roller chooser slideover — structured editor styling
|
|
13193
|
+
* ============================================================ */
|
|
13194
|
+
.qr-chooser-slideover-body {
|
|
13195
|
+
padding: 1.25rem;
|
|
13196
|
+
display: flex;
|
|
13197
|
+
flex-direction: column;
|
|
13198
|
+
gap: 1.25rem;
|
|
13199
|
+
}
|
|
13200
|
+
|
|
13201
|
+
.qr-chooser-slideover-body > h3 {
|
|
13202
|
+
margin: 0 0 0.25rem;
|
|
13203
|
+
font-size: 1.05rem;
|
|
13204
|
+
color: var(--dm-text);
|
|
13205
|
+
}
|
|
13206
|
+
|
|
13207
|
+
.qr-chooser-preview {
|
|
13208
|
+
padding: 0.85rem;
|
|
13209
|
+
border: 1px dashed var(--dm-border);
|
|
13210
|
+
border-radius: var(--dm-radius);
|
|
13211
|
+
background: var(--dm-bg-alt, color-mix(in srgb, var(--dm-card-bg) 92%, var(--dm-text)));
|
|
13212
|
+
}
|
|
13213
|
+
|
|
13214
|
+
.qr-chooser-preview-label {
|
|
13215
|
+
font-size: 0.7rem;
|
|
13216
|
+
text-transform: uppercase;
|
|
13217
|
+
letter-spacing: 0.06em;
|
|
13218
|
+
color: var(--dm-text-muted);
|
|
13219
|
+
margin-bottom: 0.5rem;
|
|
13220
|
+
font-weight: 600;
|
|
13221
|
+
}
|
|
13222
|
+
|
|
13223
|
+
.qr-chooser-section {
|
|
13224
|
+
border: 1px solid var(--dm-border);
|
|
13225
|
+
border-radius: var(--dm-radius);
|
|
13226
|
+
background: var(--dm-card-bg);
|
|
13227
|
+
}
|
|
13228
|
+
|
|
13229
|
+
.qr-chooser-section-header {
|
|
13230
|
+
padding: 0.6rem 0.85rem;
|
|
13231
|
+
border-bottom: 1px solid var(--dm-border);
|
|
13232
|
+
font-weight: 600;
|
|
13233
|
+
color: var(--dm-text);
|
|
13234
|
+
font-size: 0.9rem;
|
|
13235
|
+
background: color-mix(in srgb, var(--dm-bg) 50%, transparent);
|
|
13236
|
+
}
|
|
13237
|
+
|
|
13238
|
+
.qr-chooser-section-body {
|
|
13239
|
+
padding: 0.75rem 0.85rem;
|
|
13240
|
+
display: flex;
|
|
13241
|
+
flex-direction: column;
|
|
13242
|
+
gap: 0.6rem;
|
|
13243
|
+
}
|
|
13244
|
+
|
|
13245
|
+
.qr-chooser-row {
|
|
13246
|
+
display: grid;
|
|
13247
|
+
grid-template-columns: 1fr 1fr;
|
|
13248
|
+
gap: 0.6rem;
|
|
13249
|
+
}
|
|
13250
|
+
|
|
13251
|
+
.qr-chooser-row.is-single {
|
|
13252
|
+
grid-template-columns: 1fr;
|
|
13253
|
+
}
|
|
13254
|
+
|
|
13255
|
+
.qr-chooser-field-label {
|
|
13256
|
+
display: block;
|
|
13257
|
+
font-size: 0.8rem;
|
|
13258
|
+
font-weight: 500;
|
|
13259
|
+
color: var(--dm-text);
|
|
13260
|
+
margin-bottom: 0.2rem;
|
|
13261
|
+
}
|
|
13262
|
+
|
|
13263
|
+
.qr-chooser-field-help {
|
|
13264
|
+
font-size: 0.72rem;
|
|
13265
|
+
color: var(--dm-text-muted);
|
|
13266
|
+
margin-top: 0.2rem;
|
|
13267
|
+
line-height: 1.3;
|
|
13268
|
+
}
|
|
13269
|
+
|
|
13270
|
+
.qr-chooser-checkbox-row {
|
|
13271
|
+
display: flex;
|
|
13272
|
+
align-items: center;
|
|
13273
|
+
gap: 0.4rem;
|
|
13274
|
+
font-size: 0.85rem;
|
|
13275
|
+
color: var(--dm-text);
|
|
13276
|
+
}
|
|
13277
|
+
|
|
13278
|
+
.qr-chooser-options-list {
|
|
13279
|
+
display: flex;
|
|
13280
|
+
flex-direction: column;
|
|
13281
|
+
gap: 0.5rem;
|
|
13282
|
+
}
|
|
13283
|
+
|
|
13284
|
+
.qr-chooser-option-row {
|
|
13285
|
+
border: 1px solid var(--dm-border);
|
|
13286
|
+
border-radius: var(--dm-radius-sm);
|
|
13287
|
+
padding: 0.6rem;
|
|
13288
|
+
background: color-mix(in srgb, var(--dm-bg) 60%, transparent);
|
|
13289
|
+
display: flex;
|
|
13290
|
+
flex-direction: column;
|
|
13291
|
+
gap: 0.4rem;
|
|
13292
|
+
}
|
|
13293
|
+
|
|
13294
|
+
.qr-chooser-option-row .form-input,
|
|
13295
|
+
.qr-chooser-option-row select.form-input {
|
|
13296
|
+
font-size: 0.82rem;
|
|
13297
|
+
}
|
|
13298
|
+
|
|
13299
|
+
.qr-chooser-option-row-flags {
|
|
13300
|
+
display: flex;
|
|
13301
|
+
gap: 1rem;
|
|
13302
|
+
font-size: 0.78rem;
|
|
13303
|
+
}
|
|
13304
|
+
|
|
13305
|
+
.qr-chooser-actions {
|
|
13306
|
+
display: flex;
|
|
13307
|
+
gap: 0.5rem;
|
|
13308
|
+
justify-content: flex-end;
|
|
13309
|
+
padding-top: 0.5rem;
|
|
13310
|
+
border-top: 1px solid var(--dm-border);
|
|
13311
|
+
}
|
|
13312
|
+
|
|
13191
13313
|
|
|
13192
13314
|
/* ============================================
|
|
13193
13315
|
THEME SYSTEM
|
|
@@ -13195,11 +13317,11 @@ code {
|
|
|
13195
13317
|
============================================ */
|
|
13196
13318
|
|
|
13197
13319
|
/*!
|
|
13198
|
-
* Domma Themes v0.25.
|
|
13320
|
+
* Domma Themes v0.25.1
|
|
13199
13321
|
* Dynamic Object Manipulation & Modeling API
|
|
13200
13322
|
* (c) 2026 Darryl Waterhouse & DCBW-IT
|
|
13201
|
-
* Built: 2026-05-
|
|
13202
|
-
* Commit:
|
|
13323
|
+
* Built: 2026-05-09T19:57:20.733Z
|
|
13324
|
+
* Commit: d75ef91
|
|
13203
13325
|
*/
|
|
13204
13326
|
|
|
13205
13327
|
/**
|