katalyst-koi 4.3.0.beta.3 → 4.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/builds/koi/admin.css +636 -476
- data/app/assets/builds/koi/admin.css.map +1 -1
- data/app/assets/javascripts/koi/admin.js +4 -1
- data/app/assets/javascripts/koi/controllers/file_field_controller.js +9 -0
- data/app/assets/stylesheets/koi/components/_document-field.scss +79 -0
- data/app/assets/stylesheets/koi/components/_image-field.scss +87 -25
- data/app/assets/stylesheets/koi/components/_index.scss +1 -0
- data/app/views/katalyst/content/figures/_figure.html+form.erb +3 -3
- data/lib/govuk_design_system_formbuilder/concerns/file_element.rb +10 -3
- data/lib/govuk_design_system_formbuilder/elements/document.rb +6 -0
- data/lib/govuk_design_system_formbuilder/elements/image.rb +6 -0
- metadata +5 -4
@@ -307,36 +307,144 @@ textarea {
|
|
307
307
|
column-gap: 0.5rem;
|
308
308
|
}
|
309
309
|
|
310
|
-
.govuk-
|
311
|
-
|
310
|
+
.govuk-document-field {
|
311
|
+
display: grid;
|
312
|
+
grid-template-areas: "label" "hint" "error" "preview" "file" "supplemental";
|
313
|
+
grid-template-columns: minmax(auto, var(--text-width));
|
314
|
+
grid-auto-rows: auto;
|
312
315
|
}
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
+
.govuk-document-field label {
|
317
|
+
grid-area: label;
|
318
|
+
}
|
319
|
+
.govuk-document-field .govuk-hint {
|
320
|
+
grid-area: hint;
|
321
|
+
}
|
322
|
+
.govuk-document-field .govuk-error-message {
|
323
|
+
grid-area: error;
|
324
|
+
}
|
325
|
+
.govuk-document-field input {
|
326
|
+
grid-area: file;
|
327
|
+
}
|
328
|
+
.govuk-document-field .govuk-file-upload {
|
329
|
+
margin-left: 0;
|
330
|
+
padding: 3px;
|
331
|
+
max-width: var(--text-width);
|
332
|
+
}
|
333
|
+
.govuk-document-field .preview-file {
|
334
|
+
grid-area: preview;
|
335
|
+
position: relative;
|
336
|
+
overflow: visible;
|
337
|
+
background-color: #f4f4f4;
|
338
|
+
border: 2px solid black;
|
339
|
+
margin-bottom: 0.5rem;
|
340
|
+
padding: 5px;
|
341
|
+
line-height: 1.5;
|
342
|
+
align-items: start;
|
316
343
|
display: inline-flex;
|
317
|
-
|
344
|
+
margin-right: auto;
|
318
345
|
}
|
319
|
-
.preview-
|
320
|
-
|
321
|
-
align-self: center;
|
322
|
-
padding-left: 0.5rem;
|
346
|
+
.govuk-document-field .preview-file .preview-filename {
|
347
|
+
line-height: unset;
|
323
348
|
}
|
324
|
-
.preview-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
background
|
329
|
-
background-size: contain;
|
330
|
-
background-position: center;
|
349
|
+
.govuk-document-field .preview-file .file-destroy {
|
350
|
+
appearance: none;
|
351
|
+
color: black;
|
352
|
+
border: none;
|
353
|
+
background: none;
|
331
354
|
display: inline-block;
|
332
|
-
|
333
|
-
|
334
|
-
margin-left: 0.5rem;
|
355
|
+
margin-left: 0.2rem;
|
356
|
+
padding: 0;
|
335
357
|
}
|
336
|
-
.preview-
|
337
|
-
|
338
|
-
|
339
|
-
|
358
|
+
.govuk-document-field .preview-file .file-destroy::after {
|
359
|
+
content: "×";
|
360
|
+
display: block;
|
361
|
+
position: relative;
|
362
|
+
width: 21px;
|
363
|
+
line-height: 21px;
|
364
|
+
font-size: 21px;
|
365
|
+
}
|
366
|
+
.govuk-document-field > div:last-child {
|
367
|
+
grid-area: supplemental;
|
368
|
+
}
|
369
|
+
.govuk-document-field .govuk-form-group {
|
370
|
+
margin-top: 30px;
|
371
|
+
}
|
372
|
+
|
373
|
+
.govuk-image-field {
|
374
|
+
display: grid;
|
375
|
+
grid-template-areas: "label preview" "hint preview" "error preview" "file preview" "supplemental supplemental";
|
376
|
+
grid-template-columns: 1fr auto;
|
377
|
+
grid-template-rows: auto auto auto 1fr auto;
|
378
|
+
gap: 0 1rem;
|
379
|
+
max-width: var(--text-width);
|
380
|
+
}
|
381
|
+
.govuk-image-field label {
|
382
|
+
grid-area: label;
|
383
|
+
}
|
384
|
+
.govuk-image-field .govuk-hint {
|
385
|
+
grid-area: hint;
|
386
|
+
}
|
387
|
+
.govuk-image-field .govuk-error-message {
|
388
|
+
grid-area: error;
|
389
|
+
}
|
390
|
+
.govuk-image-field input {
|
391
|
+
grid-area: file;
|
392
|
+
align-self: start;
|
393
|
+
}
|
394
|
+
.govuk-image-field .govuk-file-upload {
|
395
|
+
margin-left: 0;
|
396
|
+
padding: 3px;
|
397
|
+
}
|
398
|
+
.govuk-image-field .preview-image {
|
399
|
+
grid-area: preview;
|
400
|
+
position: relative;
|
401
|
+
display: grid;
|
402
|
+
overflow: visible;
|
403
|
+
align-self: start;
|
404
|
+
align-items: center;
|
405
|
+
justify-items: center;
|
406
|
+
background-color: #f4f4f4;
|
407
|
+
border: 2px solid black;
|
408
|
+
min-width: calc(8rem + 4px);
|
409
|
+
min-height: calc(8rem + 4px);
|
410
|
+
}
|
411
|
+
.govuk-image-field .preview-image .image-thumbnail {
|
412
|
+
max-width: 8rem;
|
413
|
+
max-height: 8rem;
|
414
|
+
}
|
415
|
+
.govuk-image-field .preview-image .file-destroy {
|
416
|
+
appearance: none;
|
417
|
+
position: absolute;
|
418
|
+
background-color: rgba(0, 0, 0, 0.6);
|
419
|
+
color: white;
|
420
|
+
border-radius: 1rem;
|
421
|
+
border: none;
|
422
|
+
display: block;
|
423
|
+
padding: 0;
|
424
|
+
bottom: -10px;
|
425
|
+
right: 50%;
|
426
|
+
margin-right: -10px;
|
427
|
+
}
|
428
|
+
.govuk-image-field .preview-image .file-destroy::after {
|
429
|
+
content: "×";
|
430
|
+
display: block;
|
431
|
+
position: relative;
|
432
|
+
width: 21px;
|
433
|
+
line-height: 21px;
|
434
|
+
font-size: 21px;
|
435
|
+
top: -1px;
|
436
|
+
}
|
437
|
+
.govuk-image-field > div:last-child {
|
438
|
+
grid-area: supplemental;
|
439
|
+
}
|
440
|
+
.govuk-image-field .govuk-form-group {
|
441
|
+
margin-top: 30px;
|
442
|
+
}
|
443
|
+
.govuk-image-field .preview-image.hidden {
|
444
|
+
display: block !important;
|
445
|
+
}
|
446
|
+
.govuk-image-field .preview-image.hidden .file-destroy {
|
447
|
+
display: none;
|
340
448
|
}
|
341
449
|
|
342
450
|
.index-actions > form {
|
@@ -1961,21 +2069,74 @@ trix-editor .attachment__metadata .attachment__size {
|
|
1961
2069
|
--heading--h4: 1rem;
|
1962
2070
|
}
|
1963
2071
|
|
2072
|
+
|
2073
|
+
|
2074
|
+
|
2075
|
+
|
2076
|
+
|
2077
|
+
|
2078
|
+
|
2079
|
+
|
2080
|
+
|
2081
|
+
|
2082
|
+
|
2083
|
+
|
2084
|
+
|
2085
|
+
|
2086
|
+
|
2087
|
+
|
2088
|
+
|
2089
|
+
|
2090
|
+
|
2091
|
+
|
2092
|
+
|
2093
|
+
|
2094
|
+
|
2095
|
+
|
2096
|
+
|
2097
|
+
|
2098
|
+
|
2099
|
+
|
2100
|
+
|
2101
|
+
|
2102
|
+
|
2103
|
+
|
2104
|
+
|
2105
|
+
|
2106
|
+
|
2107
|
+
|
2108
|
+
|
2109
|
+
|
2110
|
+
|
2111
|
+
|
2112
|
+
|
2113
|
+
|
2114
|
+
|
1964
2115
|
:root {
|
1965
|
-
--govuk-frontend-version: "
|
2116
|
+
--govuk-frontend-version: "5.0.0";
|
1966
2117
|
}
|
1967
2118
|
|
2119
|
+
|
1968
2120
|
.govuk-link {
|
1969
2121
|
font-family: "Inter";
|
1970
2122
|
-webkit-font-smoothing: antialiased;
|
1971
2123
|
-moz-osx-font-smoothing: grayscale;
|
1972
2124
|
text-decoration: underline;
|
2125
|
+
text-decoration-thickness: max(1px, .0625rem);
|
2126
|
+
text-underline-offset: 0.1578em;
|
1973
2127
|
}
|
1974
2128
|
@media print {
|
1975
2129
|
.govuk-link {
|
1976
2130
|
font-family: sans-serif;
|
1977
2131
|
}
|
1978
2132
|
}
|
2133
|
+
.govuk-link:hover {
|
2134
|
+
text-decoration-thickness: max(3px, .1875rem, .12em);
|
2135
|
+
-webkit-text-decoration-skip-ink: none;
|
2136
|
+
text-decoration-skip-ink: none;
|
2137
|
+
-webkit-text-decoration-skip: none;
|
2138
|
+
text-decoration-skip: none;
|
2139
|
+
}
|
1979
2140
|
.govuk-link:focus {
|
1980
2141
|
outline: 3px solid transparent;
|
1981
2142
|
color: #0b0c0c;
|
@@ -2001,7 +2162,7 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2001
2162
|
color: #0b0c0c;
|
2002
2163
|
}
|
2003
2164
|
@media print {
|
2004
|
-
[href^="/"].govuk-link
|
2165
|
+
[href^="/"].govuk-link::after, [href^="http://"].govuk-link::after, [href^="https://"].govuk-link::after {
|
2005
2166
|
content: " (" attr(href) ")";
|
2006
2167
|
font-size: 90%;
|
2007
2168
|
word-wrap: break-word;
|
@@ -2065,12 +2226,22 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2065
2226
|
color: #0b0c0c;
|
2066
2227
|
}
|
2067
2228
|
|
2229
|
+
.govuk-link-image {
|
2230
|
+
display: inline-block;
|
2231
|
+
line-height: 0;
|
2232
|
+
text-decoration: none;
|
2233
|
+
}
|
2234
|
+
.govuk-link-image:focus {
|
2235
|
+
outline: 3px solid transparent;
|
2236
|
+
box-shadow: 0 0 0 4px #ffdd00, 0 0 0 8px #0b0c0c;
|
2237
|
+
}
|
2238
|
+
|
2239
|
+
|
2068
2240
|
.govuk-list {
|
2069
2241
|
font-family: "Inter";
|
2070
2242
|
-webkit-font-smoothing: antialiased;
|
2071
2243
|
-moz-osx-font-smoothing: grayscale;
|
2072
2244
|
font-weight: 400;
|
2073
|
-
font-size: 16px;
|
2074
2245
|
font-size: 1rem;
|
2075
2246
|
line-height: 1.5;
|
2076
2247
|
color: var(--site-text-color);
|
@@ -2086,7 +2257,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2086
2257
|
}
|
2087
2258
|
@media (min-width: 40.0625em) {
|
2088
2259
|
.govuk-list {
|
2089
|
-
font-size: 16px;
|
2090
2260
|
font-size: 1rem;
|
2091
2261
|
line-height: 1.5;
|
2092
2262
|
}
|
@@ -2145,13 +2315,13 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2145
2315
|
}
|
2146
2316
|
}
|
2147
2317
|
|
2318
|
+
|
2148
2319
|
.govuk-heading-xl {
|
2149
2320
|
color: var(--site-text-color);
|
2150
2321
|
font-family: "Inter";
|
2151
2322
|
-webkit-font-smoothing: antialiased;
|
2152
2323
|
-moz-osx-font-smoothing: grayscale;
|
2153
2324
|
font-weight: 700;
|
2154
|
-
font-size: 32px;
|
2155
2325
|
font-size: 2rem;
|
2156
2326
|
line-height: 0.545;
|
2157
2327
|
display: block;
|
@@ -2170,7 +2340,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2170
2340
|
}
|
2171
2341
|
@media (min-width: 40.0625em) {
|
2172
2342
|
.govuk-heading-xl {
|
2173
|
-
font-size: 32px;
|
2174
2343
|
font-size: 2rem;
|
2175
2344
|
line-height: 0.545;
|
2176
2345
|
}
|
@@ -2193,7 +2362,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2193
2362
|
-webkit-font-smoothing: antialiased;
|
2194
2363
|
-moz-osx-font-smoothing: grayscale;
|
2195
2364
|
font-weight: 700;
|
2196
|
-
font-size: 24px;
|
2197
2365
|
font-size: 1.5rem;
|
2198
2366
|
line-height: 0.6933333333;
|
2199
2367
|
display: block;
|
@@ -2212,7 +2380,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2212
2380
|
}
|
2213
2381
|
@media (min-width: 40.0625em) {
|
2214
2382
|
.govuk-heading-l {
|
2215
|
-
font-size: 24px;
|
2216
2383
|
font-size: 1.5rem;
|
2217
2384
|
line-height: 0.6933333333;
|
2218
2385
|
}
|
@@ -2235,7 +2402,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2235
2402
|
-webkit-font-smoothing: antialiased;
|
2236
2403
|
-moz-osx-font-smoothing: grayscale;
|
2237
2404
|
font-weight: 700;
|
2238
|
-
font-size: 18px;
|
2239
2405
|
font-size: 1.125rem;
|
2240
2406
|
line-height: 0.9866666667;
|
2241
2407
|
display: block;
|
@@ -2254,7 +2420,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2254
2420
|
}
|
2255
2421
|
@media (min-width: 40.0625em) {
|
2256
2422
|
.govuk-heading-m {
|
2257
|
-
font-size: 18px;
|
2258
2423
|
font-size: 1.125rem;
|
2259
2424
|
line-height: 0.9866666667;
|
2260
2425
|
}
|
@@ -2277,7 +2442,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2277
2442
|
-webkit-font-smoothing: antialiased;
|
2278
2443
|
-moz-osx-font-smoothing: grayscale;
|
2279
2444
|
font-weight: 700;
|
2280
|
-
font-size: 16px;
|
2281
2445
|
font-size: 1rem;
|
2282
2446
|
line-height: 1.5;
|
2283
2447
|
display: block;
|
@@ -2296,7 +2460,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2296
2460
|
}
|
2297
2461
|
@media (min-width: 40.0625em) {
|
2298
2462
|
.govuk-heading-s {
|
2299
|
-
font-size: 16px;
|
2300
2463
|
font-size: 1rem;
|
2301
2464
|
line-height: 1.5;
|
2302
2465
|
}
|
@@ -2318,7 +2481,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2318
2481
|
-webkit-font-smoothing: antialiased;
|
2319
2482
|
-moz-osx-font-smoothing: grayscale;
|
2320
2483
|
font-weight: 400;
|
2321
|
-
font-size: 18px;
|
2322
2484
|
font-size: 1.125rem;
|
2323
2485
|
line-height: 0.9866666667;
|
2324
2486
|
display: block;
|
@@ -2332,7 +2494,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2332
2494
|
}
|
2333
2495
|
@media (min-width: 40.0625em) {
|
2334
2496
|
.govuk-caption-xl {
|
2335
|
-
font-size: 18px;
|
2336
2497
|
font-size: 1.125rem;
|
2337
2498
|
line-height: 0.9866666667;
|
2338
2499
|
}
|
@@ -2349,7 +2510,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2349
2510
|
-webkit-font-smoothing: antialiased;
|
2350
2511
|
-moz-osx-font-smoothing: grayscale;
|
2351
2512
|
font-weight: 400;
|
2352
|
-
font-size: 18px;
|
2353
2513
|
font-size: 1.125rem;
|
2354
2514
|
line-height: 0.9866666667;
|
2355
2515
|
display: block;
|
@@ -2363,7 +2523,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2363
2523
|
}
|
2364
2524
|
@media (min-width: 40.0625em) {
|
2365
2525
|
.govuk-caption-l {
|
2366
|
-
font-size: 18px;
|
2367
2526
|
font-size: 1.125rem;
|
2368
2527
|
line-height: 0.9866666667;
|
2369
2528
|
}
|
@@ -2385,7 +2544,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2385
2544
|
-webkit-font-smoothing: antialiased;
|
2386
2545
|
-moz-osx-font-smoothing: grayscale;
|
2387
2546
|
font-weight: 400;
|
2388
|
-
font-size: 16px;
|
2389
2547
|
font-size: 1rem;
|
2390
2548
|
line-height: 1.5;
|
2391
2549
|
display: block;
|
@@ -2398,7 +2556,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2398
2556
|
}
|
2399
2557
|
@media (min-width: 40.0625em) {
|
2400
2558
|
.govuk-caption-m {
|
2401
|
-
font-size: 16px;
|
2402
2559
|
font-size: 1rem;
|
2403
2560
|
line-height: 1.5;
|
2404
2561
|
}
|
@@ -2416,7 +2573,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2416
2573
|
-webkit-font-smoothing: antialiased;
|
2417
2574
|
-moz-osx-font-smoothing: grayscale;
|
2418
2575
|
font-weight: 400;
|
2419
|
-
font-size: 18px;
|
2420
2576
|
font-size: 1.125rem;
|
2421
2577
|
line-height: 0.9866666667;
|
2422
2578
|
margin-top: 0;
|
@@ -2434,7 +2590,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2434
2590
|
}
|
2435
2591
|
@media (min-width: 40.0625em) {
|
2436
2592
|
.govuk-body-lead, .govuk-body-l {
|
2437
|
-
font-size: 18px;
|
2438
2593
|
font-size: 1.125rem;
|
2439
2594
|
line-height: 0.9866666667;
|
2440
2595
|
}
|
@@ -2457,7 +2612,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2457
2612
|
-webkit-font-smoothing: antialiased;
|
2458
2613
|
-moz-osx-font-smoothing: grayscale;
|
2459
2614
|
font-weight: 400;
|
2460
|
-
font-size: 16px;
|
2461
2615
|
font-size: 1rem;
|
2462
2616
|
line-height: 1.5;
|
2463
2617
|
margin-top: 0;
|
@@ -2475,7 +2629,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2475
2629
|
}
|
2476
2630
|
@media (min-width: 40.0625em) {
|
2477
2631
|
.govuk-body, .govuk-body-m {
|
2478
|
-
font-size: 16px;
|
2479
2632
|
font-size: 1rem;
|
2480
2633
|
line-height: 1.5;
|
2481
2634
|
}
|
@@ -2498,7 +2651,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2498
2651
|
-webkit-font-smoothing: antialiased;
|
2499
2652
|
-moz-osx-font-smoothing: grayscale;
|
2500
2653
|
font-weight: 400;
|
2501
|
-
font-size: 16px;
|
2502
2654
|
font-size: 1rem;
|
2503
2655
|
line-height: 1.14;
|
2504
2656
|
margin-top: 0;
|
@@ -2516,7 +2668,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2516
2668
|
}
|
2517
2669
|
@media (min-width: 40.0625em) {
|
2518
2670
|
.govuk-body-s {
|
2519
|
-
font-size: 16px;
|
2520
2671
|
font-size: 1rem;
|
2521
2672
|
line-height: 1.14;
|
2522
2673
|
}
|
@@ -2539,7 +2690,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2539
2690
|
-webkit-font-smoothing: antialiased;
|
2540
2691
|
-moz-osx-font-smoothing: grayscale;
|
2541
2692
|
font-weight: 400;
|
2542
|
-
font-size: 14px;
|
2543
2693
|
font-size: 0.875rem;
|
2544
2694
|
line-height: 1.4285714286;
|
2545
2695
|
margin-top: 0;
|
@@ -2557,7 +2707,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2557
2707
|
}
|
2558
2708
|
@media (min-width: 40.0625em) {
|
2559
2709
|
.govuk-body-xs {
|
2560
|
-
font-size: 14px;
|
2561
2710
|
font-size: 0.875rem;
|
2562
2711
|
line-height: 1.4285714286;
|
2563
2712
|
}
|
@@ -2617,6 +2766,7 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2617
2766
|
}
|
2618
2767
|
}
|
2619
2768
|
|
2769
|
+
|
2620
2770
|
.govuk-section-break {
|
2621
2771
|
margin: 0;
|
2622
2772
|
border: 0;
|
@@ -2671,13 +2821,58 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2671
2821
|
border-bottom: 1px solid #b1b4b6;
|
2672
2822
|
}
|
2673
2823
|
|
2824
|
+
|
2825
|
+
|
2826
|
+
|
2827
|
+
|
2828
|
+
|
2829
|
+
|
2830
|
+
|
2831
|
+
|
2832
|
+
|
2833
|
+
|
2834
|
+
|
2835
|
+
|
2836
|
+
|
2837
|
+
|
2838
|
+
|
2839
|
+
|
2840
|
+
|
2841
|
+
|
2842
|
+
|
2843
|
+
|
2844
|
+
|
2845
|
+
|
2846
|
+
|
2847
|
+
|
2848
|
+
|
2849
|
+
|
2850
|
+
|
2851
|
+
|
2852
|
+
|
2853
|
+
|
2854
|
+
|
2855
|
+
|
2856
|
+
|
2857
|
+
|
2858
|
+
|
2859
|
+
|
2860
|
+
|
2861
|
+
|
2862
|
+
|
2863
|
+
|
2864
|
+
|
2865
|
+
|
2866
|
+
|
2867
|
+
|
2868
|
+
|
2869
|
+
|
2870
|
+
|
2871
|
+
|
2674
2872
|
.govuk-button-group {
|
2675
2873
|
margin-bottom: 5px;
|
2676
|
-
display: -ms-flexbox;
|
2677
2874
|
display: flex;
|
2678
|
-
-ms-flex-direction: column;
|
2679
2875
|
flex-direction: column;
|
2680
|
-
-ms-flex-align: center;
|
2681
2876
|
align-items: center;
|
2682
2877
|
}
|
2683
2878
|
@media (min-width: 40.0625em) {
|
@@ -2690,7 +2885,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2690
2885
|
-webkit-font-smoothing: antialiased;
|
2691
2886
|
-moz-osx-font-smoothing: grayscale;
|
2692
2887
|
font-weight: 400;
|
2693
|
-
font-size: 16px;
|
2694
2888
|
font-size: 1rem;
|
2695
2889
|
line-height: 1.1875;
|
2696
2890
|
display: inline-block;
|
@@ -2706,7 +2900,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2706
2900
|
}
|
2707
2901
|
@media (min-width: 40.0625em) {
|
2708
2902
|
.govuk-button-group .govuk-link {
|
2709
|
-
font-size: 16px;
|
2710
2903
|
font-size: 1rem;
|
2711
2904
|
line-height: 1.1875;
|
2712
2905
|
}
|
@@ -2723,11 +2916,8 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2723
2916
|
@media (min-width: 40.0625em) {
|
2724
2917
|
.govuk-button-group {
|
2725
2918
|
margin-right: -15px;
|
2726
|
-
-ms-flex-direction: row;
|
2727
2919
|
flex-direction: row;
|
2728
|
-
-ms-flex-wrap: wrap;
|
2729
2920
|
flex-wrap: wrap;
|
2730
|
-
-ms-flex-align: baseline;
|
2731
2921
|
align-items: baseline;
|
2732
2922
|
}
|
2733
2923
|
.govuk-button-group .govuk-button,
|
@@ -2739,10 +2929,54 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2739
2929
|
}
|
2740
2930
|
}
|
2741
2931
|
|
2932
|
+
|
2933
|
+
|
2934
|
+
|
2935
|
+
|
2936
|
+
|
2937
|
+
|
2938
|
+
|
2939
|
+
|
2940
|
+
|
2941
|
+
|
2942
|
+
|
2943
|
+
|
2944
|
+
|
2945
|
+
|
2946
|
+
|
2947
|
+
|
2948
|
+
|
2949
|
+
|
2950
|
+
|
2951
|
+
|
2952
|
+
|
2953
|
+
|
2954
|
+
|
2955
|
+
|
2956
|
+
|
2957
|
+
|
2958
|
+
|
2959
|
+
|
2960
|
+
|
2961
|
+
|
2962
|
+
|
2963
|
+
|
2964
|
+
|
2965
|
+
|
2966
|
+
|
2967
|
+
|
2968
|
+
|
2969
|
+
|
2970
|
+
|
2971
|
+
|
2972
|
+
|
2973
|
+
|
2974
|
+
|
2975
|
+
|
2742
2976
|
.govuk-form-group {
|
2743
2977
|
margin-bottom: 20px;
|
2744
2978
|
}
|
2745
|
-
.govuk-form-group
|
2979
|
+
.govuk-form-group::after {
|
2746
2980
|
content: "";
|
2747
2981
|
display: block;
|
2748
2982
|
clear: both;
|
@@ -2765,11 +2999,55 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2765
2999
|
border: 0;
|
2766
3000
|
}
|
2767
3001
|
|
3002
|
+
|
3003
|
+
|
3004
|
+
|
3005
|
+
|
3006
|
+
|
3007
|
+
|
3008
|
+
|
3009
|
+
|
3010
|
+
|
3011
|
+
|
3012
|
+
|
3013
|
+
|
3014
|
+
|
3015
|
+
|
3016
|
+
|
3017
|
+
|
3018
|
+
|
3019
|
+
|
3020
|
+
|
3021
|
+
|
3022
|
+
|
3023
|
+
|
3024
|
+
|
3025
|
+
|
3026
|
+
|
3027
|
+
|
3028
|
+
|
3029
|
+
|
3030
|
+
|
3031
|
+
|
3032
|
+
|
3033
|
+
|
3034
|
+
|
3035
|
+
|
3036
|
+
|
3037
|
+
|
3038
|
+
|
3039
|
+
|
3040
|
+
|
3041
|
+
|
3042
|
+
|
3043
|
+
|
3044
|
+
|
3045
|
+
|
2768
3046
|
.govuk-grid-row {
|
2769
3047
|
margin-right: -15px;
|
2770
3048
|
margin-left: -15px;
|
2771
3049
|
}
|
2772
|
-
.govuk-grid-row
|
3050
|
+
.govuk-grid-row::after {
|
2773
3051
|
content: "";
|
2774
3052
|
display: block;
|
2775
3053
|
clear: both;
|
@@ -2913,6 +3191,50 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2913
3191
|
}
|
2914
3192
|
}
|
2915
3193
|
|
3194
|
+
|
3195
|
+
|
3196
|
+
|
3197
|
+
|
3198
|
+
|
3199
|
+
|
3200
|
+
|
3201
|
+
|
3202
|
+
|
3203
|
+
|
3204
|
+
|
3205
|
+
|
3206
|
+
|
3207
|
+
|
3208
|
+
|
3209
|
+
|
3210
|
+
|
3211
|
+
|
3212
|
+
|
3213
|
+
|
3214
|
+
|
3215
|
+
|
3216
|
+
|
3217
|
+
|
3218
|
+
|
3219
|
+
|
3220
|
+
|
3221
|
+
|
3222
|
+
|
3223
|
+
|
3224
|
+
|
3225
|
+
|
3226
|
+
|
3227
|
+
|
3228
|
+
|
3229
|
+
|
3230
|
+
|
3231
|
+
|
3232
|
+
|
3233
|
+
|
3234
|
+
|
3235
|
+
|
3236
|
+
|
3237
|
+
|
2916
3238
|
.govuk-main-wrapper {
|
2917
3239
|
display: block;
|
2918
3240
|
padding-top: 20px;
|
@@ -2936,6 +3258,50 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2936
3258
|
}
|
2937
3259
|
}
|
2938
3260
|
|
3261
|
+
|
3262
|
+
|
3263
|
+
|
3264
|
+
|
3265
|
+
|
3266
|
+
|
3267
|
+
|
3268
|
+
|
3269
|
+
|
3270
|
+
|
3271
|
+
|
3272
|
+
|
3273
|
+
|
3274
|
+
|
3275
|
+
|
3276
|
+
|
3277
|
+
|
3278
|
+
|
3279
|
+
|
3280
|
+
|
3281
|
+
|
3282
|
+
|
3283
|
+
|
3284
|
+
|
3285
|
+
|
3286
|
+
|
3287
|
+
|
3288
|
+
|
3289
|
+
|
3290
|
+
|
3291
|
+
|
3292
|
+
|
3293
|
+
|
3294
|
+
|
3295
|
+
|
3296
|
+
|
3297
|
+
|
3298
|
+
|
3299
|
+
|
3300
|
+
|
3301
|
+
|
3302
|
+
|
3303
|
+
|
3304
|
+
|
2939
3305
|
.govuk-template {
|
2940
3306
|
background-color: #f3f2f1;
|
2941
3307
|
-webkit-text-size-adjust: 100%;
|
@@ -2961,6 +3327,50 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2961
3327
|
background-color: #ffffff;
|
2962
3328
|
}
|
2963
3329
|
|
3330
|
+
|
3331
|
+
|
3332
|
+
|
3333
|
+
|
3334
|
+
|
3335
|
+
|
3336
|
+
|
3337
|
+
|
3338
|
+
|
3339
|
+
|
3340
|
+
|
3341
|
+
|
3342
|
+
|
3343
|
+
|
3344
|
+
|
3345
|
+
|
3346
|
+
|
3347
|
+
|
3348
|
+
|
3349
|
+
|
3350
|
+
|
3351
|
+
|
3352
|
+
|
3353
|
+
|
3354
|
+
|
3355
|
+
|
3356
|
+
|
3357
|
+
|
3358
|
+
|
3359
|
+
|
3360
|
+
|
3361
|
+
|
3362
|
+
|
3363
|
+
|
3364
|
+
|
3365
|
+
|
3366
|
+
|
3367
|
+
|
3368
|
+
|
3369
|
+
|
3370
|
+
|
3371
|
+
|
3372
|
+
|
3373
|
+
|
2964
3374
|
.govuk-width-container {
|
2965
3375
|
max-width: 960px;
|
2966
3376
|
margin-right: 15px;
|
@@ -2997,12 +3407,13 @@ trix-editor .attachment__metadata .attachment__size {
|
|
2997
3407
|
}
|
2998
3408
|
}
|
2999
3409
|
|
3410
|
+
|
3411
|
+
|
3000
3412
|
.govuk-button {
|
3001
3413
|
font-family: "Inter";
|
3002
3414
|
-webkit-font-smoothing: antialiased;
|
3003
3415
|
-moz-osx-font-smoothing: grayscale;
|
3004
3416
|
font-weight: 400;
|
3005
|
-
font-size: 16px;
|
3006
3417
|
font-size: 1rem;
|
3007
3418
|
line-height: 1.1875;
|
3008
3419
|
box-sizing: border-box;
|
@@ -3031,7 +3442,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3031
3442
|
}
|
3032
3443
|
@media (min-width: 40.0625em) {
|
3033
3444
|
.govuk-button {
|
3034
|
-
font-size: 16px;
|
3035
3445
|
font-size: 1rem;
|
3036
3446
|
line-height: 1.1875;
|
3037
3447
|
}
|
@@ -3077,7 +3487,7 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3077
3487
|
background-color: #ffdd00;
|
3078
3488
|
box-shadow: 0 2px 0 #0b0c0c;
|
3079
3489
|
}
|
3080
|
-
.govuk-button
|
3490
|
+
.govuk-button::before {
|
3081
3491
|
content: "";
|
3082
3492
|
display: block;
|
3083
3493
|
position: absolute;
|
@@ -3087,23 +3497,17 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3087
3497
|
left: -2px;
|
3088
3498
|
background: transparent;
|
3089
3499
|
}
|
3090
|
-
.govuk-button:active
|
3500
|
+
.govuk-button:active::before {
|
3091
3501
|
top: -4px;
|
3092
3502
|
}
|
3093
3503
|
|
3094
|
-
.govuk-button--disabled,
|
3095
|
-
.govuk-button[disabled=disabled],
|
3096
3504
|
.govuk-button[disabled] {
|
3097
3505
|
opacity: 0.5;
|
3098
3506
|
}
|
3099
|
-
.govuk-button--disabled:hover,
|
3100
|
-
.govuk-button[disabled=disabled]:hover,
|
3101
3507
|
.govuk-button[disabled]:hover {
|
3102
3508
|
background-color: #00703c;
|
3103
3509
|
cursor: not-allowed;
|
3104
3510
|
}
|
3105
|
-
.govuk-button--disabled:active,
|
3106
|
-
.govuk-button[disabled=disabled]:active,
|
3107
3511
|
.govuk-button[disabled]:active {
|
3108
3512
|
top: 0;
|
3109
3513
|
box-shadow: 0 2px 0 #002d18;
|
@@ -3153,18 +3557,14 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3153
3557
|
|
3154
3558
|
.govuk-button--start {
|
3155
3559
|
font-weight: 700;
|
3156
|
-
font-size: 18px;
|
3157
3560
|
font-size: 1.125rem;
|
3158
3561
|
line-height: 1;
|
3159
|
-
display: -ms-inline-flexbox;
|
3160
3562
|
display: inline-flex;
|
3161
3563
|
min-height: auto;
|
3162
|
-
-ms-flex-pack: center;
|
3163
3564
|
justify-content: center;
|
3164
3565
|
}
|
3165
3566
|
@media (min-width: 40.0625em) {
|
3166
3567
|
.govuk-button--start {
|
3167
|
-
font-size: 18px;
|
3168
3568
|
font-size: 1.125rem;
|
3169
3569
|
line-height: 1;
|
3170
3570
|
}
|
@@ -3179,9 +3579,7 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3179
3579
|
.govuk-button__start-icon {
|
3180
3580
|
margin-left: 5px;
|
3181
3581
|
vertical-align: middle;
|
3182
|
-
-ms-flex-negative: 0;
|
3183
3582
|
flex-shrink: 0;
|
3184
|
-
-ms-flex-item-align: center;
|
3185
3583
|
align-self: center;
|
3186
3584
|
forced-color-adjust: auto;
|
3187
3585
|
}
|
@@ -3191,12 +3589,12 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3191
3589
|
}
|
3192
3590
|
}
|
3193
3591
|
|
3592
|
+
|
3194
3593
|
.govuk-error-message {
|
3195
3594
|
font-family: "Inter";
|
3196
3595
|
-webkit-font-smoothing: antialiased;
|
3197
3596
|
-moz-osx-font-smoothing: grayscale;
|
3198
3597
|
font-weight: 700;
|
3199
|
-
font-size: 16px;
|
3200
3598
|
font-size: 1rem;
|
3201
3599
|
line-height: 1.5;
|
3202
3600
|
display: block;
|
@@ -3212,7 +3610,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3212
3610
|
}
|
3213
3611
|
@media (min-width: 40.0625em) {
|
3214
3612
|
.govuk-error-message {
|
3215
|
-
font-size: 16px;
|
3216
3613
|
font-size: 1rem;
|
3217
3614
|
line-height: 1.5;
|
3218
3615
|
}
|
@@ -3224,13 +3621,14 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3224
3621
|
}
|
3225
3622
|
}
|
3226
3623
|
|
3624
|
+
|
3227
3625
|
.govuk-fieldset {
|
3228
3626
|
min-width: 0;
|
3229
3627
|
margin: 0;
|
3230
3628
|
padding: 0;
|
3231
3629
|
border: 0;
|
3232
3630
|
}
|
3233
|
-
.govuk-fieldset
|
3631
|
+
.govuk-fieldset::after {
|
3234
3632
|
content: "";
|
3235
3633
|
display: block;
|
3236
3634
|
clear: both;
|
@@ -3247,7 +3645,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3247
3645
|
-webkit-font-smoothing: antialiased;
|
3248
3646
|
-moz-osx-font-smoothing: grayscale;
|
3249
3647
|
font-weight: 400;
|
3250
|
-
font-size: 16px;
|
3251
3648
|
font-size: 1rem;
|
3252
3649
|
line-height: 1.5;
|
3253
3650
|
color: var(--site-text-color);
|
@@ -3265,7 +3662,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3265
3662
|
}
|
3266
3663
|
@media (min-width: 40.0625em) {
|
3267
3664
|
.govuk-fieldset__legend {
|
3268
|
-
font-size: 16px;
|
3269
3665
|
font-size: 1rem;
|
3270
3666
|
line-height: 1.5;
|
3271
3667
|
}
|
@@ -3282,24 +3678,19 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3282
3678
|
}
|
3283
3679
|
}
|
3284
3680
|
|
3285
|
-
.govuk-fieldset__legend--xl
|
3286
|
-
|
3287
|
-
|
3288
|
-
-moz-osx-font-smoothing: grayscale;
|
3681
|
+
.govuk-fieldset__legend--xl,
|
3682
|
+
.govuk-fieldset__legend--l,
|
3683
|
+
.govuk-fieldset__legend--m {
|
3289
3684
|
font-weight: 700;
|
3290
|
-
font-size: 32px;
|
3291
|
-
font-size: 2rem;
|
3292
|
-
line-height: 0.545;
|
3293
3685
|
margin-bottom: 15px;
|
3294
3686
|
}
|
3295
|
-
|
3296
|
-
|
3297
|
-
|
3298
|
-
|
3687
|
+
|
3688
|
+
.govuk-fieldset__legend--xl {
|
3689
|
+
font-size: 2rem;
|
3690
|
+
line-height: 0.545;
|
3299
3691
|
}
|
3300
3692
|
@media (min-width: 40.0625em) {
|
3301
3693
|
.govuk-fieldset__legend--xl {
|
3302
|
-
font-size: 32px;
|
3303
3694
|
font-size: 2rem;
|
3304
3695
|
line-height: 0.545;
|
3305
3696
|
}
|
@@ -3312,23 +3703,11 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3312
3703
|
}
|
3313
3704
|
|
3314
3705
|
.govuk-fieldset__legend--l {
|
3315
|
-
font-family: "Inter";
|
3316
|
-
-webkit-font-smoothing: antialiased;
|
3317
|
-
-moz-osx-font-smoothing: grayscale;
|
3318
|
-
font-weight: 700;
|
3319
|
-
font-size: 24px;
|
3320
3706
|
font-size: 1.5rem;
|
3321
3707
|
line-height: 0.6933333333;
|
3322
|
-
margin-bottom: 15px;
|
3323
|
-
}
|
3324
|
-
@media print {
|
3325
|
-
.govuk-fieldset__legend--l {
|
3326
|
-
font-family: sans-serif;
|
3327
|
-
}
|
3328
3708
|
}
|
3329
3709
|
@media (min-width: 40.0625em) {
|
3330
3710
|
.govuk-fieldset__legend--l {
|
3331
|
-
font-size: 24px;
|
3332
3711
|
font-size: 1.5rem;
|
3333
3712
|
line-height: 0.6933333333;
|
3334
3713
|
}
|
@@ -3341,23 +3720,11 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3341
3720
|
}
|
3342
3721
|
|
3343
3722
|
.govuk-fieldset__legend--m {
|
3344
|
-
font-family: "Inter";
|
3345
|
-
-webkit-font-smoothing: antialiased;
|
3346
|
-
-moz-osx-font-smoothing: grayscale;
|
3347
|
-
font-weight: 700;
|
3348
|
-
font-size: 18px;
|
3349
3723
|
font-size: 1.125rem;
|
3350
3724
|
line-height: 0.9866666667;
|
3351
|
-
margin-bottom: 15px;
|
3352
|
-
}
|
3353
|
-
@media print {
|
3354
|
-
.govuk-fieldset__legend--m {
|
3355
|
-
font-family: sans-serif;
|
3356
|
-
}
|
3357
3725
|
}
|
3358
3726
|
@media (min-width: 40.0625em) {
|
3359
3727
|
.govuk-fieldset__legend--m {
|
3360
|
-
font-size: 18px;
|
3361
3728
|
font-size: 1.125rem;
|
3362
3729
|
line-height: 0.9866666667;
|
3363
3730
|
}
|
@@ -3369,32 +3736,8 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3369
3736
|
}
|
3370
3737
|
}
|
3371
3738
|
|
3372
|
-
.govuk-fieldset__legend--s {
|
3373
|
-
font-
|
3374
|
-
-webkit-font-smoothing: antialiased;
|
3375
|
-
-moz-osx-font-smoothing: grayscale;
|
3376
|
-
font-weight: 700;
|
3377
|
-
font-size: 16px;
|
3378
|
-
font-size: 1rem;
|
3379
|
-
line-height: 1.5;
|
3380
|
-
}
|
3381
|
-
@media print {
|
3382
|
-
.govuk-fieldset__legend--s {
|
3383
|
-
font-family: sans-serif;
|
3384
|
-
}
|
3385
|
-
}
|
3386
|
-
@media (min-width: 40.0625em) {
|
3387
|
-
.govuk-fieldset__legend--s {
|
3388
|
-
font-size: 16px;
|
3389
|
-
font-size: 1rem;
|
3390
|
-
line-height: 1.5;
|
3391
|
-
}
|
3392
|
-
}
|
3393
|
-
@media print {
|
3394
|
-
.govuk-fieldset__legend--s {
|
3395
|
-
font-size: 16px;
|
3396
|
-
line-height: 1.5;
|
3397
|
-
}
|
3739
|
+
.govuk-fieldset__legend--s {
|
3740
|
+
font-weight: 700;
|
3398
3741
|
}
|
3399
3742
|
|
3400
3743
|
.govuk-fieldset__heading {
|
@@ -3403,12 +3746,12 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3403
3746
|
font-weight: inherit;
|
3404
3747
|
}
|
3405
3748
|
|
3749
|
+
|
3406
3750
|
.govuk-hint {
|
3407
3751
|
font-family: "Inter";
|
3408
3752
|
-webkit-font-smoothing: antialiased;
|
3409
3753
|
-moz-osx-font-smoothing: grayscale;
|
3410
3754
|
font-weight: 400;
|
3411
|
-
font-size: 16px;
|
3412
3755
|
font-size: 1rem;
|
3413
3756
|
line-height: 1.5;
|
3414
3757
|
margin-bottom: 15px;
|
@@ -3421,7 +3764,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3421
3764
|
}
|
3422
3765
|
@media (min-width: 40.0625em) {
|
3423
3766
|
.govuk-hint {
|
3424
|
-
font-size: 16px;
|
3425
3767
|
font-size: 1rem;
|
3426
3768
|
line-height: 1.5;
|
3427
3769
|
}
|
@@ -3445,12 +3787,12 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3445
3787
|
margin-top: -5px;
|
3446
3788
|
}
|
3447
3789
|
|
3790
|
+
|
3448
3791
|
.govuk-label {
|
3449
3792
|
font-family: "Inter";
|
3450
3793
|
-webkit-font-smoothing: antialiased;
|
3451
3794
|
-moz-osx-font-smoothing: grayscale;
|
3452
3795
|
font-weight: 400;
|
3453
|
-
font-size: 16px;
|
3454
3796
|
font-size: 1rem;
|
3455
3797
|
line-height: 1.5;
|
3456
3798
|
color: var(--site-text-color);
|
@@ -3464,7 +3806,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3464
3806
|
}
|
3465
3807
|
@media (min-width: 40.0625em) {
|
3466
3808
|
.govuk-label {
|
3467
|
-
font-size: 16px;
|
3468
3809
|
font-size: 1rem;
|
3469
3810
|
line-height: 1.5;
|
3470
3811
|
}
|
@@ -3481,24 +3822,19 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3481
3822
|
}
|
3482
3823
|
}
|
3483
3824
|
|
3484
|
-
.govuk-label--xl
|
3485
|
-
|
3486
|
-
|
3487
|
-
-moz-osx-font-smoothing: grayscale;
|
3825
|
+
.govuk-label--xl,
|
3826
|
+
.govuk-label--l,
|
3827
|
+
.govuk-label--m {
|
3488
3828
|
font-weight: 700;
|
3489
|
-
font-size: 32px;
|
3490
|
-
font-size: 2rem;
|
3491
|
-
line-height: 0.545;
|
3492
3829
|
margin-bottom: 15px;
|
3493
3830
|
}
|
3494
|
-
|
3495
|
-
|
3496
|
-
|
3497
|
-
|
3831
|
+
|
3832
|
+
.govuk-label--xl {
|
3833
|
+
font-size: 2rem;
|
3834
|
+
line-height: 0.545;
|
3498
3835
|
}
|
3499
3836
|
@media (min-width: 40.0625em) {
|
3500
3837
|
.govuk-label--xl {
|
3501
|
-
font-size: 32px;
|
3502
3838
|
font-size: 2rem;
|
3503
3839
|
line-height: 0.545;
|
3504
3840
|
}
|
@@ -3511,23 +3847,11 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3511
3847
|
}
|
3512
3848
|
|
3513
3849
|
.govuk-label--l {
|
3514
|
-
font-family: "Inter";
|
3515
|
-
-webkit-font-smoothing: antialiased;
|
3516
|
-
-moz-osx-font-smoothing: grayscale;
|
3517
|
-
font-weight: 700;
|
3518
|
-
font-size: 24px;
|
3519
3850
|
font-size: 1.5rem;
|
3520
3851
|
line-height: 0.6933333333;
|
3521
|
-
margin-bottom: 15px;
|
3522
|
-
}
|
3523
|
-
@media print {
|
3524
|
-
.govuk-label--l {
|
3525
|
-
font-family: sans-serif;
|
3526
|
-
}
|
3527
3852
|
}
|
3528
3853
|
@media (min-width: 40.0625em) {
|
3529
3854
|
.govuk-label--l {
|
3530
|
-
font-size: 24px;
|
3531
3855
|
font-size: 1.5rem;
|
3532
3856
|
line-height: 0.6933333333;
|
3533
3857
|
}
|
@@ -3540,23 +3864,11 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3540
3864
|
}
|
3541
3865
|
|
3542
3866
|
.govuk-label--m {
|
3543
|
-
font-family: "Inter";
|
3544
|
-
-webkit-font-smoothing: antialiased;
|
3545
|
-
-moz-osx-font-smoothing: grayscale;
|
3546
|
-
font-weight: 700;
|
3547
|
-
font-size: 18px;
|
3548
3867
|
font-size: 1.125rem;
|
3549
3868
|
line-height: 0.9866666667;
|
3550
|
-
margin-bottom: 10px;
|
3551
|
-
}
|
3552
|
-
@media print {
|
3553
|
-
.govuk-label--m {
|
3554
|
-
font-family: sans-serif;
|
3555
|
-
}
|
3556
3869
|
}
|
3557
3870
|
@media (min-width: 40.0625em) {
|
3558
3871
|
.govuk-label--m {
|
3559
|
-
font-size: 18px;
|
3560
3872
|
font-size: 1.125rem;
|
3561
3873
|
line-height: 0.9866666667;
|
3562
3874
|
}
|
@@ -3569,45 +3881,15 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3569
3881
|
}
|
3570
3882
|
|
3571
3883
|
.govuk-label--s {
|
3572
|
-
font-family: "Inter";
|
3573
|
-
-webkit-font-smoothing: antialiased;
|
3574
|
-
-moz-osx-font-smoothing: grayscale;
|
3575
3884
|
font-weight: 700;
|
3576
|
-
font-size: 16px;
|
3577
|
-
font-size: 1rem;
|
3578
|
-
line-height: 1.5;
|
3579
|
-
}
|
3580
|
-
@media print {
|
3581
|
-
.govuk-label--s {
|
3582
|
-
font-family: sans-serif;
|
3583
|
-
}
|
3584
|
-
}
|
3585
|
-
@media (min-width: 40.0625em) {
|
3586
|
-
.govuk-label--s {
|
3587
|
-
font-size: 16px;
|
3588
|
-
font-size: 1rem;
|
3589
|
-
line-height: 1.5;
|
3590
|
-
}
|
3591
|
-
}
|
3592
|
-
@media print {
|
3593
|
-
.govuk-label--s {
|
3594
|
-
font-size: 16px;
|
3595
|
-
line-height: 1.5;
|
3596
|
-
}
|
3597
3885
|
}
|
3598
3886
|
|
3599
3887
|
.govuk-label-wrapper {
|
3600
3888
|
margin: 0;
|
3601
3889
|
}
|
3602
3890
|
|
3891
|
+
|
3603
3892
|
.govuk-checkboxes__item {
|
3604
|
-
font-family: "Inter";
|
3605
|
-
-webkit-font-smoothing: antialiased;
|
3606
|
-
-moz-osx-font-smoothing: grayscale;
|
3607
|
-
font-weight: 400;
|
3608
|
-
font-size: 16px;
|
3609
|
-
font-size: 1rem;
|
3610
|
-
line-height: 1.5;
|
3611
3893
|
display: block;
|
3612
3894
|
position: relative;
|
3613
3895
|
min-height: 40px;
|
@@ -3615,24 +3897,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3615
3897
|
padding-left: 40px;
|
3616
3898
|
clear: left;
|
3617
3899
|
}
|
3618
|
-
@media print {
|
3619
|
-
.govuk-checkboxes__item {
|
3620
|
-
font-family: sans-serif;
|
3621
|
-
}
|
3622
|
-
}
|
3623
|
-
@media (min-width: 40.0625em) {
|
3624
|
-
.govuk-checkboxes__item {
|
3625
|
-
font-size: 16px;
|
3626
|
-
font-size: 1rem;
|
3627
|
-
line-height: 1.5;
|
3628
|
-
}
|
3629
|
-
}
|
3630
|
-
@media print {
|
3631
|
-
.govuk-checkboxes__item {
|
3632
|
-
font-size: 16px;
|
3633
|
-
line-height: 1.5;
|
3634
|
-
}
|
3635
|
-
}
|
3636
3900
|
|
3637
3901
|
.govuk-checkboxes__item:last-child,
|
3638
3902
|
.govuk-checkboxes__item:last-of-type {
|
@@ -3640,7 +3904,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3640
3904
|
}
|
3641
3905
|
|
3642
3906
|
.govuk-checkboxes__input {
|
3643
|
-
cursor: pointer;
|
3644
3907
|
position: absolute;
|
3645
3908
|
z-index: 1;
|
3646
3909
|
top: -2px;
|
@@ -3649,6 +3912,7 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3649
3912
|
height: 44px;
|
3650
3913
|
margin: 0;
|
3651
3914
|
opacity: 0;
|
3915
|
+
cursor: pointer;
|
3652
3916
|
}
|
3653
3917
|
|
3654
3918
|
.govuk-checkboxes__label {
|
@@ -3656,11 +3920,10 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3656
3920
|
margin-bottom: 0;
|
3657
3921
|
padding: 8px 15px 5px;
|
3658
3922
|
cursor: pointer;
|
3659
|
-
-ms-touch-action: manipulation;
|
3660
3923
|
touch-action: manipulation;
|
3661
3924
|
}
|
3662
3925
|
|
3663
|
-
.govuk-checkboxes__label
|
3926
|
+
.govuk-checkboxes__label::before {
|
3664
3927
|
content: "";
|
3665
3928
|
box-sizing: border-box;
|
3666
3929
|
position: absolute;
|
@@ -3672,7 +3935,7 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3672
3935
|
background: transparent;
|
3673
3936
|
}
|
3674
3937
|
|
3675
|
-
.govuk-checkboxes__label
|
3938
|
+
.govuk-checkboxes__label::after {
|
3676
3939
|
content: "";
|
3677
3940
|
box-sizing: border-box;
|
3678
3941
|
position: absolute;
|
@@ -3680,8 +3943,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3680
3943
|
left: 9px;
|
3681
3944
|
width: 23px;
|
3682
3945
|
height: 12px;
|
3683
|
-
-webkit-transform: rotate(-45deg);
|
3684
|
-
-ms-transform: rotate(-45deg);
|
3685
3946
|
transform: rotate(-45deg);
|
3686
3947
|
border: solid;
|
3687
3948
|
border-width: 0 0 5px 5px;
|
@@ -3696,19 +3957,19 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3696
3957
|
padding-left: 15px;
|
3697
3958
|
}
|
3698
3959
|
|
3699
|
-
.govuk-checkboxes__input:focus + .govuk-checkboxes__label
|
3960
|
+
.govuk-checkboxes__input:focus + .govuk-checkboxes__label::before {
|
3700
3961
|
border-width: 4px;
|
3701
3962
|
outline: 3px solid transparent;
|
3702
3963
|
outline-offset: 1px;
|
3703
3964
|
box-shadow: 0 0 0 3px #ffdd00;
|
3704
3965
|
}
|
3705
3966
|
@media screen and (forced-colors: active), (-ms-high-contrast: active) {
|
3706
|
-
.govuk-checkboxes__input:focus + .govuk-checkboxes__label
|
3967
|
+
.govuk-checkboxes__input:focus + .govuk-checkboxes__label::before {
|
3707
3968
|
outline-color: Highlight;
|
3708
3969
|
}
|
3709
3970
|
}
|
3710
3971
|
|
3711
|
-
.govuk-checkboxes__input:checked + .govuk-checkboxes__label
|
3972
|
+
.govuk-checkboxes__input:checked + .govuk-checkboxes__label::after {
|
3712
3973
|
opacity: 1;
|
3713
3974
|
}
|
3714
3975
|
|
@@ -3727,7 +3988,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3727
3988
|
-webkit-font-smoothing: antialiased;
|
3728
3989
|
-moz-osx-font-smoothing: grayscale;
|
3729
3990
|
font-weight: 400;
|
3730
|
-
font-size: 16px;
|
3731
3991
|
font-size: 1rem;
|
3732
3992
|
line-height: 1.5;
|
3733
3993
|
color: var(--site-text-color);
|
@@ -3742,7 +4002,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3742
4002
|
}
|
3743
4003
|
@media (min-width: 40.0625em) {
|
3744
4004
|
.govuk-checkboxes__divider {
|
3745
|
-
font-size: 16px;
|
3746
4005
|
font-size: 1rem;
|
3747
4006
|
line-height: 1.5;
|
3748
4007
|
}
|
@@ -3770,7 +4029,7 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3770
4029
|
margin-bottom: 20px;
|
3771
4030
|
}
|
3772
4031
|
}
|
3773
|
-
.
|
4032
|
+
.govuk-frontend-supported .govuk-checkboxes__conditional--hidden {
|
3774
4033
|
display: none;
|
3775
4034
|
}
|
3776
4035
|
.govuk-checkboxes__conditional > :last-child {
|
@@ -3783,7 +4042,7 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3783
4042
|
padding-left: 34px;
|
3784
4043
|
float: left;
|
3785
4044
|
}
|
3786
|
-
.govuk-checkboxes--small .govuk-checkboxes__item
|
4045
|
+
.govuk-checkboxes--small .govuk-checkboxes__item::after {
|
3787
4046
|
content: "";
|
3788
4047
|
display: block;
|
3789
4048
|
clear: both;
|
@@ -3801,12 +4060,12 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3801
4060
|
padding: 11px 15px 10px 1px;
|
3802
4061
|
}
|
3803
4062
|
}
|
3804
|
-
.govuk-checkboxes--small .govuk-checkboxes__label
|
4063
|
+
.govuk-checkboxes--small .govuk-checkboxes__label::before {
|
3805
4064
|
top: 8px;
|
3806
4065
|
width: 24px;
|
3807
4066
|
height: 24px;
|
3808
4067
|
}
|
3809
|
-
.govuk-checkboxes--small .govuk-checkboxes__label
|
4068
|
+
.govuk-checkboxes--small .govuk-checkboxes__label::after {
|
3810
4069
|
top: 15px;
|
3811
4070
|
left: 6px;
|
3812
4071
|
width: 12px;
|
@@ -3822,32 +4081,42 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3822
4081
|
padding-left: 20px;
|
3823
4082
|
clear: both;
|
3824
4083
|
}
|
3825
|
-
.govuk-checkboxes--small .govuk-checkboxes__item:hover .govuk-checkboxes__input:not(:disabled) + .govuk-checkboxes__label
|
4084
|
+
.govuk-checkboxes--small .govuk-checkboxes__item:hover .govuk-checkboxes__input:not(:disabled) + .govuk-checkboxes__label::before {
|
4085
|
+
outline: 3px dashed transparent;
|
4086
|
+
outline-offset: 1px;
|
3826
4087
|
box-shadow: 0 0 0 10px #b1b4b6;
|
3827
4088
|
}
|
3828
|
-
.govuk-checkboxes--small .govuk-checkboxes__item:hover .govuk-checkboxes__input:focus + .govuk-checkboxes__label
|
4089
|
+
.govuk-checkboxes--small .govuk-checkboxes__item:hover .govuk-checkboxes__input:focus + .govuk-checkboxes__label::before {
|
3829
4090
|
box-shadow: 0 0 0 3px #ffdd00, 0 0 0 10px #b1b4b6;
|
3830
4091
|
}
|
4092
|
+
@media screen and (forced-colors: active), (-ms-high-contrast: active) {
|
4093
|
+
.govuk-checkboxes--small .govuk-checkboxes__item:hover .govuk-checkboxes__input:focus + .govuk-checkboxes__label::before {
|
4094
|
+
outline-color: Highlight;
|
4095
|
+
}
|
4096
|
+
}
|
3831
4097
|
@media (hover: none), (pointer: coarse) {
|
3832
|
-
.govuk-checkboxes--small .govuk-checkboxes__item:hover .govuk-checkboxes__input:not(:disabled) + .govuk-checkboxes__label
|
4098
|
+
.govuk-checkboxes--small .govuk-checkboxes__item:hover .govuk-checkboxes__input:not(:disabled) + .govuk-checkboxes__label::before {
|
3833
4099
|
box-shadow: initial;
|
3834
4100
|
}
|
3835
|
-
.govuk-checkboxes--small .govuk-checkboxes__item:hover .govuk-checkboxes__input:focus + .govuk-checkboxes__label
|
4101
|
+
.govuk-checkboxes--small .govuk-checkboxes__item:hover .govuk-checkboxes__input:focus + .govuk-checkboxes__label::before {
|
3836
4102
|
box-shadow: 0 0 0 3px #ffdd00;
|
3837
4103
|
}
|
3838
4104
|
}
|
3839
4105
|
|
4106
|
+
|
4107
|
+
|
4108
|
+
|
4109
|
+
|
4110
|
+
|
3840
4111
|
.govuk-input {
|
3841
4112
|
font-family: "Inter";
|
3842
4113
|
-webkit-font-smoothing: antialiased;
|
3843
4114
|
-moz-osx-font-smoothing: grayscale;
|
3844
4115
|
font-weight: 400;
|
3845
|
-
font-size: 16px;
|
3846
4116
|
font-size: 1rem;
|
3847
4117
|
line-height: 1.5;
|
3848
4118
|
box-sizing: border-box;
|
3849
4119
|
width: 100%;
|
3850
|
-
height: 40px;
|
3851
4120
|
height: 2.5rem;
|
3852
4121
|
margin-top: 0;
|
3853
4122
|
padding: 5px;
|
@@ -3863,7 +4132,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3863
4132
|
}
|
3864
4133
|
@media (min-width: 40.0625em) {
|
3865
4134
|
.govuk-input {
|
3866
|
-
font-size: 16px;
|
3867
4135
|
font-size: 1rem;
|
3868
4136
|
line-height: 1.5;
|
3869
4137
|
}
|
@@ -3907,7 +4175,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3907
4175
|
font-family: "Inter";
|
3908
4176
|
-webkit-font-smoothing: antialiased;
|
3909
4177
|
-moz-osx-font-smoothing: grayscale;
|
3910
|
-
-webkit-font-feature-settings: "tnum" 1;
|
3911
4178
|
font-feature-settings: "tnum" 1;
|
3912
4179
|
font-weight: 400;
|
3913
4180
|
letter-spacing: 0.05em;
|
@@ -3919,7 +4186,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3919
4186
|
}
|
3920
4187
|
@supports (font-variant-numeric: tabular-nums) {
|
3921
4188
|
.govuk-input--extra-letter-spacing {
|
3922
|
-
-webkit-font-feature-settings: normal;
|
3923
4189
|
font-feature-settings: normal;
|
3924
4190
|
font-variant-numeric: tabular-nums;
|
3925
4191
|
}
|
@@ -3954,11 +4220,9 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3954
4220
|
}
|
3955
4221
|
|
3956
4222
|
.govuk-input__wrapper {
|
3957
|
-
display: -ms-flexbox;
|
3958
4223
|
display: flex;
|
3959
4224
|
}
|
3960
4225
|
.govuk-input__wrapper .govuk-input {
|
3961
|
-
-ms-flex: 0 1 auto;
|
3962
4226
|
flex: 0 1 auto;
|
3963
4227
|
}
|
3964
4228
|
.govuk-input__wrapper .govuk-input:focus {
|
@@ -3979,14 +4243,11 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3979
4243
|
-webkit-font-smoothing: antialiased;
|
3980
4244
|
-moz-osx-font-smoothing: grayscale;
|
3981
4245
|
font-weight: 400;
|
3982
|
-
font-size: 16px;
|
3983
4246
|
font-size: 1rem;
|
3984
4247
|
line-height: 1.5;
|
3985
4248
|
box-sizing: border-box;
|
3986
4249
|
display: inline-block;
|
3987
|
-
min-width: 40px;
|
3988
4250
|
min-width: 2.5rem;
|
3989
|
-
height: 40px;
|
3990
4251
|
height: 2.5rem;
|
3991
4252
|
padding: 5px;
|
3992
4253
|
border: 2px solid var(--site-text-color);
|
@@ -3994,7 +4255,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
3994
4255
|
text-align: center;
|
3995
4256
|
white-space: nowrap;
|
3996
4257
|
cursor: default;
|
3997
|
-
-ms-flex: 0 0 auto;
|
3998
4258
|
flex: 0 0 auto;
|
3999
4259
|
}
|
4000
4260
|
@media print {
|
@@ -4006,7 +4266,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
4006
4266
|
@media (min-width: 40.0625em) {
|
4007
4267
|
.govuk-input__prefix,
|
4008
4268
|
.govuk-input__suffix {
|
4009
|
-
font-size: 16px;
|
4010
4269
|
font-size: 1rem;
|
4011
4270
|
line-height: 1.5;
|
4012
4271
|
}
|
@@ -4055,10 +4314,13 @@ trix-editor .attachment__metadata .attachment__size {
|
|
4055
4314
|
}
|
4056
4315
|
}
|
4057
4316
|
|
4317
|
+
|
4318
|
+
|
4319
|
+
|
4058
4320
|
.govuk-date-input {
|
4059
4321
|
font-size: 0;
|
4060
4322
|
}
|
4061
|
-
.govuk-date-input
|
4323
|
+
.govuk-date-input::after {
|
4062
4324
|
content: "";
|
4063
4325
|
display: block;
|
4064
4326
|
clear: both;
|
@@ -4078,12 +4340,38 @@ trix-editor .attachment__metadata .attachment__size {
|
|
4078
4340
|
margin-bottom: 0;
|
4079
4341
|
}
|
4080
4342
|
|
4343
|
+
|
4344
|
+
|
4345
|
+
|
4081
4346
|
.govuk-error-summary {
|
4347
|
+
font-family: "Inter";
|
4348
|
+
-webkit-font-smoothing: antialiased;
|
4349
|
+
-moz-osx-font-smoothing: grayscale;
|
4350
|
+
font-weight: 400;
|
4351
|
+
font-size: 1rem;
|
4352
|
+
line-height: 1.5;
|
4082
4353
|
color: var(--site-text-color);
|
4083
4354
|
padding: 15px;
|
4084
4355
|
margin-bottom: 30px;
|
4085
4356
|
border: 5px solid #d4351c;
|
4086
4357
|
}
|
4358
|
+
@media print {
|
4359
|
+
.govuk-error-summary {
|
4360
|
+
font-family: sans-serif;
|
4361
|
+
}
|
4362
|
+
}
|
4363
|
+
@media (min-width: 40.0625em) {
|
4364
|
+
.govuk-error-summary {
|
4365
|
+
font-size: 1rem;
|
4366
|
+
line-height: 1.5;
|
4367
|
+
}
|
4368
|
+
}
|
4369
|
+
@media print {
|
4370
|
+
.govuk-error-summary {
|
4371
|
+
font-size: 16px;
|
4372
|
+
line-height: 1.5;
|
4373
|
+
}
|
4374
|
+
}
|
4087
4375
|
@media print {
|
4088
4376
|
.govuk-error-summary {
|
4089
4377
|
color: #000000;
|
@@ -4104,24 +4392,14 @@ trix-editor .attachment__metadata .attachment__size {
|
|
4104
4392
|
}
|
4105
4393
|
|
4106
4394
|
.govuk-error-summary__title {
|
4107
|
-
font-family: "Inter";
|
4108
|
-
-webkit-font-smoothing: antialiased;
|
4109
|
-
-moz-osx-font-smoothing: grayscale;
|
4110
|
-
font-weight: 700;
|
4111
|
-
font-size: 18px;
|
4112
4395
|
font-size: 1.125rem;
|
4113
4396
|
line-height: 0.9866666667;
|
4397
|
+
font-weight: 700;
|
4114
4398
|
margin-top: 0;
|
4115
4399
|
margin-bottom: 15px;
|
4116
4400
|
}
|
4117
|
-
@media print {
|
4118
|
-
.govuk-error-summary__title {
|
4119
|
-
font-family: sans-serif;
|
4120
|
-
}
|
4121
|
-
}
|
4122
4401
|
@media (min-width: 40.0625em) {
|
4123
4402
|
.govuk-error-summary__title {
|
4124
|
-
font-size: 18px;
|
4125
4403
|
font-size: 1.125rem;
|
4126
4404
|
line-height: 0.9866666667;
|
4127
4405
|
}
|
@@ -4138,33 +4416,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
4138
4416
|
}
|
4139
4417
|
}
|
4140
4418
|
|
4141
|
-
.govuk-error-summary__body {
|
4142
|
-
font-family: "Inter";
|
4143
|
-
-webkit-font-smoothing: antialiased;
|
4144
|
-
-moz-osx-font-smoothing: grayscale;
|
4145
|
-
font-weight: 400;
|
4146
|
-
font-size: 16px;
|
4147
|
-
font-size: 1rem;
|
4148
|
-
line-height: 1.5;
|
4149
|
-
}
|
4150
|
-
@media print {
|
4151
|
-
.govuk-error-summary__body {
|
4152
|
-
font-family: sans-serif;
|
4153
|
-
}
|
4154
|
-
}
|
4155
|
-
@media (min-width: 40.0625em) {
|
4156
|
-
.govuk-error-summary__body {
|
4157
|
-
font-size: 16px;
|
4158
|
-
font-size: 1rem;
|
4159
|
-
line-height: 1.5;
|
4160
|
-
}
|
4161
|
-
}
|
4162
|
-
@media print {
|
4163
|
-
.govuk-error-summary__body {
|
4164
|
-
font-size: 16px;
|
4165
|
-
line-height: 1.5;
|
4166
|
-
}
|
4167
|
-
}
|
4168
4419
|
.govuk-error-summary__body p {
|
4169
4420
|
margin-top: 0;
|
4170
4421
|
margin-bottom: 15px;
|
@@ -4186,12 +4437,21 @@ trix-editor .attachment__metadata .attachment__size {
|
|
4186
4437
|
-webkit-font-smoothing: antialiased;
|
4187
4438
|
-moz-osx-font-smoothing: grayscale;
|
4188
4439
|
text-decoration: underline;
|
4440
|
+
text-decoration-thickness: max(1px, .0625rem);
|
4441
|
+
text-underline-offset: 0.1578em;
|
4189
4442
|
}
|
4190
4443
|
@media print {
|
4191
4444
|
.govuk-error-summary__list a {
|
4192
4445
|
font-family: sans-serif;
|
4193
4446
|
}
|
4194
4447
|
}
|
4448
|
+
.govuk-error-summary__list a:hover {
|
4449
|
+
text-decoration-thickness: max(3px, .1875rem, .12em);
|
4450
|
+
-webkit-text-decoration-skip-ink: none;
|
4451
|
+
text-decoration-skip-ink: none;
|
4452
|
+
-webkit-text-decoration-skip: none;
|
4453
|
+
text-decoration-skip: none;
|
4454
|
+
}
|
4195
4455
|
.govuk-error-summary__list a:focus {
|
4196
4456
|
outline: 3px solid transparent;
|
4197
4457
|
color: #0b0c0c;
|
@@ -4214,12 +4474,16 @@ trix-editor .attachment__metadata .attachment__size {
|
|
4214
4474
|
color: #0b0c0c;
|
4215
4475
|
}
|
4216
4476
|
|
4477
|
+
|
4478
|
+
|
4479
|
+
|
4480
|
+
|
4481
|
+
|
4217
4482
|
.govuk-file-upload {
|
4218
4483
|
font-family: "Inter";
|
4219
4484
|
-webkit-font-smoothing: antialiased;
|
4220
4485
|
-moz-osx-font-smoothing: grayscale;
|
4221
4486
|
font-weight: 400;
|
4222
|
-
font-size: 16px;
|
4223
4487
|
font-size: 1rem;
|
4224
4488
|
line-height: 1.5;
|
4225
4489
|
color: var(--site-text-color);
|
@@ -4234,7 +4498,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
4234
4498
|
}
|
4235
4499
|
@media (min-width: 40.0625em) {
|
4236
4500
|
.govuk-file-upload {
|
4237
|
-
font-size: 16px;
|
4238
4501
|
font-size: 1rem;
|
4239
4502
|
line-height: 1.5;
|
4240
4503
|
}
|
@@ -4268,14 +4531,18 @@ trix-editor .attachment__metadata .attachment__size {
|
|
4268
4531
|
cursor: not-allowed;
|
4269
4532
|
}
|
4270
4533
|
|
4534
|
+
|
4535
|
+
|
4536
|
+
|
4537
|
+
|
4538
|
+
|
4539
|
+
|
4540
|
+
|
4541
|
+
|
4542
|
+
|
4543
|
+
|
4544
|
+
|
4271
4545
|
.govuk-radios__item {
|
4272
|
-
font-family: "Inter";
|
4273
|
-
-webkit-font-smoothing: antialiased;
|
4274
|
-
-moz-osx-font-smoothing: grayscale;
|
4275
|
-
font-weight: 400;
|
4276
|
-
font-size: 16px;
|
4277
|
-
font-size: 1rem;
|
4278
|
-
line-height: 1.5;
|
4279
4546
|
display: block;
|
4280
4547
|
position: relative;
|
4281
4548
|
min-height: 40px;
|
@@ -4283,24 +4550,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
4283
4550
|
padding-left: 40px;
|
4284
4551
|
clear: left;
|
4285
4552
|
}
|
4286
|
-
@media print {
|
4287
|
-
.govuk-radios__item {
|
4288
|
-
font-family: sans-serif;
|
4289
|
-
}
|
4290
|
-
}
|
4291
|
-
@media (min-width: 40.0625em) {
|
4292
|
-
.govuk-radios__item {
|
4293
|
-
font-size: 16px;
|
4294
|
-
font-size: 1rem;
|
4295
|
-
line-height: 1.5;
|
4296
|
-
}
|
4297
|
-
}
|
4298
|
-
@media print {
|
4299
|
-
.govuk-radios__item {
|
4300
|
-
font-size: 16px;
|
4301
|
-
line-height: 1.5;
|
4302
|
-
}
|
4303
|
-
}
|
4304
4553
|
|
4305
4554
|
.govuk-radios__item:last-child,
|
4306
4555
|
.govuk-radios__item:last-of-type {
|
@@ -4308,7 +4557,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
4308
4557
|
}
|
4309
4558
|
|
4310
4559
|
.govuk-radios__input {
|
4311
|
-
cursor: pointer;
|
4312
4560
|
position: absolute;
|
4313
4561
|
z-index: 1;
|
4314
4562
|
top: -2px;
|
@@ -4317,6 +4565,7 @@ trix-editor .attachment__metadata .attachment__size {
|
|
4317
4565
|
height: 44px;
|
4318
4566
|
margin: 0;
|
4319
4567
|
opacity: 0;
|
4568
|
+
cursor: pointer;
|
4320
4569
|
}
|
4321
4570
|
|
4322
4571
|
.govuk-radios__label {
|
@@ -4324,11 +4573,10 @@ trix-editor .attachment__metadata .attachment__size {
|
|
4324
4573
|
margin-bottom: 0;
|
4325
4574
|
padding: 8px 15px 5px;
|
4326
4575
|
cursor: pointer;
|
4327
|
-
-ms-touch-action: manipulation;
|
4328
4576
|
touch-action: manipulation;
|
4329
4577
|
}
|
4330
4578
|
|
4331
|
-
.govuk-radios__label
|
4579
|
+
.govuk-radios__label::before {
|
4332
4580
|
content: "";
|
4333
4581
|
box-sizing: border-box;
|
4334
4582
|
position: absolute;
|
@@ -4341,7 +4589,7 @@ trix-editor .attachment__metadata .attachment__size {
|
|
4341
4589
|
background: transparent;
|
4342
4590
|
}
|
4343
4591
|
|
4344
|
-
.govuk-radios__label
|
4592
|
+
.govuk-radios__label::after {
|
4345
4593
|
content: "";
|
4346
4594
|
position: absolute;
|
4347
4595
|
top: 10px;
|
@@ -4360,19 +4608,19 @@ trix-editor .attachment__metadata .attachment__size {
|
|
4360
4608
|
padding-left: 15px;
|
4361
4609
|
}
|
4362
4610
|
|
4363
|
-
.govuk-radios__input:focus + .govuk-radios__label
|
4611
|
+
.govuk-radios__input:focus + .govuk-radios__label::before {
|
4364
4612
|
border-width: 4px;
|
4365
4613
|
outline: 3px solid transparent;
|
4366
4614
|
outline-offset: 1px;
|
4367
4615
|
box-shadow: 0 0 0 4px #ffdd00;
|
4368
4616
|
}
|
4369
4617
|
@media screen and (forced-colors: active), (-ms-high-contrast: active) {
|
4370
|
-
.govuk-radios__input:focus + .govuk-radios__label
|
4618
|
+
.govuk-radios__input:focus + .govuk-radios__label::before {
|
4371
4619
|
outline-color: Highlight;
|
4372
4620
|
}
|
4373
4621
|
}
|
4374
4622
|
|
4375
|
-
.govuk-radios__input:checked + .govuk-radios__label
|
4623
|
+
.govuk-radios__input:checked + .govuk-radios__label::after {
|
4376
4624
|
opacity: 1;
|
4377
4625
|
}
|
4378
4626
|
|
@@ -4387,7 +4635,7 @@ trix-editor .attachment__metadata .attachment__size {
|
|
4387
4635
|
}
|
4388
4636
|
|
4389
4637
|
@media (min-width: 40.0625em) {
|
4390
|
-
.govuk-radios--inline
|
4638
|
+
.govuk-radios--inline::after {
|
4391
4639
|
content: "";
|
4392
4640
|
display: block;
|
4393
4641
|
clear: both;
|
@@ -4404,7 +4652,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
4404
4652
|
-webkit-font-smoothing: antialiased;
|
4405
4653
|
-moz-osx-font-smoothing: grayscale;
|
4406
4654
|
font-weight: 400;
|
4407
|
-
font-size: 16px;
|
4408
4655
|
font-size: 1rem;
|
4409
4656
|
line-height: 1.5;
|
4410
4657
|
color: var(--site-text-color);
|
@@ -4419,7 +4666,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
4419
4666
|
}
|
4420
4667
|
@media (min-width: 40.0625em) {
|
4421
4668
|
.govuk-radios__divider {
|
4422
|
-
font-size: 16px;
|
4423
4669
|
font-size: 1rem;
|
4424
4670
|
line-height: 1.5;
|
4425
4671
|
}
|
@@ -4447,7 +4693,7 @@ trix-editor .attachment__metadata .attachment__size {
|
|
4447
4693
|
margin-bottom: 20px;
|
4448
4694
|
}
|
4449
4695
|
}
|
4450
|
-
.
|
4696
|
+
.govuk-frontend-supported .govuk-radios__conditional--hidden {
|
4451
4697
|
display: none;
|
4452
4698
|
}
|
4453
4699
|
.govuk-radios__conditional > :last-child {
|
@@ -4460,7 +4706,7 @@ trix-editor .attachment__metadata .attachment__size {
|
|
4460
4706
|
padding-left: 34px;
|
4461
4707
|
float: left;
|
4462
4708
|
}
|
4463
|
-
.govuk-radios--small .govuk-radios__item
|
4709
|
+
.govuk-radios--small .govuk-radios__item::after {
|
4464
4710
|
content: "";
|
4465
4711
|
display: block;
|
4466
4712
|
clear: both;
|
@@ -4478,12 +4724,12 @@ trix-editor .attachment__metadata .attachment__size {
|
|
4478
4724
|
padding: 11px 15px 10px 1px;
|
4479
4725
|
}
|
4480
4726
|
}
|
4481
|
-
.govuk-radios--small .govuk-radios__label
|
4727
|
+
.govuk-radios--small .govuk-radios__label::before {
|
4482
4728
|
top: 8px;
|
4483
4729
|
width: 24px;
|
4484
4730
|
height: 24px;
|
4485
4731
|
}
|
4486
|
-
.govuk-radios--small .govuk-radios__label
|
4732
|
+
.govuk-radios--small .govuk-radios__label::after {
|
4487
4733
|
top: 15px;
|
4488
4734
|
left: 7px;
|
4489
4735
|
border-width: 5px;
|
@@ -4502,33 +4748,42 @@ trix-editor .attachment__metadata .attachment__size {
|
|
4502
4748
|
width: 24px;
|
4503
4749
|
margin-bottom: 5px;
|
4504
4750
|
}
|
4505
|
-
.govuk-radios--small .govuk-radios__item:hover .govuk-radios__input:not(:disabled) + .govuk-radios__label
|
4751
|
+
.govuk-radios--small .govuk-radios__item:hover .govuk-radios__input:not(:disabled) + .govuk-radios__label::before {
|
4752
|
+
outline: 4px dashed transparent;
|
4753
|
+
outline-offset: 1px;
|
4506
4754
|
box-shadow: 0 0 0 10px #b1b4b6;
|
4507
4755
|
}
|
4508
|
-
.govuk-radios--small .govuk-radios__item:hover .govuk-radios__input:focus + .govuk-radios__label
|
4509
|
-
box-shadow: 0 0 0 4px #ffdd00
|
4756
|
+
.govuk-radios--small .govuk-radios__item:hover .govuk-radios__input:focus + .govuk-radios__label::before {
|
4757
|
+
box-shadow: 0 0 0 4px #ffdd00 0 0 0 10px #b1b4b6;
|
4758
|
+
}
|
4759
|
+
@media screen and (forced-colors: active), (-ms-high-contrast: active) {
|
4760
|
+
.govuk-radios--small .govuk-radios__item:hover .govuk-radios__input:focus + .govuk-radios__label::before {
|
4761
|
+
outline-color: Highlight;
|
4762
|
+
}
|
4510
4763
|
}
|
4511
4764
|
@media (hover: none), (pointer: coarse) {
|
4512
|
-
.govuk-radios--small .govuk-radios__item:hover .govuk-radios__input:not(:disabled) + .govuk-radios__label
|
4765
|
+
.govuk-radios--small .govuk-radios__item:hover .govuk-radios__input:not(:disabled) + .govuk-radios__label::before {
|
4513
4766
|
box-shadow: initial;
|
4514
4767
|
}
|
4515
|
-
.govuk-radios--small .govuk-radios__item:hover .govuk-radios__input:focus + .govuk-radios__label
|
4768
|
+
.govuk-radios--small .govuk-radios__item:hover .govuk-radios__input:focus + .govuk-radios__label::before {
|
4516
4769
|
box-shadow: 0 0 0 4px #ffdd00;
|
4517
4770
|
}
|
4518
4771
|
}
|
4519
4772
|
|
4773
|
+
|
4774
|
+
|
4775
|
+
|
4776
|
+
|
4520
4777
|
.govuk-select {
|
4521
4778
|
font-family: "Inter";
|
4522
4779
|
-webkit-font-smoothing: antialiased;
|
4523
4780
|
-moz-osx-font-smoothing: grayscale;
|
4524
4781
|
font-weight: 400;
|
4525
|
-
font-size: 16px;
|
4526
4782
|
font-size: 1rem;
|
4527
4783
|
line-height: 1.25;
|
4528
4784
|
box-sizing: border-box;
|
4529
4785
|
min-width: 11.5em;
|
4530
4786
|
max-width: 100%;
|
4531
|
-
height: 40px;
|
4532
4787
|
height: 2.5rem;
|
4533
4788
|
padding: 5px;
|
4534
4789
|
border: 2px solid var(--site-text-color);
|
@@ -4542,7 +4797,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
4542
4797
|
}
|
4543
4798
|
@media (min-width: 40.0625em) {
|
4544
4799
|
.govuk-select {
|
4545
|
-
font-size: 16px;
|
4546
4800
|
font-size: 1rem;
|
4547
4801
|
line-height: 1.25;
|
4548
4802
|
}
|
@@ -4578,12 +4832,15 @@ trix-editor .attachment__metadata .attachment__size {
|
|
4578
4832
|
border-color: var(--site-text-color);
|
4579
4833
|
}
|
4580
4834
|
|
4835
|
+
|
4836
|
+
|
4837
|
+
|
4838
|
+
|
4581
4839
|
.govuk-textarea {
|
4582
4840
|
font-family: "Inter";
|
4583
4841
|
-webkit-font-smoothing: antialiased;
|
4584
4842
|
-moz-osx-font-smoothing: grayscale;
|
4585
4843
|
font-weight: 400;
|
4586
|
-
font-size: 16px;
|
4587
4844
|
font-size: 1rem;
|
4588
4845
|
line-height: 1.25;
|
4589
4846
|
box-sizing: border-box;
|
@@ -4604,7 +4861,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
4604
4861
|
}
|
4605
4862
|
@media (min-width: 40.0625em) {
|
4606
4863
|
.govuk-textarea {
|
4607
|
-
font-size: 16px;
|
4608
4864
|
font-size: 1rem;
|
4609
4865
|
line-height: 1.25;
|
4610
4866
|
}
|
@@ -4639,12 +4895,14 @@ trix-editor .attachment__metadata .attachment__size {
|
|
4639
4895
|
border-color: var(--site-text-color);
|
4640
4896
|
}
|
4641
4897
|
|
4642
|
-
|
4898
|
+
|
4899
|
+
.govuk-clearfix::after {
|
4643
4900
|
content: "";
|
4644
4901
|
display: block;
|
4645
4902
|
clear: both;
|
4646
4903
|
}
|
4647
4904
|
|
4905
|
+
|
4648
4906
|
.govuk-visually-hidden {
|
4649
4907
|
position: absolute !important;
|
4650
4908
|
width: 1px !important;
|
@@ -4657,11 +4915,14 @@ trix-editor .attachment__metadata .attachment__size {
|
|
4657
4915
|
clip-path: inset(50%) !important;
|
4658
4916
|
border: 0 !important;
|
4659
4917
|
white-space: nowrap !important;
|
4918
|
+
-webkit-user-select: none;
|
4919
|
+
-ms-user-select: none;
|
4920
|
+
user-select: none;
|
4660
4921
|
}
|
4661
|
-
.govuk-visually-hidden
|
4922
|
+
.govuk-visually-hidden::before {
|
4662
4923
|
content: " ";
|
4663
4924
|
}
|
4664
|
-
.govuk-visually-hidden
|
4925
|
+
.govuk-visually-hidden::after {
|
4665
4926
|
content: " ";
|
4666
4927
|
}
|
4667
4928
|
|
@@ -4675,6 +4936,9 @@ trix-editor .attachment__metadata .attachment__size {
|
|
4675
4936
|
-webkit-clip-path: inset(50%) !important;
|
4676
4937
|
clip-path: inset(50%) !important;
|
4677
4938
|
white-space: nowrap !important;
|
4939
|
+
-webkit-user-select: none;
|
4940
|
+
-ms-user-select: none;
|
4941
|
+
user-select: none;
|
4678
4942
|
}
|
4679
4943
|
.govuk-visually-hidden-focusable:active, .govuk-visually-hidden-focusable:focus {
|
4680
4944
|
position: static !important;
|
@@ -4686,8 +4950,13 @@ trix-editor .attachment__metadata .attachment__size {
|
|
4686
4950
|
-webkit-clip-path: none !important;
|
4687
4951
|
clip-path: none !important;
|
4688
4952
|
white-space: inherit !important;
|
4953
|
+
-webkit-user-select: text;
|
4954
|
+
-ms-user-select: text;
|
4955
|
+
user-select: text;
|
4689
4956
|
}
|
4690
4957
|
|
4958
|
+
|
4959
|
+
|
4691
4960
|
.govuk-\!-display-inline {
|
4692
4961
|
display: inline !important;
|
4693
4962
|
}
|
@@ -4709,6 +4978,7 @@ trix-editor .attachment__metadata .attachment__size {
|
|
4709
4978
|
display: none !important;
|
4710
4979
|
}
|
4711
4980
|
}
|
4981
|
+
|
4712
4982
|
.govuk-\!-margin-0 {
|
4713
4983
|
margin: 0 !important;
|
4714
4984
|
}
|
@@ -5409,506 +5679,407 @@ trix-editor .attachment__metadata .attachment__size {
|
|
5409
5679
|
}
|
5410
5680
|
}
|
5411
5681
|
|
5412
|
-
.govuk-\!-margin-static-0,
|
5413
5682
|
.govuk-\!-static-margin-0 {
|
5414
5683
|
margin: 0 !important;
|
5415
5684
|
}
|
5416
5685
|
|
5417
|
-
.govuk-\!-margin-top-static-0,
|
5418
5686
|
.govuk-\!-static-margin-top-0 {
|
5419
5687
|
margin-top: 0 !important;
|
5420
5688
|
}
|
5421
5689
|
|
5422
|
-
.govuk-\!-margin-right-static-0,
|
5423
5690
|
.govuk-\!-static-margin-right-0 {
|
5424
5691
|
margin-right: 0 !important;
|
5425
5692
|
}
|
5426
5693
|
|
5427
|
-
.govuk-\!-margin-bottom-static-0,
|
5428
5694
|
.govuk-\!-static-margin-bottom-0 {
|
5429
5695
|
margin-bottom: 0 !important;
|
5430
5696
|
}
|
5431
5697
|
|
5432
|
-
.govuk-\!-margin-left-static-0,
|
5433
5698
|
.govuk-\!-static-margin-left-0 {
|
5434
5699
|
margin-left: 0 !important;
|
5435
5700
|
}
|
5436
5701
|
|
5437
|
-
.govuk-\!-margin-static-1,
|
5438
5702
|
.govuk-\!-static-margin-1 {
|
5439
5703
|
margin: 5px !important;
|
5440
5704
|
}
|
5441
5705
|
|
5442
|
-
.govuk-\!-margin-top-static-1,
|
5443
5706
|
.govuk-\!-static-margin-top-1 {
|
5444
5707
|
margin-top: 5px !important;
|
5445
5708
|
}
|
5446
5709
|
|
5447
|
-
.govuk-\!-margin-right-static-1,
|
5448
5710
|
.govuk-\!-static-margin-right-1 {
|
5449
5711
|
margin-right: 5px !important;
|
5450
5712
|
}
|
5451
5713
|
|
5452
|
-
.govuk-\!-margin-bottom-static-1,
|
5453
5714
|
.govuk-\!-static-margin-bottom-1 {
|
5454
5715
|
margin-bottom: 5px !important;
|
5455
5716
|
}
|
5456
5717
|
|
5457
|
-
.govuk-\!-margin-left-static-1,
|
5458
5718
|
.govuk-\!-static-margin-left-1 {
|
5459
5719
|
margin-left: 5px !important;
|
5460
5720
|
}
|
5461
5721
|
|
5462
|
-
.govuk-\!-margin-static-2,
|
5463
5722
|
.govuk-\!-static-margin-2 {
|
5464
5723
|
margin: 10px !important;
|
5465
5724
|
}
|
5466
5725
|
|
5467
|
-
.govuk-\!-margin-top-static-2,
|
5468
5726
|
.govuk-\!-static-margin-top-2 {
|
5469
5727
|
margin-top: 10px !important;
|
5470
5728
|
}
|
5471
5729
|
|
5472
|
-
.govuk-\!-margin-right-static-2,
|
5473
5730
|
.govuk-\!-static-margin-right-2 {
|
5474
5731
|
margin-right: 10px !important;
|
5475
5732
|
}
|
5476
5733
|
|
5477
|
-
.govuk-\!-margin-bottom-static-2,
|
5478
5734
|
.govuk-\!-static-margin-bottom-2 {
|
5479
5735
|
margin-bottom: 10px !important;
|
5480
5736
|
}
|
5481
5737
|
|
5482
|
-
.govuk-\!-margin-left-static-2,
|
5483
5738
|
.govuk-\!-static-margin-left-2 {
|
5484
5739
|
margin-left: 10px !important;
|
5485
5740
|
}
|
5486
5741
|
|
5487
|
-
.govuk-\!-margin-static-3,
|
5488
5742
|
.govuk-\!-static-margin-3 {
|
5489
5743
|
margin: 15px !important;
|
5490
5744
|
}
|
5491
5745
|
|
5492
|
-
.govuk-\!-margin-top-static-3,
|
5493
5746
|
.govuk-\!-static-margin-top-3 {
|
5494
5747
|
margin-top: 15px !important;
|
5495
5748
|
}
|
5496
5749
|
|
5497
|
-
.govuk-\!-margin-right-static-3,
|
5498
5750
|
.govuk-\!-static-margin-right-3 {
|
5499
5751
|
margin-right: 15px !important;
|
5500
5752
|
}
|
5501
5753
|
|
5502
|
-
.govuk-\!-margin-bottom-static-3,
|
5503
5754
|
.govuk-\!-static-margin-bottom-3 {
|
5504
5755
|
margin-bottom: 15px !important;
|
5505
5756
|
}
|
5506
5757
|
|
5507
|
-
.govuk-\!-margin-left-static-3,
|
5508
5758
|
.govuk-\!-static-margin-left-3 {
|
5509
5759
|
margin-left: 15px !important;
|
5510
5760
|
}
|
5511
5761
|
|
5512
|
-
.govuk-\!-margin-static-4,
|
5513
5762
|
.govuk-\!-static-margin-4 {
|
5514
5763
|
margin: 20px !important;
|
5515
5764
|
}
|
5516
5765
|
|
5517
|
-
.govuk-\!-margin-top-static-4,
|
5518
5766
|
.govuk-\!-static-margin-top-4 {
|
5519
5767
|
margin-top: 20px !important;
|
5520
5768
|
}
|
5521
5769
|
|
5522
|
-
.govuk-\!-margin-right-static-4,
|
5523
5770
|
.govuk-\!-static-margin-right-4 {
|
5524
5771
|
margin-right: 20px !important;
|
5525
5772
|
}
|
5526
5773
|
|
5527
|
-
.govuk-\!-margin-bottom-static-4,
|
5528
5774
|
.govuk-\!-static-margin-bottom-4 {
|
5529
5775
|
margin-bottom: 20px !important;
|
5530
5776
|
}
|
5531
5777
|
|
5532
|
-
.govuk-\!-margin-left-static-4,
|
5533
5778
|
.govuk-\!-static-margin-left-4 {
|
5534
5779
|
margin-left: 20px !important;
|
5535
5780
|
}
|
5536
5781
|
|
5537
|
-
.govuk-\!-margin-static-5,
|
5538
5782
|
.govuk-\!-static-margin-5 {
|
5539
5783
|
margin: 25px !important;
|
5540
5784
|
}
|
5541
5785
|
|
5542
|
-
.govuk-\!-margin-top-static-5,
|
5543
5786
|
.govuk-\!-static-margin-top-5 {
|
5544
5787
|
margin-top: 25px !important;
|
5545
5788
|
}
|
5546
5789
|
|
5547
|
-
.govuk-\!-margin-right-static-5,
|
5548
5790
|
.govuk-\!-static-margin-right-5 {
|
5549
5791
|
margin-right: 25px !important;
|
5550
5792
|
}
|
5551
5793
|
|
5552
|
-
.govuk-\!-margin-bottom-static-5,
|
5553
5794
|
.govuk-\!-static-margin-bottom-5 {
|
5554
5795
|
margin-bottom: 25px !important;
|
5555
5796
|
}
|
5556
5797
|
|
5557
|
-
.govuk-\!-margin-left-static-5,
|
5558
5798
|
.govuk-\!-static-margin-left-5 {
|
5559
5799
|
margin-left: 25px !important;
|
5560
5800
|
}
|
5561
5801
|
|
5562
|
-
.govuk-\!-margin-static-6,
|
5563
5802
|
.govuk-\!-static-margin-6 {
|
5564
5803
|
margin: 30px !important;
|
5565
5804
|
}
|
5566
5805
|
|
5567
|
-
.govuk-\!-margin-top-static-6,
|
5568
5806
|
.govuk-\!-static-margin-top-6 {
|
5569
5807
|
margin-top: 30px !important;
|
5570
5808
|
}
|
5571
5809
|
|
5572
|
-
.govuk-\!-margin-right-static-6,
|
5573
5810
|
.govuk-\!-static-margin-right-6 {
|
5574
5811
|
margin-right: 30px !important;
|
5575
5812
|
}
|
5576
5813
|
|
5577
|
-
.govuk-\!-margin-bottom-static-6,
|
5578
5814
|
.govuk-\!-static-margin-bottom-6 {
|
5579
5815
|
margin-bottom: 30px !important;
|
5580
5816
|
}
|
5581
5817
|
|
5582
|
-
.govuk-\!-margin-left-static-6,
|
5583
5818
|
.govuk-\!-static-margin-left-6 {
|
5584
5819
|
margin-left: 30px !important;
|
5585
5820
|
}
|
5586
5821
|
|
5587
|
-
.govuk-\!-margin-static-7,
|
5588
5822
|
.govuk-\!-static-margin-7 {
|
5589
5823
|
margin: 40px !important;
|
5590
5824
|
}
|
5591
5825
|
|
5592
|
-
.govuk-\!-margin-top-static-7,
|
5593
5826
|
.govuk-\!-static-margin-top-7 {
|
5594
5827
|
margin-top: 40px !important;
|
5595
5828
|
}
|
5596
5829
|
|
5597
|
-
.govuk-\!-margin-right-static-7,
|
5598
5830
|
.govuk-\!-static-margin-right-7 {
|
5599
5831
|
margin-right: 40px !important;
|
5600
5832
|
}
|
5601
5833
|
|
5602
|
-
.govuk-\!-margin-bottom-static-7,
|
5603
5834
|
.govuk-\!-static-margin-bottom-7 {
|
5604
5835
|
margin-bottom: 40px !important;
|
5605
5836
|
}
|
5606
5837
|
|
5607
|
-
.govuk-\!-margin-left-static-7,
|
5608
5838
|
.govuk-\!-static-margin-left-7 {
|
5609
5839
|
margin-left: 40px !important;
|
5610
5840
|
}
|
5611
5841
|
|
5612
|
-
.govuk-\!-margin-static-8,
|
5613
5842
|
.govuk-\!-static-margin-8 {
|
5614
5843
|
margin: 50px !important;
|
5615
5844
|
}
|
5616
5845
|
|
5617
|
-
.govuk-\!-margin-top-static-8,
|
5618
5846
|
.govuk-\!-static-margin-top-8 {
|
5619
5847
|
margin-top: 50px !important;
|
5620
5848
|
}
|
5621
5849
|
|
5622
|
-
.govuk-\!-margin-right-static-8,
|
5623
5850
|
.govuk-\!-static-margin-right-8 {
|
5624
5851
|
margin-right: 50px !important;
|
5625
5852
|
}
|
5626
5853
|
|
5627
|
-
.govuk-\!-margin-bottom-static-8,
|
5628
5854
|
.govuk-\!-static-margin-bottom-8 {
|
5629
5855
|
margin-bottom: 50px !important;
|
5630
5856
|
}
|
5631
5857
|
|
5632
|
-
.govuk-\!-margin-left-static-8,
|
5633
5858
|
.govuk-\!-static-margin-left-8 {
|
5634
5859
|
margin-left: 50px !important;
|
5635
5860
|
}
|
5636
5861
|
|
5637
|
-
.govuk-\!-margin-static-9,
|
5638
5862
|
.govuk-\!-static-margin-9 {
|
5639
5863
|
margin: 60px !important;
|
5640
5864
|
}
|
5641
5865
|
|
5642
|
-
.govuk-\!-margin-top-static-9,
|
5643
5866
|
.govuk-\!-static-margin-top-9 {
|
5644
5867
|
margin-top: 60px !important;
|
5645
5868
|
}
|
5646
5869
|
|
5647
|
-
.govuk-\!-margin-right-static-9,
|
5648
5870
|
.govuk-\!-static-margin-right-9 {
|
5649
5871
|
margin-right: 60px !important;
|
5650
5872
|
}
|
5651
5873
|
|
5652
|
-
.govuk-\!-margin-bottom-static-9,
|
5653
5874
|
.govuk-\!-static-margin-bottom-9 {
|
5654
5875
|
margin-bottom: 60px !important;
|
5655
5876
|
}
|
5656
5877
|
|
5657
|
-
.govuk-\!-margin-left-static-9,
|
5658
5878
|
.govuk-\!-static-margin-left-9 {
|
5659
5879
|
margin-left: 60px !important;
|
5660
5880
|
}
|
5661
5881
|
|
5662
|
-
.govuk-\!-padding-static-0,
|
5663
5882
|
.govuk-\!-static-padding-0 {
|
5664
5883
|
padding: 0 !important;
|
5665
5884
|
}
|
5666
5885
|
|
5667
|
-
.govuk-\!-padding-top-static-0,
|
5668
5886
|
.govuk-\!-static-padding-top-0 {
|
5669
5887
|
padding-top: 0 !important;
|
5670
5888
|
}
|
5671
5889
|
|
5672
|
-
.govuk-\!-padding-right-static-0,
|
5673
5890
|
.govuk-\!-static-padding-right-0 {
|
5674
5891
|
padding-right: 0 !important;
|
5675
5892
|
}
|
5676
5893
|
|
5677
|
-
.govuk-\!-padding-bottom-static-0,
|
5678
5894
|
.govuk-\!-static-padding-bottom-0 {
|
5679
5895
|
padding-bottom: 0 !important;
|
5680
5896
|
}
|
5681
5897
|
|
5682
|
-
.govuk-\!-padding-left-static-0,
|
5683
5898
|
.govuk-\!-static-padding-left-0 {
|
5684
5899
|
padding-left: 0 !important;
|
5685
5900
|
}
|
5686
5901
|
|
5687
|
-
.govuk-\!-padding-static-1,
|
5688
5902
|
.govuk-\!-static-padding-1 {
|
5689
5903
|
padding: 5px !important;
|
5690
5904
|
}
|
5691
5905
|
|
5692
|
-
.govuk-\!-padding-top-static-1,
|
5693
5906
|
.govuk-\!-static-padding-top-1 {
|
5694
5907
|
padding-top: 5px !important;
|
5695
5908
|
}
|
5696
5909
|
|
5697
|
-
.govuk-\!-padding-right-static-1,
|
5698
5910
|
.govuk-\!-static-padding-right-1 {
|
5699
5911
|
padding-right: 5px !important;
|
5700
5912
|
}
|
5701
5913
|
|
5702
|
-
.govuk-\!-padding-bottom-static-1,
|
5703
5914
|
.govuk-\!-static-padding-bottom-1 {
|
5704
5915
|
padding-bottom: 5px !important;
|
5705
5916
|
}
|
5706
5917
|
|
5707
|
-
.govuk-\!-padding-left-static-1,
|
5708
5918
|
.govuk-\!-static-padding-left-1 {
|
5709
5919
|
padding-left: 5px !important;
|
5710
5920
|
}
|
5711
5921
|
|
5712
|
-
.govuk-\!-padding-static-2,
|
5713
5922
|
.govuk-\!-static-padding-2 {
|
5714
5923
|
padding: 10px !important;
|
5715
5924
|
}
|
5716
5925
|
|
5717
|
-
.govuk-\!-padding-top-static-2,
|
5718
5926
|
.govuk-\!-static-padding-top-2 {
|
5719
5927
|
padding-top: 10px !important;
|
5720
5928
|
}
|
5721
5929
|
|
5722
|
-
.govuk-\!-padding-right-static-2,
|
5723
5930
|
.govuk-\!-static-padding-right-2 {
|
5724
5931
|
padding-right: 10px !important;
|
5725
5932
|
}
|
5726
5933
|
|
5727
|
-
.govuk-\!-padding-bottom-static-2,
|
5728
5934
|
.govuk-\!-static-padding-bottom-2 {
|
5729
5935
|
padding-bottom: 10px !important;
|
5730
5936
|
}
|
5731
5937
|
|
5732
|
-
.govuk-\!-padding-left-static-2,
|
5733
5938
|
.govuk-\!-static-padding-left-2 {
|
5734
5939
|
padding-left: 10px !important;
|
5735
5940
|
}
|
5736
5941
|
|
5737
|
-
.govuk-\!-padding-static-3,
|
5738
5942
|
.govuk-\!-static-padding-3 {
|
5739
5943
|
padding: 15px !important;
|
5740
5944
|
}
|
5741
5945
|
|
5742
|
-
.govuk-\!-padding-top-static-3,
|
5743
5946
|
.govuk-\!-static-padding-top-3 {
|
5744
5947
|
padding-top: 15px !important;
|
5745
5948
|
}
|
5746
5949
|
|
5747
|
-
.govuk-\!-padding-right-static-3,
|
5748
5950
|
.govuk-\!-static-padding-right-3 {
|
5749
5951
|
padding-right: 15px !important;
|
5750
5952
|
}
|
5751
5953
|
|
5752
|
-
.govuk-\!-padding-bottom-static-3,
|
5753
5954
|
.govuk-\!-static-padding-bottom-3 {
|
5754
5955
|
padding-bottom: 15px !important;
|
5755
5956
|
}
|
5756
5957
|
|
5757
|
-
.govuk-\!-padding-left-static-3,
|
5758
5958
|
.govuk-\!-static-padding-left-3 {
|
5759
5959
|
padding-left: 15px !important;
|
5760
5960
|
}
|
5761
5961
|
|
5762
|
-
.govuk-\!-padding-static-4,
|
5763
5962
|
.govuk-\!-static-padding-4 {
|
5764
5963
|
padding: 20px !important;
|
5765
5964
|
}
|
5766
5965
|
|
5767
|
-
.govuk-\!-padding-top-static-4,
|
5768
5966
|
.govuk-\!-static-padding-top-4 {
|
5769
5967
|
padding-top: 20px !important;
|
5770
5968
|
}
|
5771
5969
|
|
5772
|
-
.govuk-\!-padding-right-static-4,
|
5773
5970
|
.govuk-\!-static-padding-right-4 {
|
5774
5971
|
padding-right: 20px !important;
|
5775
5972
|
}
|
5776
5973
|
|
5777
|
-
.govuk-\!-padding-bottom-static-4,
|
5778
5974
|
.govuk-\!-static-padding-bottom-4 {
|
5779
5975
|
padding-bottom: 20px !important;
|
5780
5976
|
}
|
5781
5977
|
|
5782
|
-
.govuk-\!-padding-left-static-4,
|
5783
5978
|
.govuk-\!-static-padding-left-4 {
|
5784
5979
|
padding-left: 20px !important;
|
5785
5980
|
}
|
5786
5981
|
|
5787
|
-
.govuk-\!-padding-static-5,
|
5788
5982
|
.govuk-\!-static-padding-5 {
|
5789
5983
|
padding: 25px !important;
|
5790
5984
|
}
|
5791
5985
|
|
5792
|
-
.govuk-\!-padding-top-static-5,
|
5793
5986
|
.govuk-\!-static-padding-top-5 {
|
5794
5987
|
padding-top: 25px !important;
|
5795
5988
|
}
|
5796
5989
|
|
5797
|
-
.govuk-\!-padding-right-static-5,
|
5798
5990
|
.govuk-\!-static-padding-right-5 {
|
5799
5991
|
padding-right: 25px !important;
|
5800
5992
|
}
|
5801
5993
|
|
5802
|
-
.govuk-\!-padding-bottom-static-5,
|
5803
5994
|
.govuk-\!-static-padding-bottom-5 {
|
5804
5995
|
padding-bottom: 25px !important;
|
5805
5996
|
}
|
5806
5997
|
|
5807
|
-
.govuk-\!-padding-left-static-5,
|
5808
5998
|
.govuk-\!-static-padding-left-5 {
|
5809
5999
|
padding-left: 25px !important;
|
5810
6000
|
}
|
5811
6001
|
|
5812
|
-
.govuk-\!-padding-static-6,
|
5813
6002
|
.govuk-\!-static-padding-6 {
|
5814
6003
|
padding: 30px !important;
|
5815
6004
|
}
|
5816
6005
|
|
5817
|
-
.govuk-\!-padding-top-static-6,
|
5818
6006
|
.govuk-\!-static-padding-top-6 {
|
5819
6007
|
padding-top: 30px !important;
|
5820
6008
|
}
|
5821
6009
|
|
5822
|
-
.govuk-\!-padding-right-static-6,
|
5823
6010
|
.govuk-\!-static-padding-right-6 {
|
5824
6011
|
padding-right: 30px !important;
|
5825
6012
|
}
|
5826
6013
|
|
5827
|
-
.govuk-\!-padding-bottom-static-6,
|
5828
6014
|
.govuk-\!-static-padding-bottom-6 {
|
5829
6015
|
padding-bottom: 30px !important;
|
5830
6016
|
}
|
5831
6017
|
|
5832
|
-
.govuk-\!-padding-left-static-6,
|
5833
6018
|
.govuk-\!-static-padding-left-6 {
|
5834
6019
|
padding-left: 30px !important;
|
5835
6020
|
}
|
5836
6021
|
|
5837
|
-
.govuk-\!-padding-static-7,
|
5838
6022
|
.govuk-\!-static-padding-7 {
|
5839
6023
|
padding: 40px !important;
|
5840
6024
|
}
|
5841
6025
|
|
5842
|
-
.govuk-\!-padding-top-static-7,
|
5843
6026
|
.govuk-\!-static-padding-top-7 {
|
5844
6027
|
padding-top: 40px !important;
|
5845
6028
|
}
|
5846
6029
|
|
5847
|
-
.govuk-\!-padding-right-static-7,
|
5848
6030
|
.govuk-\!-static-padding-right-7 {
|
5849
6031
|
padding-right: 40px !important;
|
5850
6032
|
}
|
5851
6033
|
|
5852
|
-
.govuk-\!-padding-bottom-static-7,
|
5853
6034
|
.govuk-\!-static-padding-bottom-7 {
|
5854
6035
|
padding-bottom: 40px !important;
|
5855
6036
|
}
|
5856
6037
|
|
5857
|
-
.govuk-\!-padding-left-static-7,
|
5858
6038
|
.govuk-\!-static-padding-left-7 {
|
5859
6039
|
padding-left: 40px !important;
|
5860
6040
|
}
|
5861
6041
|
|
5862
|
-
.govuk-\!-padding-static-8,
|
5863
6042
|
.govuk-\!-static-padding-8 {
|
5864
6043
|
padding: 50px !important;
|
5865
6044
|
}
|
5866
6045
|
|
5867
|
-
.govuk-\!-padding-top-static-8,
|
5868
6046
|
.govuk-\!-static-padding-top-8 {
|
5869
6047
|
padding-top: 50px !important;
|
5870
6048
|
}
|
5871
6049
|
|
5872
|
-
.govuk-\!-padding-right-static-8,
|
5873
6050
|
.govuk-\!-static-padding-right-8 {
|
5874
6051
|
padding-right: 50px !important;
|
5875
6052
|
}
|
5876
6053
|
|
5877
|
-
.govuk-\!-padding-bottom-static-8,
|
5878
6054
|
.govuk-\!-static-padding-bottom-8 {
|
5879
6055
|
padding-bottom: 50px !important;
|
5880
6056
|
}
|
5881
6057
|
|
5882
|
-
.govuk-\!-padding-left-static-8,
|
5883
6058
|
.govuk-\!-static-padding-left-8 {
|
5884
6059
|
padding-left: 50px !important;
|
5885
6060
|
}
|
5886
6061
|
|
5887
|
-
.govuk-\!-padding-static-9,
|
5888
6062
|
.govuk-\!-static-padding-9 {
|
5889
6063
|
padding: 60px !important;
|
5890
6064
|
}
|
5891
6065
|
|
5892
|
-
.govuk-\!-padding-top-static-9,
|
5893
6066
|
.govuk-\!-static-padding-top-9 {
|
5894
6067
|
padding-top: 60px !important;
|
5895
6068
|
}
|
5896
6069
|
|
5897
|
-
.govuk-\!-padding-right-static-9,
|
5898
6070
|
.govuk-\!-static-padding-right-9 {
|
5899
6071
|
padding-right: 60px !important;
|
5900
6072
|
}
|
5901
6073
|
|
5902
|
-
.govuk-\!-padding-bottom-static-9,
|
5903
6074
|
.govuk-\!-static-padding-bottom-9 {
|
5904
6075
|
padding-bottom: 60px !important;
|
5905
6076
|
}
|
5906
6077
|
|
5907
|
-
.govuk-\!-padding-left-static-9,
|
5908
6078
|
.govuk-\!-static-padding-left-9 {
|
5909
6079
|
padding-left: 60px !important;
|
5910
6080
|
}
|
5911
6081
|
|
6082
|
+
|
5912
6083
|
.govuk-\!-text-align-left {
|
5913
6084
|
text-align: left !important;
|
5914
6085
|
}
|
@@ -5921,14 +6092,13 @@ trix-editor .attachment__metadata .attachment__size {
|
|
5921
6092
|
text-align: right !important;
|
5922
6093
|
}
|
5923
6094
|
|
6095
|
+
|
5924
6096
|
.govuk-\!-font-size-80 {
|
5925
|
-
font-size: 53px !important;
|
5926
6097
|
font-size: 3.3125rem !important;
|
5927
6098
|
line-height: 0.3109433962 !important;
|
5928
6099
|
}
|
5929
6100
|
@media (min-width: 40.0625em) {
|
5930
6101
|
.govuk-\!-font-size-80 {
|
5931
|
-
font-size: 53px !important;
|
5932
6102
|
font-size: 3.3125rem !important;
|
5933
6103
|
line-height: 0.3109433962 !important;
|
5934
6104
|
}
|
@@ -5941,13 +6111,11 @@ trix-editor .attachment__metadata .attachment__size {
|
|
5941
6111
|
}
|
5942
6112
|
|
5943
6113
|
.govuk-\!-font-size-48 {
|
5944
|
-
font-size: 32px !important;
|
5945
6114
|
font-size: 2rem !important;
|
5946
6115
|
line-height: 0.545 !important;
|
5947
6116
|
}
|
5948
6117
|
@media (min-width: 40.0625em) {
|
5949
6118
|
.govuk-\!-font-size-48 {
|
5950
|
-
font-size: 32px !important;
|
5951
6119
|
font-size: 2rem !important;
|
5952
6120
|
line-height: 0.545 !important;
|
5953
6121
|
}
|
@@ -5960,13 +6128,11 @@ trix-editor .attachment__metadata .attachment__size {
|
|
5960
6128
|
}
|
5961
6129
|
|
5962
6130
|
.govuk-\!-font-size-36 {
|
5963
|
-
font-size: 24px !important;
|
5964
6131
|
font-size: 1.5rem !important;
|
5965
6132
|
line-height: 0.6933333333 !important;
|
5966
6133
|
}
|
5967
6134
|
@media (min-width: 40.0625em) {
|
5968
6135
|
.govuk-\!-font-size-36 {
|
5969
|
-
font-size: 24px !important;
|
5970
6136
|
font-size: 1.5rem !important;
|
5971
6137
|
line-height: 0.6933333333 !important;
|
5972
6138
|
}
|
@@ -5979,13 +6145,11 @@ trix-editor .attachment__metadata .attachment__size {
|
|
5979
6145
|
}
|
5980
6146
|
|
5981
6147
|
.govuk-\!-font-size-27 {
|
5982
|
-
font-size: 18px !important;
|
5983
6148
|
font-size: 1.125rem !important;
|
5984
6149
|
line-height: 0.9866666667 !important;
|
5985
6150
|
}
|
5986
6151
|
@media (min-width: 40.0625em) {
|
5987
6152
|
.govuk-\!-font-size-27 {
|
5988
|
-
font-size: 18px !important;
|
5989
6153
|
font-size: 1.125rem !important;
|
5990
6154
|
line-height: 0.9866666667 !important;
|
5991
6155
|
}
|
@@ -5998,13 +6162,11 @@ trix-editor .attachment__metadata .attachment__size {
|
|
5998
6162
|
}
|
5999
6163
|
|
6000
6164
|
.govuk-\!-font-size-24 {
|
6001
|
-
font-size: 18px !important;
|
6002
6165
|
font-size: 1.125rem !important;
|
6003
6166
|
line-height: 0.9866666667 !important;
|
6004
6167
|
}
|
6005
6168
|
@media (min-width: 40.0625em) {
|
6006
6169
|
.govuk-\!-font-size-24 {
|
6007
|
-
font-size: 18px !important;
|
6008
6170
|
font-size: 1.125rem !important;
|
6009
6171
|
line-height: 0.9866666667 !important;
|
6010
6172
|
}
|
@@ -6017,13 +6179,11 @@ trix-editor .attachment__metadata .attachment__size {
|
|
6017
6179
|
}
|
6018
6180
|
|
6019
6181
|
.govuk-\!-font-size-19 {
|
6020
|
-
font-size: 16px !important;
|
6021
6182
|
font-size: 1rem !important;
|
6022
6183
|
line-height: 1.5 !important;
|
6023
6184
|
}
|
6024
6185
|
@media (min-width: 40.0625em) {
|
6025
6186
|
.govuk-\!-font-size-19 {
|
6026
|
-
font-size: 16px !important;
|
6027
6187
|
font-size: 1rem !important;
|
6028
6188
|
line-height: 1.5 !important;
|
6029
6189
|
}
|
@@ -6036,13 +6196,11 @@ trix-editor .attachment__metadata .attachment__size {
|
|
6036
6196
|
}
|
6037
6197
|
|
6038
6198
|
.govuk-\!-font-size-16 {
|
6039
|
-
font-size: 16px !important;
|
6040
6199
|
font-size: 1rem !important;
|
6041
6200
|
line-height: 1.14 !important;
|
6042
6201
|
}
|
6043
6202
|
@media (min-width: 40.0625em) {
|
6044
6203
|
.govuk-\!-font-size-16 {
|
6045
|
-
font-size: 16px !important;
|
6046
6204
|
font-size: 1rem !important;
|
6047
6205
|
line-height: 1.14 !important;
|
6048
6206
|
}
|
@@ -6055,13 +6213,11 @@ trix-editor .attachment__metadata .attachment__size {
|
|
6055
6213
|
}
|
6056
6214
|
|
6057
6215
|
.govuk-\!-font-size-14 {
|
6058
|
-
font-size: 14px !important;
|
6059
6216
|
font-size: 0.875rem !important;
|
6060
6217
|
line-height: 1.4285714286 !important;
|
6061
6218
|
}
|
6062
6219
|
@media (min-width: 40.0625em) {
|
6063
6220
|
.govuk-\!-font-size-14 {
|
6064
|
-
font-size: 14px !important;
|
6065
6221
|
font-size: 0.875rem !important;
|
6066
6222
|
line-height: 1.4285714286 !important;
|
6067
6223
|
}
|
@@ -6081,6 +6237,7 @@ trix-editor .attachment__metadata .attachment__size {
|
|
6081
6237
|
font-weight: 700 !important;
|
6082
6238
|
}
|
6083
6239
|
|
6240
|
+
|
6084
6241
|
.govuk-\!-width-full {
|
6085
6242
|
width: 100% !important;
|
6086
6243
|
}
|
@@ -6130,12 +6287,16 @@ trix-editor .attachment__metadata .attachment__size {
|
|
6130
6287
|
}
|
6131
6288
|
}
|
6132
6289
|
|
6290
|
+
|
6291
|
+
|
6292
|
+
|
6293
|
+
|
6294
|
+
|
6133
6295
|
.govuk-richtextarea {
|
6134
6296
|
font-family: "Inter";
|
6135
6297
|
-webkit-font-smoothing: antialiased;
|
6136
6298
|
-moz-osx-font-smoothing: grayscale;
|
6137
6299
|
font-weight: 400;
|
6138
|
-
font-size: 16px;
|
6139
6300
|
font-size: 1rem;
|
6140
6301
|
line-height: 1.25;
|
6141
6302
|
box-sizing: border-box;
|
@@ -6155,7 +6316,6 @@ trix-editor .attachment__metadata .attachment__size {
|
|
6155
6316
|
}
|
6156
6317
|
@media (min-width: 40.0625em) {
|
6157
6318
|
.govuk-richtextarea {
|
6158
|
-
font-size: 16px;
|
6159
6319
|
font-size: 1rem;
|
6160
6320
|
line-height: 1.25;
|
6161
6321
|
}
|
@@ -6183,10 +6343,10 @@ trix-editor .attachment__metadata .attachment__size {
|
|
6183
6343
|
cursor: not-allowed;
|
6184
6344
|
}
|
6185
6345
|
|
6186
|
-
.govuk-
|
6346
|
+
.govuk-richtextarea--error {
|
6187
6347
|
border-color: #d4351c;
|
6188
6348
|
}
|
6189
|
-
.govuk-
|
6349
|
+
.govuk-richtextarea--error:focus {
|
6190
6350
|
border-color: var(--site-text-color);
|
6191
6351
|
}
|
6192
6352
|
|