katalyst-govuk-formbuilder 1.20.0 → 1.21.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.
- checksums.yaml +4 -4
- data/app/assets/builds/katalyst/govuk/formbuilder.css +462 -289
- data/app/assets/builds/katalyst/govuk/formbuilder.js +222 -14
- data/app/assets/builds/katalyst/govuk/formbuilder.min.js +14 -8
- data/app/assets/builds/katalyst/govuk/formbuilder.min.js.map +1 -1
- data/lib/katalyst/govuk/form_builder/traits/label.rb +1 -1
- data/node_modules/govuk-frontend/dist/govuk/components/pagination/_index.scss +4 -0
- data/node_modules/govuk-frontend/dist/govuk/components/service-navigation/_index.scss +72 -5
- data/node_modules/govuk-frontend/dist/govuk/components/skip-link/_index.scss +1 -2
- data/node_modules/govuk-frontend/dist/govuk/core/_govuk-frontend-properties.scss +5 -2
- data/node_modules/govuk-frontend/dist/govuk/helpers/_colour.scss +31 -2
- data/node_modules/govuk-frontend/dist/govuk/helpers/_visually-hidden.scss +4 -1
- data/node_modules/govuk-frontend/dist/govuk/settings/_colours-applied.scss +2 -2
- data/node_modules/govuk-frontend/dist/govuk/settings/_index.scss +13 -0
- metadata +2 -2
@@ -47,10 +47,13 @@
|
|
47
47
|
|
48
48
|
|
49
49
|
:root {
|
50
|
-
--govuk-frontend-version: "5.
|
51
|
-
--govuk-
|
52
|
-
--govuk-frontend-breakpoint-
|
53
|
-
--govuk-
|
50
|
+
--govuk-frontend-version: "5.11.2";
|
51
|
+
--govuk-breakpoint-mobile: 20rem;
|
52
|
+
--govuk-frontend-breakpoint-mobile: var(--govuk-breakpoint-mobile);
|
53
|
+
--govuk-breakpoint-tablet: 40.0625rem;
|
54
|
+
--govuk-frontend-breakpoint-tablet: var(--govuk-breakpoint-tablet);
|
55
|
+
--govuk-breakpoint-desktop: 48.0625rem;
|
56
|
+
--govuk-frontend-breakpoint-desktop: var(--govuk-breakpoint-desktop);
|
54
57
|
}
|
55
58
|
|
56
59
|
|
@@ -58,15 +61,17 @@
|
|
58
61
|
font-family: "Open Sans", sans-serif;
|
59
62
|
-webkit-font-smoothing: antialiased;
|
60
63
|
-moz-osx-font-smoothing: grayscale;
|
61
|
-
text-decoration: underline;
|
62
|
-
text-decoration-thickness: max(1px, .0625rem);
|
63
|
-
text-underline-offset: 0.1578em;
|
64
64
|
}
|
65
65
|
@media print {
|
66
66
|
.govuk-link {
|
67
67
|
font-family: sans-serif;
|
68
68
|
}
|
69
69
|
}
|
70
|
+
.govuk-link {
|
71
|
+
text-decoration: underline;
|
72
|
+
text-decoration-thickness: max(1px, .0625rem);
|
73
|
+
text-underline-offset: 0.1578em;
|
74
|
+
}
|
70
75
|
.govuk-link:hover {
|
71
76
|
text-decoration-thickness: max(3px, .1875rem, .12em);
|
72
77
|
-webkit-text-decoration-skip-ink: none;
|
@@ -185,20 +190,17 @@
|
|
185
190
|
font-family: "Open Sans", sans-serif;
|
186
191
|
-webkit-font-smoothing: antialiased;
|
187
192
|
-moz-osx-font-smoothing: grayscale;
|
188
|
-
font-weight: 400;
|
189
|
-
font-size: 1rem;
|
190
|
-
line-height: 1.25;
|
191
|
-
color: #0b0c0c;
|
192
|
-
margin-top: 0;
|
193
|
-
margin-bottom: 15px;
|
194
|
-
padding-left: 0;
|
195
|
-
list-style-type: none;
|
196
193
|
}
|
197
194
|
@media print {
|
198
195
|
.govuk-list {
|
199
196
|
font-family: sans-serif;
|
200
197
|
}
|
201
198
|
}
|
199
|
+
.govuk-list {
|
200
|
+
font-weight: 400;
|
201
|
+
font-size: 1rem;
|
202
|
+
line-height: 1.25;
|
203
|
+
}
|
202
204
|
@media (min-width: 40.0625em) {
|
203
205
|
.govuk-list {
|
204
206
|
font-size: 1.1875rem;
|
@@ -211,16 +213,27 @@
|
|
211
213
|
line-height: 1.15;
|
212
214
|
}
|
213
215
|
}
|
216
|
+
.govuk-list {
|
217
|
+
color: #0b0c0c;
|
218
|
+
}
|
214
219
|
@media print {
|
215
220
|
.govuk-list {
|
216
221
|
color: #000000;
|
217
222
|
}
|
218
223
|
}
|
224
|
+
.govuk-list {
|
225
|
+
margin-top: 0;
|
226
|
+
margin-bottom: 15px;
|
227
|
+
}
|
219
228
|
@media (min-width: 40.0625em) {
|
220
229
|
.govuk-list {
|
221
230
|
margin-bottom: 20px;
|
222
231
|
}
|
223
232
|
}
|
233
|
+
.govuk-list {
|
234
|
+
padding-left: 0;
|
235
|
+
list-style-type: none;
|
236
|
+
}
|
224
237
|
.govuk-list .govuk-list {
|
225
238
|
margin-top: 10px;
|
226
239
|
}
|
@@ -262,26 +275,27 @@
|
|
262
275
|
|
263
276
|
.govuk-heading-xl {
|
264
277
|
color: #0b0c0c;
|
265
|
-
font-family: "Open Sans", sans-serif;
|
266
|
-
-webkit-font-smoothing: antialiased;
|
267
|
-
-moz-osx-font-smoothing: grayscale;
|
268
|
-
font-weight: 700;
|
269
|
-
font-size: 2rem;
|
270
|
-
line-height: 1.09375;
|
271
|
-
display: block;
|
272
|
-
margin-top: 0;
|
273
|
-
margin-bottom: 30px;
|
274
278
|
}
|
275
279
|
@media print {
|
276
280
|
.govuk-heading-xl {
|
277
281
|
color: #000000;
|
278
282
|
}
|
279
283
|
}
|
284
|
+
.govuk-heading-xl {
|
285
|
+
font-family: "Open Sans", sans-serif;
|
286
|
+
-webkit-font-smoothing: antialiased;
|
287
|
+
-moz-osx-font-smoothing: grayscale;
|
288
|
+
}
|
280
289
|
@media print {
|
281
290
|
.govuk-heading-xl {
|
282
291
|
font-family: sans-serif;
|
283
292
|
}
|
284
293
|
}
|
294
|
+
.govuk-heading-xl {
|
295
|
+
font-weight: 700;
|
296
|
+
font-size: 2rem;
|
297
|
+
line-height: 1.09375;
|
298
|
+
}
|
285
299
|
@media (min-width: 40.0625em) {
|
286
300
|
.govuk-heading-xl {
|
287
301
|
font-size: 3rem;
|
@@ -294,6 +308,11 @@
|
|
294
308
|
line-height: 1.15;
|
295
309
|
}
|
296
310
|
}
|
311
|
+
.govuk-heading-xl {
|
312
|
+
display: block;
|
313
|
+
margin-top: 0;
|
314
|
+
margin-bottom: 30px;
|
315
|
+
}
|
297
316
|
@media (min-width: 40.0625em) {
|
298
317
|
.govuk-heading-xl {
|
299
318
|
margin-bottom: 50px;
|
@@ -302,26 +321,27 @@
|
|
302
321
|
|
303
322
|
.govuk-heading-l {
|
304
323
|
color: #0b0c0c;
|
305
|
-
font-family: "Open Sans", sans-serif;
|
306
|
-
-webkit-font-smoothing: antialiased;
|
307
|
-
-moz-osx-font-smoothing: grayscale;
|
308
|
-
font-weight: 700;
|
309
|
-
font-size: 1.5rem;
|
310
|
-
line-height: 1.0416666667;
|
311
|
-
display: block;
|
312
|
-
margin-top: 0;
|
313
|
-
margin-bottom: 20px;
|
314
324
|
}
|
315
325
|
@media print {
|
316
326
|
.govuk-heading-l {
|
317
327
|
color: #000000;
|
318
328
|
}
|
319
329
|
}
|
330
|
+
.govuk-heading-l {
|
331
|
+
font-family: "Open Sans", sans-serif;
|
332
|
+
-webkit-font-smoothing: antialiased;
|
333
|
+
-moz-osx-font-smoothing: grayscale;
|
334
|
+
}
|
320
335
|
@media print {
|
321
336
|
.govuk-heading-l {
|
322
337
|
font-family: sans-serif;
|
323
338
|
}
|
324
339
|
}
|
340
|
+
.govuk-heading-l {
|
341
|
+
font-weight: 700;
|
342
|
+
font-size: 1.5rem;
|
343
|
+
line-height: 1.0416666667;
|
344
|
+
}
|
325
345
|
@media (min-width: 40.0625em) {
|
326
346
|
.govuk-heading-l {
|
327
347
|
font-size: 2.25rem;
|
@@ -334,6 +354,11 @@
|
|
334
354
|
line-height: 1.05;
|
335
355
|
}
|
336
356
|
}
|
357
|
+
.govuk-heading-l {
|
358
|
+
display: block;
|
359
|
+
margin-top: 0;
|
360
|
+
margin-bottom: 20px;
|
361
|
+
}
|
337
362
|
@media (min-width: 40.0625em) {
|
338
363
|
.govuk-heading-l {
|
339
364
|
margin-bottom: 30px;
|
@@ -342,26 +367,27 @@
|
|
342
367
|
|
343
368
|
.govuk-heading-m {
|
344
369
|
color: #0b0c0c;
|
345
|
-
font-family: "Open Sans", sans-serif;
|
346
|
-
-webkit-font-smoothing: antialiased;
|
347
|
-
-moz-osx-font-smoothing: grayscale;
|
348
|
-
font-weight: 700;
|
349
|
-
font-size: 1.125rem;
|
350
|
-
line-height: 1.1111111111;
|
351
|
-
display: block;
|
352
|
-
margin-top: 0;
|
353
|
-
margin-bottom: 15px;
|
354
370
|
}
|
355
371
|
@media print {
|
356
372
|
.govuk-heading-m {
|
357
373
|
color: #000000;
|
358
374
|
}
|
359
375
|
}
|
376
|
+
.govuk-heading-m {
|
377
|
+
font-family: "Open Sans", sans-serif;
|
378
|
+
-webkit-font-smoothing: antialiased;
|
379
|
+
-moz-osx-font-smoothing: grayscale;
|
380
|
+
}
|
360
381
|
@media print {
|
361
382
|
.govuk-heading-m {
|
362
383
|
font-family: sans-serif;
|
363
384
|
}
|
364
385
|
}
|
386
|
+
.govuk-heading-m {
|
387
|
+
font-weight: 700;
|
388
|
+
font-size: 1.125rem;
|
389
|
+
line-height: 1.1111111111;
|
390
|
+
}
|
365
391
|
@media (min-width: 40.0625em) {
|
366
392
|
.govuk-heading-m {
|
367
393
|
font-size: 1.5rem;
|
@@ -374,6 +400,11 @@
|
|
374
400
|
line-height: 1.15;
|
375
401
|
}
|
376
402
|
}
|
403
|
+
.govuk-heading-m {
|
404
|
+
display: block;
|
405
|
+
margin-top: 0;
|
406
|
+
margin-bottom: 15px;
|
407
|
+
}
|
377
408
|
@media (min-width: 40.0625em) {
|
378
409
|
.govuk-heading-m {
|
379
410
|
margin-bottom: 20px;
|
@@ -382,26 +413,27 @@
|
|
382
413
|
|
383
414
|
.govuk-heading-s {
|
384
415
|
color: #0b0c0c;
|
385
|
-
font-family: "Open Sans", sans-serif;
|
386
|
-
-webkit-font-smoothing: antialiased;
|
387
|
-
-moz-osx-font-smoothing: grayscale;
|
388
|
-
font-weight: 700;
|
389
|
-
font-size: 1rem;
|
390
|
-
line-height: 1.25;
|
391
|
-
display: block;
|
392
|
-
margin-top: 0;
|
393
|
-
margin-bottom: 15px;
|
394
416
|
}
|
395
417
|
@media print {
|
396
418
|
.govuk-heading-s {
|
397
419
|
color: #000000;
|
398
420
|
}
|
399
421
|
}
|
422
|
+
.govuk-heading-s {
|
423
|
+
font-family: "Open Sans", sans-serif;
|
424
|
+
-webkit-font-smoothing: antialiased;
|
425
|
+
-moz-osx-font-smoothing: grayscale;
|
426
|
+
}
|
400
427
|
@media print {
|
401
428
|
.govuk-heading-s {
|
402
429
|
font-family: sans-serif;
|
403
430
|
}
|
404
431
|
}
|
432
|
+
.govuk-heading-s {
|
433
|
+
font-weight: 700;
|
434
|
+
font-size: 1rem;
|
435
|
+
line-height: 1.25;
|
436
|
+
}
|
405
437
|
@media (min-width: 40.0625em) {
|
406
438
|
.govuk-heading-s {
|
407
439
|
font-size: 1.1875rem;
|
@@ -414,6 +446,11 @@
|
|
414
446
|
line-height: 1.15;
|
415
447
|
}
|
416
448
|
}
|
449
|
+
.govuk-heading-s {
|
450
|
+
display: block;
|
451
|
+
margin-top: 0;
|
452
|
+
margin-bottom: 15px;
|
453
|
+
}
|
417
454
|
@media (min-width: 40.0625em) {
|
418
455
|
.govuk-heading-s {
|
419
456
|
margin-bottom: 20px;
|
@@ -424,18 +461,17 @@
|
|
424
461
|
font-family: "Open Sans", sans-serif;
|
425
462
|
-webkit-font-smoothing: antialiased;
|
426
463
|
-moz-osx-font-smoothing: grayscale;
|
427
|
-
font-weight: 400;
|
428
|
-
font-size: 1.125rem;
|
429
|
-
line-height: 1.1111111111;
|
430
|
-
display: block;
|
431
|
-
margin-bottom: 5px;
|
432
|
-
color: #505a5f;
|
433
464
|
}
|
434
465
|
@media print {
|
435
466
|
.govuk-caption-xl {
|
436
467
|
font-family: sans-serif;
|
437
468
|
}
|
438
469
|
}
|
470
|
+
.govuk-caption-xl {
|
471
|
+
font-weight: 400;
|
472
|
+
font-size: 1.125rem;
|
473
|
+
line-height: 1.1111111111;
|
474
|
+
}
|
439
475
|
@media (min-width: 40.0625em) {
|
440
476
|
.govuk-caption-xl {
|
441
477
|
font-size: 1.6875rem;
|
@@ -448,23 +484,27 @@
|
|
448
484
|
line-height: 1.15;
|
449
485
|
}
|
450
486
|
}
|
487
|
+
.govuk-caption-xl {
|
488
|
+
display: block;
|
489
|
+
margin-bottom: 5px;
|
490
|
+
color: #505a5f;
|
491
|
+
}
|
451
492
|
|
452
493
|
.govuk-caption-l {
|
453
494
|
font-family: "Open Sans", sans-serif;
|
454
495
|
-webkit-font-smoothing: antialiased;
|
455
496
|
-moz-osx-font-smoothing: grayscale;
|
456
|
-
font-weight: 400;
|
457
|
-
font-size: 1.125rem;
|
458
|
-
line-height: 1.1111111111;
|
459
|
-
display: block;
|
460
|
-
margin-bottom: 5px;
|
461
|
-
color: #505a5f;
|
462
497
|
}
|
463
498
|
@media print {
|
464
499
|
.govuk-caption-l {
|
465
500
|
font-family: sans-serif;
|
466
501
|
}
|
467
502
|
}
|
503
|
+
.govuk-caption-l {
|
504
|
+
font-weight: 400;
|
505
|
+
font-size: 1.125rem;
|
506
|
+
line-height: 1.1111111111;
|
507
|
+
}
|
468
508
|
@media (min-width: 40.0625em) {
|
469
509
|
.govuk-caption-l {
|
470
510
|
font-size: 1.5rem;
|
@@ -477,6 +517,11 @@
|
|
477
517
|
line-height: 1.15;
|
478
518
|
}
|
479
519
|
}
|
520
|
+
.govuk-caption-l {
|
521
|
+
display: block;
|
522
|
+
margin-bottom: 5px;
|
523
|
+
color: #505a5f;
|
524
|
+
}
|
480
525
|
@media (min-width: 40.0625em) {
|
481
526
|
.govuk-caption-l {
|
482
527
|
margin-bottom: 0;
|
@@ -487,17 +532,17 @@
|
|
487
532
|
font-family: "Open Sans", sans-serif;
|
488
533
|
-webkit-font-smoothing: antialiased;
|
489
534
|
-moz-osx-font-smoothing: grayscale;
|
490
|
-
font-weight: 400;
|
491
|
-
font-size: 1rem;
|
492
|
-
line-height: 1.25;
|
493
|
-
display: block;
|
494
|
-
color: #505a5f;
|
495
535
|
}
|
496
536
|
@media print {
|
497
537
|
.govuk-caption-m {
|
498
538
|
font-family: sans-serif;
|
499
539
|
}
|
500
540
|
}
|
541
|
+
.govuk-caption-m {
|
542
|
+
font-weight: 400;
|
543
|
+
font-size: 1rem;
|
544
|
+
line-height: 1.25;
|
545
|
+
}
|
501
546
|
@media (min-width: 40.0625em) {
|
502
547
|
.govuk-caption-m {
|
503
548
|
font-size: 1.1875rem;
|
@@ -510,28 +555,34 @@
|
|
510
555
|
line-height: 1.15;
|
511
556
|
}
|
512
557
|
}
|
558
|
+
.govuk-caption-m {
|
559
|
+
display: block;
|
560
|
+
color: #505a5f;
|
561
|
+
}
|
513
562
|
|
514
563
|
.govuk-body-lead, .govuk-body-l {
|
515
564
|
color: #0b0c0c;
|
516
|
-
font-family: "Open Sans", sans-serif;
|
517
|
-
-webkit-font-smoothing: antialiased;
|
518
|
-
-moz-osx-font-smoothing: grayscale;
|
519
|
-
font-weight: 400;
|
520
|
-
font-size: 1.125rem;
|
521
|
-
line-height: 1.1111111111;
|
522
|
-
margin-top: 0;
|
523
|
-
margin-bottom: 20px;
|
524
565
|
}
|
525
566
|
@media print {
|
526
567
|
.govuk-body-lead, .govuk-body-l {
|
527
568
|
color: #000000;
|
528
569
|
}
|
529
570
|
}
|
571
|
+
.govuk-body-lead, .govuk-body-l {
|
572
|
+
font-family: "Open Sans", sans-serif;
|
573
|
+
-webkit-font-smoothing: antialiased;
|
574
|
+
-moz-osx-font-smoothing: grayscale;
|
575
|
+
}
|
530
576
|
@media print {
|
531
577
|
.govuk-body-lead, .govuk-body-l {
|
532
578
|
font-family: sans-serif;
|
533
579
|
}
|
534
580
|
}
|
581
|
+
.govuk-body-lead, .govuk-body-l {
|
582
|
+
font-weight: 400;
|
583
|
+
font-size: 1.125rem;
|
584
|
+
line-height: 1.1111111111;
|
585
|
+
}
|
535
586
|
@media (min-width: 40.0625em) {
|
536
587
|
.govuk-body-lead, .govuk-body-l {
|
537
588
|
font-size: 1.5rem;
|
@@ -544,6 +595,10 @@
|
|
544
595
|
line-height: 1.15;
|
545
596
|
}
|
546
597
|
}
|
598
|
+
.govuk-body-lead, .govuk-body-l {
|
599
|
+
margin-top: 0;
|
600
|
+
margin-bottom: 20px;
|
601
|
+
}
|
547
602
|
@media (min-width: 40.0625em) {
|
548
603
|
.govuk-body-lead, .govuk-body-l {
|
549
604
|
margin-bottom: 30px;
|
@@ -552,25 +607,27 @@
|
|
552
607
|
|
553
608
|
.govuk-body, .govuk-body-m {
|
554
609
|
color: #0b0c0c;
|
555
|
-
font-family: "Open Sans", sans-serif;
|
556
|
-
-webkit-font-smoothing: antialiased;
|
557
|
-
-moz-osx-font-smoothing: grayscale;
|
558
|
-
font-weight: 400;
|
559
|
-
font-size: 1rem;
|
560
|
-
line-height: 1.25;
|
561
|
-
margin-top: 0;
|
562
|
-
margin-bottom: 15px;
|
563
610
|
}
|
564
611
|
@media print {
|
565
612
|
.govuk-body, .govuk-body-m {
|
566
613
|
color: #000000;
|
567
614
|
}
|
568
615
|
}
|
616
|
+
.govuk-body, .govuk-body-m {
|
617
|
+
font-family: "Open Sans", sans-serif;
|
618
|
+
-webkit-font-smoothing: antialiased;
|
619
|
+
-moz-osx-font-smoothing: grayscale;
|
620
|
+
}
|
569
621
|
@media print {
|
570
622
|
.govuk-body, .govuk-body-m {
|
571
623
|
font-family: sans-serif;
|
572
624
|
}
|
573
625
|
}
|
626
|
+
.govuk-body, .govuk-body-m {
|
627
|
+
font-weight: 400;
|
628
|
+
font-size: 1rem;
|
629
|
+
line-height: 1.25;
|
630
|
+
}
|
574
631
|
@media (min-width: 40.0625em) {
|
575
632
|
.govuk-body, .govuk-body-m {
|
576
633
|
font-size: 1.1875rem;
|
@@ -583,6 +640,10 @@
|
|
583
640
|
line-height: 1.15;
|
584
641
|
}
|
585
642
|
}
|
643
|
+
.govuk-body, .govuk-body-m {
|
644
|
+
margin-top: 0;
|
645
|
+
margin-bottom: 15px;
|
646
|
+
}
|
586
647
|
@media (min-width: 40.0625em) {
|
587
648
|
.govuk-body, .govuk-body-m {
|
588
649
|
margin-bottom: 20px;
|
@@ -591,25 +652,27 @@
|
|
591
652
|
|
592
653
|
.govuk-body-s {
|
593
654
|
color: #0b0c0c;
|
594
|
-
font-family: "Open Sans", sans-serif;
|
595
|
-
-webkit-font-smoothing: antialiased;
|
596
|
-
-moz-osx-font-smoothing: grayscale;
|
597
|
-
font-weight: 400;
|
598
|
-
font-size: 0.875rem;
|
599
|
-
line-height: 1.1428571429;
|
600
|
-
margin-top: 0;
|
601
|
-
margin-bottom: 15px;
|
602
655
|
}
|
603
656
|
@media print {
|
604
657
|
.govuk-body-s {
|
605
658
|
color: #000000;
|
606
659
|
}
|
607
660
|
}
|
661
|
+
.govuk-body-s {
|
662
|
+
font-family: "Open Sans", sans-serif;
|
663
|
+
-webkit-font-smoothing: antialiased;
|
664
|
+
-moz-osx-font-smoothing: grayscale;
|
665
|
+
}
|
608
666
|
@media print {
|
609
667
|
.govuk-body-s {
|
610
668
|
font-family: sans-serif;
|
611
669
|
}
|
612
670
|
}
|
671
|
+
.govuk-body-s {
|
672
|
+
font-weight: 400;
|
673
|
+
font-size: 0.875rem;
|
674
|
+
line-height: 1.1428571429;
|
675
|
+
}
|
613
676
|
@media (min-width: 40.0625em) {
|
614
677
|
.govuk-body-s {
|
615
678
|
font-size: 1rem;
|
@@ -622,6 +685,10 @@
|
|
622
685
|
line-height: 1.2;
|
623
686
|
}
|
624
687
|
}
|
688
|
+
.govuk-body-s {
|
689
|
+
margin-top: 0;
|
690
|
+
margin-bottom: 15px;
|
691
|
+
}
|
625
692
|
@media (min-width: 40.0625em) {
|
626
693
|
.govuk-body-s {
|
627
694
|
margin-bottom: 20px;
|
@@ -630,25 +697,27 @@
|
|
630
697
|
|
631
698
|
.govuk-body-xs {
|
632
699
|
color: #0b0c0c;
|
633
|
-
font-family: "Open Sans", sans-serif;
|
634
|
-
-webkit-font-smoothing: antialiased;
|
635
|
-
-moz-osx-font-smoothing: grayscale;
|
636
|
-
font-weight: 400;
|
637
|
-
font-size: 0.75rem;
|
638
|
-
line-height: 1.25;
|
639
|
-
margin-top: 0;
|
640
|
-
margin-bottom: 15px;
|
641
700
|
}
|
642
701
|
@media print {
|
643
702
|
.govuk-body-xs {
|
644
703
|
color: #000000;
|
645
704
|
}
|
646
705
|
}
|
706
|
+
.govuk-body-xs {
|
707
|
+
font-family: "Open Sans", sans-serif;
|
708
|
+
-webkit-font-smoothing: antialiased;
|
709
|
+
-moz-osx-font-smoothing: grayscale;
|
710
|
+
}
|
647
711
|
@media print {
|
648
712
|
.govuk-body-xs {
|
649
713
|
font-family: sans-serif;
|
650
714
|
}
|
651
715
|
}
|
716
|
+
.govuk-body-xs {
|
717
|
+
font-weight: 400;
|
718
|
+
font-size: 0.75rem;
|
719
|
+
line-height: 1.25;
|
720
|
+
}
|
652
721
|
@media (min-width: 40.0625em) {
|
653
722
|
.govuk-body-xs {
|
654
723
|
font-size: 0.875rem;
|
@@ -661,6 +730,10 @@
|
|
661
730
|
line-height: 1.2;
|
662
731
|
}
|
663
732
|
}
|
733
|
+
.govuk-body-xs {
|
734
|
+
margin-top: 0;
|
735
|
+
margin-bottom: 15px;
|
736
|
+
}
|
664
737
|
@media (min-width: 40.0625em) {
|
665
738
|
.govuk-body-xs {
|
666
739
|
margin-bottom: 20px;
|
@@ -718,13 +791,15 @@
|
|
718
791
|
|
719
792
|
.govuk-section-break--xl {
|
720
793
|
margin-top: 30px;
|
721
|
-
margin-bottom: 30px;
|
722
794
|
}
|
723
795
|
@media (min-width: 40.0625em) {
|
724
796
|
.govuk-section-break--xl {
|
725
797
|
margin-top: 50px;
|
726
798
|
}
|
727
799
|
}
|
800
|
+
.govuk-section-break--xl {
|
801
|
+
margin-bottom: 30px;
|
802
|
+
}
|
728
803
|
@media (min-width: 40.0625em) {
|
729
804
|
.govuk-section-break--xl {
|
730
805
|
margin-bottom: 50px;
|
@@ -733,13 +808,15 @@
|
|
733
808
|
|
734
809
|
.govuk-section-break--l {
|
735
810
|
margin-top: 20px;
|
736
|
-
margin-bottom: 20px;
|
737
811
|
}
|
738
812
|
@media (min-width: 40.0625em) {
|
739
813
|
.govuk-section-break--l {
|
740
814
|
margin-top: 30px;
|
741
815
|
}
|
742
816
|
}
|
817
|
+
.govuk-section-break--l {
|
818
|
+
margin-bottom: 20px;
|
819
|
+
}
|
743
820
|
@media (min-width: 40.0625em) {
|
744
821
|
.govuk-section-break--l {
|
745
822
|
margin-bottom: 30px;
|
@@ -748,13 +825,15 @@
|
|
748
825
|
|
749
826
|
.govuk-section-break--m {
|
750
827
|
margin-top: 15px;
|
751
|
-
margin-bottom: 15px;
|
752
828
|
}
|
753
829
|
@media (min-width: 40.0625em) {
|
754
830
|
.govuk-section-break--m {
|
755
831
|
margin-top: 20px;
|
756
832
|
}
|
757
833
|
}
|
834
|
+
.govuk-section-break--m {
|
835
|
+
margin-bottom: 15px;
|
836
|
+
}
|
758
837
|
@media (min-width: 40.0625em) {
|
759
838
|
.govuk-section-break--m {
|
760
839
|
margin-bottom: 20px;
|
@@ -819,33 +898,32 @@
|
|
819
898
|
|
820
899
|
.govuk-button-group {
|
821
900
|
margin-bottom: 5px;
|
822
|
-
display: flex;
|
823
|
-
flex-direction: column;
|
824
|
-
align-items: center;
|
825
901
|
}
|
826
902
|
@media (min-width: 40.0625em) {
|
827
903
|
.govuk-button-group {
|
828
904
|
margin-bottom: 15px;
|
829
905
|
}
|
830
906
|
}
|
907
|
+
.govuk-button-group {
|
908
|
+
display: flex;
|
909
|
+
flex-direction: column;
|
910
|
+
align-items: center;
|
911
|
+
}
|
831
912
|
.govuk-button-group .govuk-link {
|
832
913
|
font-family: "Open Sans", sans-serif;
|
833
914
|
-webkit-font-smoothing: antialiased;
|
834
915
|
-moz-osx-font-smoothing: grayscale;
|
835
|
-
font-weight: 400;
|
836
|
-
font-size: 1rem;
|
837
|
-
line-height: 1.1875;
|
838
|
-
display: inline-block;
|
839
|
-
max-width: 100%;
|
840
|
-
margin-top: 5px;
|
841
|
-
margin-bottom: 20px;
|
842
|
-
text-align: center;
|
843
916
|
}
|
844
917
|
@media print {
|
845
918
|
.govuk-button-group .govuk-link {
|
846
919
|
font-family: sans-serif;
|
847
920
|
}
|
848
921
|
}
|
922
|
+
.govuk-button-group .govuk-link {
|
923
|
+
font-weight: 400;
|
924
|
+
font-size: 1rem;
|
925
|
+
line-height: 1.1875;
|
926
|
+
}
|
849
927
|
@media (min-width: 40.0625em) {
|
850
928
|
.govuk-button-group .govuk-link {
|
851
929
|
font-size: 1.1875rem;
|
@@ -858,6 +936,13 @@
|
|
858
936
|
line-height: 19px;
|
859
937
|
}
|
860
938
|
}
|
939
|
+
.govuk-button-group .govuk-link {
|
940
|
+
display: inline-block;
|
941
|
+
max-width: 100%;
|
942
|
+
margin-top: 5px;
|
943
|
+
margin-bottom: 20px;
|
944
|
+
text-align: center;
|
945
|
+
}
|
861
946
|
.govuk-button-group .govuk-button {
|
862
947
|
margin-bottom: 17px;
|
863
948
|
}
|
@@ -925,14 +1010,14 @@
|
|
925
1010
|
|
926
1011
|
|
927
1012
|
|
928
|
-
.govuk-form-group {
|
929
|
-
margin-bottom: 20px;
|
930
|
-
}
|
931
1013
|
.govuk-form-group::after {
|
932
1014
|
content: "";
|
933
1015
|
display: block;
|
934
1016
|
clear: both;
|
935
1017
|
}
|
1018
|
+
.govuk-form-group {
|
1019
|
+
margin-bottom: 20px;
|
1020
|
+
}
|
936
1021
|
@media (min-width: 40.0625em) {
|
937
1022
|
.govuk-form-group {
|
938
1023
|
margin-bottom: 30px;
|
@@ -999,15 +1084,15 @@
|
|
999
1084
|
|
1000
1085
|
|
1001
1086
|
|
1002
|
-
.govuk-grid-row {
|
1003
|
-
margin-right: -15px;
|
1004
|
-
margin-left: -15px;
|
1005
|
-
}
|
1006
1087
|
.govuk-grid-row::after {
|
1007
1088
|
content: "";
|
1008
1089
|
display: block;
|
1009
1090
|
clear: both;
|
1010
1091
|
}
|
1092
|
+
.govuk-grid-row {
|
1093
|
+
margin-right: -15px;
|
1094
|
+
margin-left: -15px;
|
1095
|
+
}
|
1011
1096
|
|
1012
1097
|
.govuk-grid-column-one-quarter {
|
1013
1098
|
box-sizing: border-box;
|
@@ -1268,14 +1353,16 @@
|
|
1268
1353
|
|
1269
1354
|
.govuk-template {
|
1270
1355
|
background-color: #f3f2f1;
|
1271
|
-
-webkit-text-size-adjust: 100%;
|
1272
|
-
-moz-text-size-adjust: 100%;
|
1273
|
-
text-size-adjust: 100%;
|
1274
1356
|
}
|
1275
1357
|
.govuk-template--rebranded {
|
1276
1358
|
background-color: #f4f8fb;
|
1277
1359
|
}
|
1278
1360
|
|
1361
|
+
.govuk-template {
|
1362
|
+
-webkit-text-size-adjust: 100%;
|
1363
|
+
-moz-text-size-adjust: 100%;
|
1364
|
+
text-size-adjust: 100%;
|
1365
|
+
}
|
1279
1366
|
@supports (position: -webkit-sticky) or (position: sticky) {
|
1280
1367
|
.govuk-template {
|
1281
1368
|
scroll-padding-top: 60px;
|
@@ -1385,20 +1472,17 @@
|
|
1385
1472
|
font-family: "Open Sans", sans-serif;
|
1386
1473
|
-webkit-font-smoothing: antialiased;
|
1387
1474
|
-moz-osx-font-smoothing: grayscale;
|
1388
|
-
font-weight: 700;
|
1389
|
-
font-size: 1rem;
|
1390
|
-
line-height: 1.25;
|
1391
|
-
display: block;
|
1392
|
-
margin-top: 0;
|
1393
|
-
margin-bottom: 15px;
|
1394
|
-
clear: both;
|
1395
|
-
color: #d4351c;
|
1396
1475
|
}
|
1397
1476
|
@media print {
|
1398
1477
|
.govuk-error-message {
|
1399
1478
|
font-family: sans-serif;
|
1400
1479
|
}
|
1401
1480
|
}
|
1481
|
+
.govuk-error-message {
|
1482
|
+
font-weight: 700;
|
1483
|
+
font-size: 1rem;
|
1484
|
+
line-height: 1.25;
|
1485
|
+
}
|
1402
1486
|
@media (min-width: 40.0625em) {
|
1403
1487
|
.govuk-error-message {
|
1404
1488
|
font-size: 1.1875rem;
|
@@ -1411,6 +1495,13 @@
|
|
1411
1495
|
line-height: 1.15;
|
1412
1496
|
}
|
1413
1497
|
}
|
1498
|
+
.govuk-error-message {
|
1499
|
+
display: block;
|
1500
|
+
margin-top: 0;
|
1501
|
+
margin-bottom: 15px;
|
1502
|
+
clear: both;
|
1503
|
+
color: #d4351c;
|
1504
|
+
}
|
1414
1505
|
|
1415
1506
|
|
1416
1507
|
.govuk-fieldset {
|
@@ -1435,22 +1526,17 @@
|
|
1435
1526
|
font-family: "Open Sans", sans-serif;
|
1436
1527
|
-webkit-font-smoothing: antialiased;
|
1437
1528
|
-moz-osx-font-smoothing: grayscale;
|
1438
|
-
font-weight: 400;
|
1439
|
-
font-size: 1rem;
|
1440
|
-
line-height: 1.25;
|
1441
|
-
color: #0b0c0c;
|
1442
|
-
box-sizing: border-box;
|
1443
|
-
display: table;
|
1444
|
-
max-width: 100%;
|
1445
|
-
margin-bottom: 10px;
|
1446
|
-
padding: 0;
|
1447
|
-
white-space: normal;
|
1448
1529
|
}
|
1449
1530
|
@media print {
|
1450
1531
|
.govuk-fieldset__legend {
|
1451
1532
|
font-family: sans-serif;
|
1452
1533
|
}
|
1453
1534
|
}
|
1535
|
+
.govuk-fieldset__legend {
|
1536
|
+
font-weight: 400;
|
1537
|
+
font-size: 1rem;
|
1538
|
+
line-height: 1.25;
|
1539
|
+
}
|
1454
1540
|
@media (min-width: 40.0625em) {
|
1455
1541
|
.govuk-fieldset__legend {
|
1456
1542
|
font-size: 1.1875rem;
|
@@ -1463,11 +1549,22 @@
|
|
1463
1549
|
line-height: 1.15;
|
1464
1550
|
}
|
1465
1551
|
}
|
1552
|
+
.govuk-fieldset__legend {
|
1553
|
+
color: #0b0c0c;
|
1554
|
+
}
|
1466
1555
|
@media print {
|
1467
1556
|
.govuk-fieldset__legend {
|
1468
1557
|
color: #000000;
|
1469
1558
|
}
|
1470
1559
|
}
|
1560
|
+
.govuk-fieldset__legend {
|
1561
|
+
box-sizing: border-box;
|
1562
|
+
display: table;
|
1563
|
+
max-width: 100%;
|
1564
|
+
margin-bottom: 10px;
|
1565
|
+
padding: 0;
|
1566
|
+
white-space: normal;
|
1567
|
+
}
|
1471
1568
|
|
1472
1569
|
.govuk-fieldset__legend--xl,
|
1473
1570
|
.govuk-fieldset__legend--l,
|
@@ -1542,17 +1639,17 @@
|
|
1542
1639
|
font-family: "Open Sans", sans-serif;
|
1543
1640
|
-webkit-font-smoothing: antialiased;
|
1544
1641
|
-moz-osx-font-smoothing: grayscale;
|
1545
|
-
font-weight: 400;
|
1546
|
-
font-size: 1rem;
|
1547
|
-
line-height: 1.25;
|
1548
|
-
margin-bottom: 15px;
|
1549
|
-
color: #505a5f;
|
1550
1642
|
}
|
1551
1643
|
@media print {
|
1552
1644
|
.govuk-hint {
|
1553
1645
|
font-family: sans-serif;
|
1554
1646
|
}
|
1555
1647
|
}
|
1648
|
+
.govuk-hint {
|
1649
|
+
font-weight: 400;
|
1650
|
+
font-size: 1rem;
|
1651
|
+
line-height: 1.25;
|
1652
|
+
}
|
1556
1653
|
@media (min-width: 40.0625em) {
|
1557
1654
|
.govuk-hint {
|
1558
1655
|
font-size: 1.1875rem;
|
@@ -1565,6 +1662,10 @@
|
|
1565
1662
|
line-height: 1.15;
|
1566
1663
|
}
|
1567
1664
|
}
|
1665
|
+
.govuk-hint {
|
1666
|
+
margin-bottom: 15px;
|
1667
|
+
color: #505a5f;
|
1668
|
+
}
|
1568
1669
|
|
1569
1670
|
.govuk-label:not(.govuk-label--m):not(.govuk-label--l):not(.govuk-label--xl) + .govuk-hint {
|
1570
1671
|
margin-bottom: 10px;
|
@@ -1583,18 +1684,17 @@
|
|
1583
1684
|
font-family: "Open Sans", sans-serif;
|
1584
1685
|
-webkit-font-smoothing: antialiased;
|
1585
1686
|
-moz-osx-font-smoothing: grayscale;
|
1586
|
-
font-weight: 400;
|
1587
|
-
font-size: 1rem;
|
1588
|
-
line-height: 1.25;
|
1589
|
-
color: #0b0c0c;
|
1590
|
-
display: block;
|
1591
|
-
margin-bottom: 5px;
|
1592
1687
|
}
|
1593
1688
|
@media print {
|
1594
1689
|
.govuk-label {
|
1595
1690
|
font-family: sans-serif;
|
1596
1691
|
}
|
1597
1692
|
}
|
1693
|
+
.govuk-label {
|
1694
|
+
font-weight: 400;
|
1695
|
+
font-size: 1rem;
|
1696
|
+
line-height: 1.25;
|
1697
|
+
}
|
1598
1698
|
@media (min-width: 40.0625em) {
|
1599
1699
|
.govuk-label {
|
1600
1700
|
font-size: 1.1875rem;
|
@@ -1607,11 +1707,18 @@
|
|
1607
1707
|
line-height: 1.15;
|
1608
1708
|
}
|
1609
1709
|
}
|
1710
|
+
.govuk-label {
|
1711
|
+
color: #0b0c0c;
|
1712
|
+
}
|
1610
1713
|
@media print {
|
1611
1714
|
.govuk-label {
|
1612
1715
|
color: #000000;
|
1613
1716
|
}
|
1614
1717
|
}
|
1718
|
+
.govuk-label {
|
1719
|
+
display: block;
|
1720
|
+
margin-bottom: 5px;
|
1721
|
+
}
|
1615
1722
|
|
1616
1723
|
.govuk-label--xl,
|
1617
1724
|
.govuk-label--l,
|
@@ -1754,13 +1861,15 @@
|
|
1754
1861
|
border-width: 4px;
|
1755
1862
|
outline: 3px solid transparent;
|
1756
1863
|
outline-offset: 1px;
|
1757
|
-
box-shadow: 0 0 0 3px #ffdd00;
|
1758
1864
|
}
|
1759
1865
|
@media screen and (forced-colors: active), (-ms-high-contrast: active) {
|
1760
1866
|
.govuk-checkboxes__input:focus + .govuk-checkboxes__label::before {
|
1761
1867
|
outline-color: Highlight;
|
1762
1868
|
}
|
1763
1869
|
}
|
1870
|
+
.govuk-checkboxes__input:focus + .govuk-checkboxes__label::before {
|
1871
|
+
box-shadow: 0 0 0 3px #ffdd00;
|
1872
|
+
}
|
1764
1873
|
|
1765
1874
|
.govuk-checkboxes__input:checked + .govuk-checkboxes__label::after {
|
1766
1875
|
opacity: 1;
|
@@ -1780,19 +1889,17 @@
|
|
1780
1889
|
font-family: "Open Sans", sans-serif;
|
1781
1890
|
-webkit-font-smoothing: antialiased;
|
1782
1891
|
-moz-osx-font-smoothing: grayscale;
|
1783
|
-
font-weight: 400;
|
1784
|
-
font-size: 1rem;
|
1785
|
-
line-height: 1.25;
|
1786
|
-
color: #0b0c0c;
|
1787
|
-
width: 40px;
|
1788
|
-
margin-bottom: 10px;
|
1789
|
-
text-align: center;
|
1790
1892
|
}
|
1791
1893
|
@media print {
|
1792
1894
|
.govuk-checkboxes__divider {
|
1793
1895
|
font-family: sans-serif;
|
1794
1896
|
}
|
1795
1897
|
}
|
1898
|
+
.govuk-checkboxes__divider {
|
1899
|
+
font-weight: 400;
|
1900
|
+
font-size: 1rem;
|
1901
|
+
line-height: 1.25;
|
1902
|
+
}
|
1796
1903
|
@media (min-width: 40.0625em) {
|
1797
1904
|
.govuk-checkboxes__divider {
|
1798
1905
|
font-size: 1.1875rem;
|
@@ -1805,23 +1912,33 @@
|
|
1805
1912
|
line-height: 1.15;
|
1806
1913
|
}
|
1807
1914
|
}
|
1915
|
+
.govuk-checkboxes__divider {
|
1916
|
+
color: #0b0c0c;
|
1917
|
+
}
|
1808
1918
|
@media print {
|
1809
1919
|
.govuk-checkboxes__divider {
|
1810
1920
|
color: #000000;
|
1811
1921
|
}
|
1812
1922
|
}
|
1923
|
+
.govuk-checkboxes__divider {
|
1924
|
+
width: 40px;
|
1925
|
+
margin-bottom: 10px;
|
1926
|
+
text-align: center;
|
1927
|
+
}
|
1813
1928
|
|
1814
1929
|
.govuk-checkboxes__conditional {
|
1815
1930
|
margin-bottom: 15px;
|
1816
|
-
margin-left: 20px;
|
1817
|
-
padding-left: 35px;
|
1818
|
-
border-left: 4px solid #b1b4b6;
|
1819
1931
|
}
|
1820
1932
|
@media (min-width: 40.0625em) {
|
1821
1933
|
.govuk-checkboxes__conditional {
|
1822
1934
|
margin-bottom: 20px;
|
1823
1935
|
}
|
1824
1936
|
}
|
1937
|
+
.govuk-checkboxes__conditional {
|
1938
|
+
margin-left: 20px;
|
1939
|
+
padding-left: 35px;
|
1940
|
+
border-left: 4px solid #b1b4b6;
|
1941
|
+
}
|
1825
1942
|
.govuk-frontend-supported .govuk-checkboxes__conditional--hidden {
|
1826
1943
|
display: none;
|
1827
1944
|
}
|
@@ -1867,14 +1984,14 @@
|
|
1867
1984
|
outline-offset: 1px;
|
1868
1985
|
box-shadow: 0 0 0 10px #b1b4b6;
|
1869
1986
|
}
|
1870
|
-
.govuk-checkboxes--small .govuk-checkboxes__item:hover .govuk-checkboxes__input:focus + .govuk-checkboxes__label::before {
|
1871
|
-
box-shadow: 0 0 0 3px #ffdd00, 0 0 0 10px #b1b4b6;
|
1872
|
-
}
|
1873
1987
|
@media screen and (forced-colors: active), (-ms-high-contrast: active) {
|
1874
1988
|
.govuk-checkboxes--small .govuk-checkboxes__item:hover .govuk-checkboxes__input:focus + .govuk-checkboxes__label::before {
|
1875
1989
|
outline-color: Highlight;
|
1876
1990
|
}
|
1877
1991
|
}
|
1992
|
+
.govuk-checkboxes--small .govuk-checkboxes__item:hover .govuk-checkboxes__input:focus + .govuk-checkboxes__label::before {
|
1993
|
+
box-shadow: 0 0 0 3px #ffdd00, 0 0 0 10px #b1b4b6;
|
1994
|
+
}
|
1878
1995
|
@media (hover: none), (pointer: coarse) {
|
1879
1996
|
.govuk-checkboxes--small .govuk-checkboxes__item:hover .govuk-checkboxes__input:not(:disabled) + .govuk-checkboxes__label::before {
|
1880
1997
|
box-shadow: initial;
|
@@ -1883,34 +2000,27 @@
|
|
1883
2000
|
box-shadow: 0 0 0 3px #ffdd00;
|
1884
2001
|
}
|
1885
2002
|
}
|
1886
|
-
|
1887
|
-
|
1888
|
-
|
1889
|
-
|
1890
|
-
|
1891
|
-
|
1892
|
-
.govuk-input {
|
1893
|
-
font-family: "Open Sans", sans-serif;
|
1894
|
-
-webkit-font-smoothing: antialiased;
|
1895
|
-
-moz-osx-font-smoothing: grayscale;
|
1896
|
-
font-weight: 400;
|
1897
|
-
font-size: 1rem;
|
1898
|
-
line-height: 1.25;
|
1899
|
-
box-sizing: border-box;
|
1900
|
-
width: 100%;
|
1901
|
-
height: 2.5rem;
|
1902
|
-
margin-top: 0;
|
1903
|
-
padding: 5px;
|
1904
|
-
border: 2px solid #0b0c0c;
|
1905
|
-
border-radius: 0;
|
1906
|
-
-webkit-appearance: none;
|
1907
|
-
appearance: none;
|
2003
|
+
|
2004
|
+
|
2005
|
+
|
2006
|
+
|
2007
|
+
|
2008
|
+
|
2009
|
+
.govuk-input {
|
2010
|
+
font-family: "Open Sans", sans-serif;
|
2011
|
+
-webkit-font-smoothing: antialiased;
|
2012
|
+
-moz-osx-font-smoothing: grayscale;
|
1908
2013
|
}
|
1909
2014
|
@media print {
|
1910
2015
|
.govuk-input {
|
1911
2016
|
font-family: sans-serif;
|
1912
2017
|
}
|
1913
2018
|
}
|
2019
|
+
.govuk-input {
|
2020
|
+
font-weight: 400;
|
2021
|
+
font-size: 1rem;
|
2022
|
+
line-height: 1.25;
|
2023
|
+
}
|
1914
2024
|
@media (min-width: 40.0625em) {
|
1915
2025
|
.govuk-input {
|
1916
2026
|
font-size: 1.1875rem;
|
@@ -1923,6 +2033,17 @@
|
|
1923
2033
|
line-height: 1.15;
|
1924
2034
|
}
|
1925
2035
|
}
|
2036
|
+
.govuk-input {
|
2037
|
+
box-sizing: border-box;
|
2038
|
+
width: 100%;
|
2039
|
+
height: 2.5rem;
|
2040
|
+
margin-top: 0;
|
2041
|
+
padding: 5px;
|
2042
|
+
border: 2px solid #0b0c0c;
|
2043
|
+
border-radius: 0;
|
2044
|
+
-webkit-appearance: none;
|
2045
|
+
appearance: none;
|
2046
|
+
}
|
1926
2047
|
.govuk-input:focus {
|
1927
2048
|
outline: 3px solid #ffdd00;
|
1928
2049
|
outline-offset: 0;
|
@@ -2008,22 +2129,6 @@
|
|
2008
2129
|
font-family: "Open Sans", sans-serif;
|
2009
2130
|
-webkit-font-smoothing: antialiased;
|
2010
2131
|
-moz-osx-font-smoothing: grayscale;
|
2011
|
-
font-weight: 400;
|
2012
|
-
font-size: 1rem;
|
2013
|
-
line-height: 1.25;
|
2014
|
-
box-sizing: border-box;
|
2015
|
-
display: flex;
|
2016
|
-
align-items: center;
|
2017
|
-
justify-content: center;
|
2018
|
-
min-width: 2.5rem;
|
2019
|
-
height: 2.5rem;
|
2020
|
-
padding: 5px;
|
2021
|
-
border: 2px solid #0b0c0c;
|
2022
|
-
background-color: #f3f2f1;
|
2023
|
-
text-align: center;
|
2024
|
-
white-space: nowrap;
|
2025
|
-
cursor: default;
|
2026
|
-
flex: 0 0 auto;
|
2027
2132
|
}
|
2028
2133
|
@media print {
|
2029
2134
|
.govuk-input__prefix,
|
@@ -2031,6 +2136,12 @@
|
|
2031
2136
|
font-family: sans-serif;
|
2032
2137
|
}
|
2033
2138
|
}
|
2139
|
+
.govuk-input__prefix,
|
2140
|
+
.govuk-input__suffix {
|
2141
|
+
font-weight: 400;
|
2142
|
+
font-size: 1rem;
|
2143
|
+
line-height: 1.25;
|
2144
|
+
}
|
2034
2145
|
@media (min-width: 40.0625em) {
|
2035
2146
|
.govuk-input__prefix,
|
2036
2147
|
.govuk-input__suffix {
|
@@ -2045,6 +2156,22 @@
|
|
2045
2156
|
line-height: 1.15;
|
2046
2157
|
}
|
2047
2158
|
}
|
2159
|
+
.govuk-input__prefix,
|
2160
|
+
.govuk-input__suffix {
|
2161
|
+
box-sizing: border-box;
|
2162
|
+
display: flex;
|
2163
|
+
align-items: center;
|
2164
|
+
justify-content: center;
|
2165
|
+
min-width: 2.5rem;
|
2166
|
+
height: 2.5rem;
|
2167
|
+
padding: 5px;
|
2168
|
+
border: 2px solid #0b0c0c;
|
2169
|
+
background-color: #f3f2f1;
|
2170
|
+
text-align: center;
|
2171
|
+
white-space: nowrap;
|
2172
|
+
cursor: default;
|
2173
|
+
flex: 0 0 auto;
|
2174
|
+
}
|
2048
2175
|
@media (max-width: 19.99em) {
|
2049
2176
|
.govuk-input__prefix,
|
2050
2177
|
.govuk-input__suffix {
|
@@ -2080,14 +2207,14 @@
|
|
2080
2207
|
|
2081
2208
|
|
2082
2209
|
|
2083
|
-
.govuk-date-input {
|
2084
|
-
font-size: 0;
|
2085
|
-
}
|
2086
2210
|
.govuk-date-input::after {
|
2087
2211
|
content: "";
|
2088
2212
|
display: block;
|
2089
2213
|
clear: both;
|
2090
2214
|
}
|
2215
|
+
.govuk-date-input {
|
2216
|
+
font-size: 0;
|
2217
|
+
}
|
2091
2218
|
|
2092
2219
|
.govuk-date-input__item {
|
2093
2220
|
display: inline-block;
|
@@ -2110,19 +2237,17 @@
|
|
2110
2237
|
font-family: "Open Sans", sans-serif;
|
2111
2238
|
-webkit-font-smoothing: antialiased;
|
2112
2239
|
-moz-osx-font-smoothing: grayscale;
|
2113
|
-
font-weight: 400;
|
2114
|
-
font-size: 1rem;
|
2115
|
-
line-height: 1.25;
|
2116
|
-
color: #0b0c0c;
|
2117
|
-
padding: 15px;
|
2118
|
-
margin-bottom: 30px;
|
2119
|
-
border: 5px solid #d4351c;
|
2120
2240
|
}
|
2121
2241
|
@media print {
|
2122
2242
|
.govuk-error-summary {
|
2123
2243
|
font-family: sans-serif;
|
2124
2244
|
}
|
2125
2245
|
}
|
2246
|
+
.govuk-error-summary {
|
2247
|
+
font-weight: 400;
|
2248
|
+
font-size: 1rem;
|
2249
|
+
line-height: 1.25;
|
2250
|
+
}
|
2126
2251
|
@media (min-width: 40.0625em) {
|
2127
2252
|
.govuk-error-summary {
|
2128
2253
|
font-size: 1.1875rem;
|
@@ -2135,21 +2260,33 @@
|
|
2135
2260
|
line-height: 1.15;
|
2136
2261
|
}
|
2137
2262
|
}
|
2263
|
+
.govuk-error-summary {
|
2264
|
+
color: #0b0c0c;
|
2265
|
+
}
|
2138
2266
|
@media print {
|
2139
2267
|
.govuk-error-summary {
|
2140
2268
|
color: #000000;
|
2141
2269
|
}
|
2142
2270
|
}
|
2271
|
+
.govuk-error-summary {
|
2272
|
+
padding: 15px;
|
2273
|
+
}
|
2143
2274
|
@media (min-width: 40.0625em) {
|
2144
2275
|
.govuk-error-summary {
|
2145
2276
|
padding: 20px;
|
2146
2277
|
}
|
2147
2278
|
}
|
2279
|
+
.govuk-error-summary {
|
2280
|
+
margin-bottom: 30px;
|
2281
|
+
}
|
2148
2282
|
@media (min-width: 40.0625em) {
|
2149
2283
|
.govuk-error-summary {
|
2150
2284
|
margin-bottom: 50px;
|
2151
2285
|
}
|
2152
2286
|
}
|
2287
|
+
.govuk-error-summary {
|
2288
|
+
border: 5px solid #d4351c;
|
2289
|
+
}
|
2153
2290
|
.govuk-error-summary:focus {
|
2154
2291
|
outline: 3px solid #ffdd00;
|
2155
2292
|
}
|
@@ -2157,9 +2294,6 @@
|
|
2157
2294
|
.govuk-error-summary__title {
|
2158
2295
|
font-size: 1.125rem;
|
2159
2296
|
line-height: 1.1111111111;
|
2160
|
-
font-weight: 700;
|
2161
|
-
margin-top: 0;
|
2162
|
-
margin-bottom: 15px;
|
2163
2297
|
}
|
2164
2298
|
@media (min-width: 40.0625em) {
|
2165
2299
|
.govuk-error-summary__title {
|
@@ -2173,6 +2307,11 @@
|
|
2173
2307
|
line-height: 1.15;
|
2174
2308
|
}
|
2175
2309
|
}
|
2310
|
+
.govuk-error-summary__title {
|
2311
|
+
font-weight: 700;
|
2312
|
+
margin-top: 0;
|
2313
|
+
margin-bottom: 15px;
|
2314
|
+
}
|
2176
2315
|
@media (min-width: 40.0625em) {
|
2177
2316
|
.govuk-error-summary__title {
|
2178
2317
|
margin-bottom: 20px;
|
@@ -2207,15 +2346,17 @@
|
|
2207
2346
|
font-family: "Open Sans", sans-serif;
|
2208
2347
|
-webkit-font-smoothing: antialiased;
|
2209
2348
|
-moz-osx-font-smoothing: grayscale;
|
2210
|
-
text-decoration: underline;
|
2211
|
-
text-decoration-thickness: max(1px, .0625rem);
|
2212
|
-
text-underline-offset: 0.1578em;
|
2213
2349
|
}
|
2214
2350
|
@media print {
|
2215
2351
|
.govuk-error-summary__list a {
|
2216
2352
|
font-family: sans-serif;
|
2217
2353
|
}
|
2218
2354
|
}
|
2355
|
+
.govuk-error-summary__list a {
|
2356
|
+
text-decoration: underline;
|
2357
|
+
text-decoration-thickness: max(1px, .0625rem);
|
2358
|
+
text-underline-offset: 0.1578em;
|
2359
|
+
}
|
2219
2360
|
.govuk-error-summary__list a:hover {
|
2220
2361
|
text-decoration-thickness: max(3px, .1875rem, .12em);
|
2221
2362
|
-webkit-text-decoration-skip-ink: none;
|
@@ -2258,19 +2399,17 @@
|
|
2258
2399
|
font-family: "Open Sans", sans-serif;
|
2259
2400
|
-webkit-font-smoothing: antialiased;
|
2260
2401
|
-moz-osx-font-smoothing: grayscale;
|
2261
|
-
font-weight: 400;
|
2262
|
-
font-size: 1rem;
|
2263
|
-
line-height: 1.25;
|
2264
|
-
color: #0b0c0c;
|
2265
|
-
max-width: 100%;
|
2266
|
-
margin-left: -5px;
|
2267
|
-
padding: 5px;
|
2268
2402
|
}
|
2269
2403
|
@media print {
|
2270
2404
|
.govuk-file-upload {
|
2271
2405
|
font-family: sans-serif;
|
2272
2406
|
}
|
2273
2407
|
}
|
2408
|
+
.govuk-file-upload {
|
2409
|
+
font-weight: 400;
|
2410
|
+
font-size: 1rem;
|
2411
|
+
line-height: 1.25;
|
2412
|
+
}
|
2274
2413
|
@media (min-width: 40.0625em) {
|
2275
2414
|
.govuk-file-upload {
|
2276
2415
|
font-size: 1.1875rem;
|
@@ -2283,11 +2422,19 @@
|
|
2283
2422
|
line-height: 1.15;
|
2284
2423
|
}
|
2285
2424
|
}
|
2425
|
+
.govuk-file-upload {
|
2426
|
+
color: #0b0c0c;
|
2427
|
+
}
|
2286
2428
|
@media print {
|
2287
2429
|
.govuk-file-upload {
|
2288
2430
|
color: #000000;
|
2289
2431
|
}
|
2290
2432
|
}
|
2433
|
+
.govuk-file-upload {
|
2434
|
+
max-width: 100%;
|
2435
|
+
margin-left: -5px;
|
2436
|
+
padding: 5px;
|
2437
|
+
}
|
2291
2438
|
.govuk-file-upload::-webkit-file-upload-button {
|
2292
2439
|
-webkit-appearance: button;
|
2293
2440
|
color: inherit;
|
@@ -2360,19 +2507,19 @@
|
|
2360
2507
|
background-color: #ffffff;
|
2361
2508
|
}
|
2362
2509
|
.govuk-file-upload-button:hover {
|
2363
|
-
background-color:
|
2510
|
+
background-color: #c1c3c5;
|
2364
2511
|
}
|
2365
2512
|
.govuk-file-upload-button:hover .govuk-file-upload-button__pseudo-button {
|
2366
|
-
background-color:
|
2513
|
+
background-color: #dbdad9;
|
2367
2514
|
}
|
2368
2515
|
.govuk-file-upload-button:hover .govuk-file-upload-button__status {
|
2369
|
-
background-color:
|
2516
|
+
background-color: #d2e2f1;
|
2370
2517
|
}
|
2371
2518
|
.govuk-file-upload-button:active, .govuk-file-upload-button:focus {
|
2372
2519
|
border: 2px solid #0b0c0c;
|
2373
2520
|
outline: 3px solid #ffdd00;
|
2374
2521
|
outline-offset: 0;
|
2375
|
-
background-color:
|
2522
|
+
background-color: #c1c3c5;
|
2376
2523
|
box-shadow: inset 0 0 0 2px;
|
2377
2524
|
}
|
2378
2525
|
.govuk-file-upload-button:active .govuk-file-upload-button__pseudo-button, .govuk-file-upload-button:focus .govuk-file-upload-button__pseudo-button {
|
@@ -2394,14 +2541,14 @@
|
|
2394
2541
|
background-color: #f3f2f1;
|
2395
2542
|
}
|
2396
2543
|
.govuk-file-upload-button--empty .govuk-file-upload-button__status {
|
2397
|
-
color:
|
2398
|
-
background-color:
|
2544
|
+
color: #0c2d4a;
|
2545
|
+
background-color: #bbd4ea;
|
2399
2546
|
}
|
2400
2547
|
.govuk-file-upload-button--empty:hover, .govuk-file-upload-button--empty:focus, .govuk-file-upload-button--empty:active {
|
2401
2548
|
background-color: #f3f2f1;
|
2402
2549
|
}
|
2403
2550
|
.govuk-file-upload-button--empty:hover .govuk-file-upload-button__status, .govuk-file-upload-button--empty:focus .govuk-file-upload-button__status, .govuk-file-upload-button--empty:active .govuk-file-upload-button__status {
|
2404
|
-
background-color:
|
2551
|
+
background-color: #d2e2f1;
|
2405
2552
|
}
|
2406
2553
|
|
2407
2554
|
.govuk-file-upload-button--dragging {
|
@@ -2409,7 +2556,7 @@
|
|
2409
2556
|
border-color: #0b0c0c;
|
2410
2557
|
}
|
2411
2558
|
.govuk-file-upload-button--dragging.govuk-file-upload-button {
|
2412
|
-
background-color:
|
2559
|
+
background-color: #c1c3c5;
|
2413
2560
|
}
|
2414
2561
|
.govuk-file-upload-button--dragging.govuk-file-upload-button--empty {
|
2415
2562
|
background-color: #f3f2f1;
|
@@ -2418,7 +2565,7 @@
|
|
2418
2565
|
background-color: #ffffff;
|
2419
2566
|
}
|
2420
2567
|
.govuk-file-upload-button--dragging .govuk-file-upload-button__pseudo-button {
|
2421
|
-
background-color:
|
2568
|
+
background-color: #dbdad9;
|
2422
2569
|
}
|
2423
2570
|
|
2424
2571
|
.govuk-file-upload-button:disabled {
|
@@ -2430,7 +2577,7 @@
|
|
2430
2577
|
background-color: #f3f2f1;
|
2431
2578
|
}
|
2432
2579
|
.govuk-file-upload-button:disabled .govuk-file-upload-button__status {
|
2433
|
-
background-color:
|
2580
|
+
background-color: #bbd4ea;
|
2434
2581
|
}
|
2435
2582
|
|
2436
2583
|
|
@@ -2516,13 +2663,15 @@
|
|
2516
2663
|
border-width: 4px;
|
2517
2664
|
outline: 3px solid transparent;
|
2518
2665
|
outline-offset: 1px;
|
2519
|
-
box-shadow: 0 0 0 4px #ffdd00;
|
2520
2666
|
}
|
2521
2667
|
@media screen and (forced-colors: active), (-ms-high-contrast: active) {
|
2522
2668
|
.govuk-radios__input:focus + .govuk-radios__label::before {
|
2523
2669
|
outline-color: Highlight;
|
2524
2670
|
}
|
2525
2671
|
}
|
2672
|
+
.govuk-radios__input:focus + .govuk-radios__label::before {
|
2673
|
+
box-shadow: 0 0 0 4px #ffdd00;
|
2674
|
+
}
|
2526
2675
|
|
2527
2676
|
.govuk-radios__input:checked + .govuk-radios__label::after {
|
2528
2677
|
opacity: 1;
|
@@ -2553,19 +2702,17 @@
|
|
2553
2702
|
font-family: "Open Sans", sans-serif;
|
2554
2703
|
-webkit-font-smoothing: antialiased;
|
2555
2704
|
-moz-osx-font-smoothing: grayscale;
|
2556
|
-
font-weight: 400;
|
2557
|
-
font-size: 1rem;
|
2558
|
-
line-height: 1.25;
|
2559
|
-
color: #0b0c0c;
|
2560
|
-
width: 40px;
|
2561
|
-
margin-bottom: 10px;
|
2562
|
-
text-align: center;
|
2563
2705
|
}
|
2564
2706
|
@media print {
|
2565
2707
|
.govuk-radios__divider {
|
2566
2708
|
font-family: sans-serif;
|
2567
2709
|
}
|
2568
2710
|
}
|
2711
|
+
.govuk-radios__divider {
|
2712
|
+
font-weight: 400;
|
2713
|
+
font-size: 1rem;
|
2714
|
+
line-height: 1.25;
|
2715
|
+
}
|
2569
2716
|
@media (min-width: 40.0625em) {
|
2570
2717
|
.govuk-radios__divider {
|
2571
2718
|
font-size: 1.1875rem;
|
@@ -2578,23 +2725,33 @@
|
|
2578
2725
|
line-height: 1.15;
|
2579
2726
|
}
|
2580
2727
|
}
|
2728
|
+
.govuk-radios__divider {
|
2729
|
+
color: #0b0c0c;
|
2730
|
+
}
|
2581
2731
|
@media print {
|
2582
2732
|
.govuk-radios__divider {
|
2583
2733
|
color: #000000;
|
2584
2734
|
}
|
2585
2735
|
}
|
2736
|
+
.govuk-radios__divider {
|
2737
|
+
width: 40px;
|
2738
|
+
margin-bottom: 10px;
|
2739
|
+
text-align: center;
|
2740
|
+
}
|
2586
2741
|
|
2587
2742
|
.govuk-radios__conditional {
|
2588
2743
|
margin-bottom: 15px;
|
2589
|
-
margin-left: 20px;
|
2590
|
-
padding-left: 35px;
|
2591
|
-
border-left: 4px solid #b1b4b6;
|
2592
2744
|
}
|
2593
2745
|
@media (min-width: 40.0625em) {
|
2594
2746
|
.govuk-radios__conditional {
|
2595
2747
|
margin-bottom: 20px;
|
2596
2748
|
}
|
2597
2749
|
}
|
2750
|
+
.govuk-radios__conditional {
|
2751
|
+
margin-left: 20px;
|
2752
|
+
padding-left: 35px;
|
2753
|
+
border-left: 4px solid #b1b4b6;
|
2754
|
+
}
|
2598
2755
|
.govuk-frontend-supported .govuk-radios__conditional--hidden {
|
2599
2756
|
display: none;
|
2600
2757
|
}
|
@@ -2638,14 +2795,14 @@
|
|
2638
2795
|
outline-offset: 1px;
|
2639
2796
|
box-shadow: 0 0 0 10px #b1b4b6;
|
2640
2797
|
}
|
2641
|
-
.govuk-radios--small .govuk-radios__item:hover .govuk-radios__input:focus + .govuk-radios__label::before {
|
2642
|
-
box-shadow: 0 0 0 4px #ffdd00 0 0 0 10px #b1b4b6;
|
2643
|
-
}
|
2644
2798
|
@media screen and (forced-colors: active), (-ms-high-contrast: active) {
|
2645
2799
|
.govuk-radios--small .govuk-radios__item:hover .govuk-radios__input:focus + .govuk-radios__label::before {
|
2646
2800
|
outline-color: Highlight;
|
2647
2801
|
}
|
2648
2802
|
}
|
2803
|
+
.govuk-radios--small .govuk-radios__item:hover .govuk-radios__input:focus + .govuk-radios__label::before {
|
2804
|
+
box-shadow: 0 0 0 4px #ffdd00 0 0 0 10px #b1b4b6;
|
2805
|
+
}
|
2649
2806
|
@media (hover: none), (pointer: coarse) {
|
2650
2807
|
.govuk-radios--small .govuk-radios__item:hover .govuk-radios__input:not(:disabled) + .govuk-radios__label::before {
|
2651
2808
|
box-shadow: initial;
|
@@ -2663,23 +2820,17 @@
|
|
2663
2820
|
font-family: "Open Sans", sans-serif;
|
2664
2821
|
-webkit-font-smoothing: antialiased;
|
2665
2822
|
-moz-osx-font-smoothing: grayscale;
|
2666
|
-
font-weight: 400;
|
2667
|
-
font-size: 1rem;
|
2668
|
-
line-height: 1.25;
|
2669
|
-
box-sizing: border-box;
|
2670
|
-
min-width: 11.5em;
|
2671
|
-
max-width: 100%;
|
2672
|
-
height: 2.5rem;
|
2673
|
-
padding: 5px;
|
2674
|
-
border: 2px solid #0b0c0c;
|
2675
|
-
color: #0b0c0c;
|
2676
|
-
background-color: #ffffff;
|
2677
2823
|
}
|
2678
2824
|
@media print {
|
2679
2825
|
.govuk-select {
|
2680
2826
|
font-family: sans-serif;
|
2681
2827
|
}
|
2682
2828
|
}
|
2829
|
+
.govuk-select {
|
2830
|
+
font-weight: 400;
|
2831
|
+
font-size: 1rem;
|
2832
|
+
line-height: 1.25;
|
2833
|
+
}
|
2683
2834
|
@media (min-width: 40.0625em) {
|
2684
2835
|
.govuk-select {
|
2685
2836
|
font-size: 1.1875rem;
|
@@ -2692,6 +2843,16 @@
|
|
2692
2843
|
line-height: 1.25;
|
2693
2844
|
}
|
2694
2845
|
}
|
2846
|
+
.govuk-select {
|
2847
|
+
box-sizing: border-box;
|
2848
|
+
min-width: 11.5em;
|
2849
|
+
max-width: 100%;
|
2850
|
+
height: 2.5rem;
|
2851
|
+
padding: 5px;
|
2852
|
+
border: 2px solid #0b0c0c;
|
2853
|
+
color: #0b0c0c;
|
2854
|
+
background-color: #ffffff;
|
2855
|
+
}
|
2695
2856
|
.govuk-select:focus {
|
2696
2857
|
outline: 3px solid #ffdd00;
|
2697
2858
|
outline-offset: 0;
|
@@ -2725,25 +2886,17 @@
|
|
2725
2886
|
font-family: "Open Sans", sans-serif;
|
2726
2887
|
-webkit-font-smoothing: antialiased;
|
2727
2888
|
-moz-osx-font-smoothing: grayscale;
|
2728
|
-
font-weight: 400;
|
2729
|
-
font-size: 1rem;
|
2730
|
-
line-height: 1.25;
|
2731
|
-
box-sizing: border-box;
|
2732
|
-
display: block;
|
2733
|
-
width: 100%;
|
2734
|
-
min-height: 40px;
|
2735
|
-
margin-bottom: 20px;
|
2736
|
-
padding: 5px;
|
2737
|
-
resize: vertical;
|
2738
|
-
border: 2px solid #0b0c0c;
|
2739
|
-
border-radius: 0;
|
2740
|
-
-webkit-appearance: none;
|
2741
2889
|
}
|
2742
2890
|
@media print {
|
2743
2891
|
.govuk-textarea {
|
2744
2892
|
font-family: sans-serif;
|
2745
2893
|
}
|
2746
2894
|
}
|
2895
|
+
.govuk-textarea {
|
2896
|
+
font-weight: 400;
|
2897
|
+
font-size: 1rem;
|
2898
|
+
line-height: 1.25;
|
2899
|
+
}
|
2747
2900
|
@media (min-width: 40.0625em) {
|
2748
2901
|
.govuk-textarea {
|
2749
2902
|
font-size: 1.1875rem;
|
@@ -2756,11 +2909,25 @@
|
|
2756
2909
|
line-height: 1.25;
|
2757
2910
|
}
|
2758
2911
|
}
|
2912
|
+
.govuk-textarea {
|
2913
|
+
box-sizing: border-box;
|
2914
|
+
display: block;
|
2915
|
+
width: 100%;
|
2916
|
+
min-height: 40px;
|
2917
|
+
margin-bottom: 20px;
|
2918
|
+
}
|
2759
2919
|
@media (min-width: 40.0625em) {
|
2760
2920
|
.govuk-textarea {
|
2761
2921
|
margin-bottom: 30px;
|
2762
2922
|
}
|
2763
2923
|
}
|
2924
|
+
.govuk-textarea {
|
2925
|
+
padding: 5px;
|
2926
|
+
resize: vertical;
|
2927
|
+
border: 2px solid #0b0c0c;
|
2928
|
+
border-radius: 0;
|
2929
|
+
-webkit-appearance: none;
|
2930
|
+
}
|
2764
2931
|
.govuk-textarea:focus {
|
2765
2932
|
outline: 3px solid #ffdd00;
|
2766
2933
|
outline-offset: 0;
|
@@ -2811,7 +2978,7 @@
|
|
2811
2978
|
content: " ";
|
2812
2979
|
}
|
2813
2980
|
|
2814
|
-
.govuk-visually-hidden-focusable:not(:active):not(:focus) {
|
2981
|
+
.govuk-visually-hidden-focusable:not(:active):not(:focus):not(.\:focus) {
|
2815
2982
|
position: absolute !important;
|
2816
2983
|
width: 1px !important;
|
2817
2984
|
height: 1px !important;
|
@@ -4178,24 +4345,17 @@
|
|
4178
4345
|
font-family: "Open Sans", sans-serif;
|
4179
4346
|
-webkit-font-smoothing: antialiased;
|
4180
4347
|
-moz-osx-font-smoothing: grayscale;
|
4181
|
-
font-weight: 400;
|
4182
|
-
font-size: 1rem;
|
4183
|
-
line-height: 1.25;
|
4184
|
-
box-sizing: border-box;
|
4185
|
-
display: block;
|
4186
|
-
width: 100%;
|
4187
|
-
margin-bottom: 20px;
|
4188
|
-
padding: 5px;
|
4189
|
-
resize: vertical;
|
4190
|
-
border: 2px solid #0b0c0c;
|
4191
|
-
border-radius: 0;
|
4192
|
-
-webkit-appearance: none;
|
4193
4348
|
}
|
4194
4349
|
@media print {
|
4195
4350
|
.govuk-richtextarea {
|
4196
4351
|
font-family: sans-serif;
|
4197
4352
|
}
|
4198
4353
|
}
|
4354
|
+
.govuk-richtextarea {
|
4355
|
+
font-weight: 400;
|
4356
|
+
font-size: 1rem;
|
4357
|
+
line-height: 1.25;
|
4358
|
+
}
|
4199
4359
|
@media (min-width: 40.0625em) {
|
4200
4360
|
.govuk-richtextarea {
|
4201
4361
|
font-size: 1.1875rem;
|
@@ -4208,11 +4368,24 @@
|
|
4208
4368
|
line-height: 1.25;
|
4209
4369
|
}
|
4210
4370
|
}
|
4371
|
+
.govuk-richtextarea {
|
4372
|
+
box-sizing: border-box;
|
4373
|
+
display: block;
|
4374
|
+
width: 100%;
|
4375
|
+
margin-bottom: 20px;
|
4376
|
+
}
|
4211
4377
|
@media (min-width: 40.0625em) {
|
4212
4378
|
.govuk-richtextarea {
|
4213
4379
|
margin-bottom: 30px;
|
4214
4380
|
}
|
4215
4381
|
}
|
4382
|
+
.govuk-richtextarea {
|
4383
|
+
padding: 5px;
|
4384
|
+
resize: vertical;
|
4385
|
+
border: 2px solid #0b0c0c;
|
4386
|
+
border-radius: 0;
|
4387
|
+
-webkit-appearance: none;
|
4388
|
+
}
|
4216
4389
|
.govuk-richtextarea:focus {
|
4217
4390
|
outline: 3px solid #ffdd00;
|
4218
4391
|
outline-offset: 0;
|