-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibrary.html
4958 lines (4090 loc) · 283 KB
/
library.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html dir="ltr" lang="en" class="no-js">
<!-- // HEAD ELEMENT START // -->
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OPG - Sirius pattern library</title>
<link rel="stylesheet" href="production/css/prototype.css" />
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet">
<script src="js/V21/jquery.min.js"></script>
</head>
<!-- // HEAD ELEMENT END // -->
<body id="body-prototype" class="pattern-library-page">
<!-- HEAD CONTENT - START -->
<header class="index">
<!-- // MAIN MAV - START // -->
<nav>
<img src="production/img/V21/sirius-logo.svg" alt="Sirius"></div>
</nav>
<!-- // MAIN MAV - END // -->
<div class="row">
<div class="columns">
<h1>OPG - Sirius pattern library</h1>
<span class="border"></span>
<h2>Below is the pattern library</h2>
</div>
</div>
<div class="row-divider">
<span></span>
</div>
</header>
<!-- HEAD CONTENT - END -->
<!-- PRIMARY CONTENT - START -->
<main>
<!-- INDEX - START -->
<div class="row">
<div class="large-12 large-uncentered columns">
<h1>INDEX</h1>
<ul class="bullet-list index">
<li><a href="#item-1">1 - Title's</a></li>
<li><a href="#item-2">2 - Buttons, link styles & colours</a></li>
<li><a href="#item-3">3 - P tag's</a></li>
<li><a href="#item-4">4 - P tag's with strong</a></li>
<li><a href="#item-5">5 - Ordered list</a></li>
<li><a href="#item-6">6 - Un-ordered list</a></li>
<li><a href="#item-7">7 - Form items</a></li>
<li><a href="#item-8">8 - Tab's</a></li>
<li><a href="#item-9">9 - Icons with tool tips</a></li>
<li><a href="#item-10">10 - Progress bar</a></li>
<li><a href="#item-11">11 - Accordion</a></li>
<li><a href="#item-12">12 - Accordion with edit link</a></li>
<li><a href="#item-13">13 - Client header</a></li>
<li><a href="#item-14">14 - Deputy header</a></li>
<li><a href="#item-15">15 - Side navigation/actions</a></li>
<li><a href="#item-16">16 - Details section - 3 columns</a></li>
<li><a href="#item-17">17 - Documents viewer table</a></li>
<li><a href="#item-18">18 - Deputies table - with modal</a></li>
<li><a href="#item-19">19 - Contacts list - with modal</a></li>
<li><a href="#item-20">20 - Loading & confirmation styles</a></li>
<li><a href="#item-21">21 - Loading wheel</a></li>
<li><a href="#item-22">22 - Sticky filter</a></li>
<li><a href="#item-23">23 - Drafts list & edit letter</a></li>
<li><a href="#item-24">24 - Add deputy list</a></li>
<li><a href="#item-25">25 - Pagination</a></li>
<li><a href="#item-26">26 - Base modal style</a></li>
<li><a href="#item-27">27 - New confirmation style</a></li>
</ul>
</div>
</div>
<hr>
<!-- INDEX - END -->
<!-- ITEM 1 - START -->
<div class="row">
<div class="large-12 large-uncentered columns">
<h1 id="item-1" class="library-title"><span class="number">1</span> - Title's</h1>
<p> </p>
<div class="row">
<div class="large-3 large-uncentered columns">
<h1>H1 title</h1>
</div>
<div class="large-3 large-uncentered columns">
<h2>H2 title</h2>
</div>
<div class="large-3 large-uncentered columns">
<h3>H3 title</h3>
</div>
<div class="large-3 large-uncentered columns">
<h4>H4 title</h4>
</div>
</div>
<div class="row">
<div class="large-12 large-uncentered columns">
<h1 class="section-title">H1, H2, H3, H4 - section title</h1>
<h1 class="description-title">H1, H2, H3, H4 - description title</h1>
<h1 class="description-title"><span class="icon welfare"></span>H1, H2, H3, H4 - description title with icon</h1>
<h1 class="description-title">
H1, H2, H3, H4 - description title with link
<a href="#" class="edit">Edit link</a>
</h1>
<h1 class="sub-section-title">H1, H2, H3, H4 - sub section title</h1>
</div>
</div>
</div>
</div>
<hr>
<!-- ITEM 1 - END -->
<!-- ITEM 2 - START -->
<div class="row">
<div class="large-12 large-uncentered columns">
<h1 id="item-2" class="library-title"><span class="number">2</span> - Buttons, link styles & colours</h1>
<h3>Main buttons</h3>
<div class="row">
<div class="large-2 large-uncentered columns">
<a href="#" class="main-cta">Main cta</a>
</div>
<div class="large-2 large-uncentered columns">
<a href="#" class="main-cta primary">Primary action cta</a>
</div>
<div class="large-2 large-uncentered columns">
<a href="#" class="main-cta secondary">Secondary cta</a>
</div>
<div class="large-2 large-uncentered columns">
<a href="#" class="main-cta delete-action">Delete action cta</a>
</div>
<div class="large-2 large-uncentered columns">
<a href="#" class="main-cta tertiary edit">Teritary cta with icon</a>
</div>
<div class="large-2 large-uncentered columns">
<a href="#" class="main-cta tertiary delete">Delete</a>
</div>
</div>
<hr class="separator">
<h3>Main buttons - de-activated</h3>
<div class="row">
<div class="large-2 large-uncentered columns">
<a href="#" class="main-cta de-activate">Main cta</a>
</div>
<div class="large-2 large-uncentered columns">
<a href="#" class="main-cta primary de-activate">Primary action cta</a>
</div>
<div class="large-2 large-uncentered columns">
<a href="#" class="main-cta secondary de-activate">Secondary cta</a>
</div>
<div class="large-2 large-uncentered columns">
<a href="#" class="main-cta delete-action de-activate">Delete action cta</a>
</div>
<div class="large-2 large-uncentered columns">
<a href="#" class="main-cta tertiary edit de-activate">Teritary cta with icon</a>
</div>
</div>
<hr class="separator">
<h3>Link styles</h3>
<div class="row">
<div class="large-2 large-uncentered columns">
<a href="#">Normal link</a>
</div>
<div class="large-2 large-uncentered columns">
<a href="#" class="view">View link</a>
</div>
<div class="large-2 large-uncentered columns">
<a href="#" class="edit">Edit link</a>
</div>
<div class="large-2 large-uncentered columns">
<a href="#" class="close">Close/cancel/exit link</a>
</div>
<div class="large-2 large-uncentered columns">
<a href="#" class="back">Back link</a>
</div>
<div class="large-2 large-uncentered columns">
<div class="details">
<p><a href="#" class="open">Description link</a></p>
</div>
<div class="description">
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
</p>
</div>
</div>
</div>
<p> </p>
<div class="row">
<div class="large-2 large-uncentered columns">
<a href="#" class="delete">Delete link</a>
</div>
</div>
<p> </p>
<h3>Colours</h3>
<div class="row">
<div class="large-2 large-uncentered columns">
<div class="colour white">
<span></span>
<p>$white: <strong>#ffffff</strong></p>
</div>
</div>
<div class="large-2 large-uncentered columns">
<div class="colour white-off">
<span></span>
<p>$white-off: <strong>#efefef</strong></p>
</div>
</div>
<div class="large-2 large-uncentered columns">
<div class="colour black">
<span></span>
<p>$black: <strong>#000000</strong></p>
</div>
</div>
<div class="large-2 large-uncentered columns">
<div class="colour red">
<span></span>
<p>$red: <strong>#FC2B27</strong></p>
</div>
</div>
<div class="large-2 large-uncentered columns">
<div class="colour amber">
<span></span>
<p>$amber: <strong>#FFBF47</strong></p>
</div>
</div>
<div class="large-2 large-uncentered columns">
<div class="colour pink">
<span></span>
<p>$pink: <strong>#f36</strong></p>
</div>
</div>
</div>
<div class="row">
<div class="large-2 large-uncentered columns">
<div class="colour yellow">
<span></span>
<p>$yellow: <strong>#ffff00</strong></p>
</div>
</div>
<div class="large-2 large-uncentered columns">
<div class="colour purple">
<span></span>
<p>$purple: <strong>#3a2d58</strong></p>
</div>
</div>
<div class="large-2 large-uncentered columns">
<div class="colour violet">
<span></span>
<p>$violet: <strong>#bc38fc</strong></p>
</div>
</div>
<div class="large-2 large-uncentered columns">
<div class="colour blue">
<span></span>
<p>$blue: <strong>#009BEF</strong></p>
</div>
</div>
<div class="large-2 large-uncentered columns">
<div class="colour blue-grey">
<span></span>
<p>$blue-grey: <strong>darken(#ecf1f5,5%)</strong></p>
</div>
</div>
<div class="large-2 large-uncentered columns">
<div class="colour highlight-green">
<span></span>
<p>$highlight-green: <strong>#00F0AE</strong></p>
</div>
</div>
</div>
<div class="row">
<div class="large-2 large-uncentered columns">
<div class="colour green">
<span></span>
<p>$green: <strong>#28A197</strong></p>
</div>
</div>
<div class="large-2 large-uncentered columns">
<div class="colour main-colour">
<span></span>
<p>$main-colour: <strong>#2F3140</strong></p>
</div>
</div>
<div class="large-2 large-uncentered columns">
<div class="colour text-main-colour">
<span></span>
<p>$text-main-colour: <strong>#6D787E</strong></p>
</div>
</div>
<div class="large-2 large-uncentered columns">
<div class="colour border-colour">
<span></span>
<p>$border-colour: <strong>#EFEFEF</strong></p>
</div>
</div>
</div>
</div>
</div>
<hr>
<!-- ITEM 2 - END -->
<!-- ITEM 3 - START -->
<div class="row">
<div class="large-8 large-uncentered columns">
<h1 id="item-3" class="library-title"><span class="number">3</span> - P tag's</h1>
<h3>Normal p tags</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse nisi ligula, pulvinar ac
leo sit amet, cursus pellentesque velit.
</p>
<p>
Nunc pretium, est sit amet tristique sollicitudin, dui nulla tempor tortor, ut mattis neque
metus sed leo. Donec posuere, sem at iaculis ultricies, nunc justo tristique ipsum, vel
ultricies enim dui in augue. Praesent quis tincidunt elit.
</p>
<h3>Place holder p tags</h3>
<p class="place-holder-text">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse nisi ligula, pulvinar ac
leo sit amet, cursus pellentesque velit.
</p>
</div>
</div>
<hr>
<!-- ITEM 3 - END -->
<!-- ITEM 4 - START -->
<div class="row">
<div class="large-8 large-uncentered columns">
<h1 id="item-4" class="library-title"><span class="number">4</span> - P tag's with strongs</h1>
<p>
Lorem ipsum dolor sit amet, <strong>consectetur adipiscing elit</strong>. Suspendisse nisi ligula, pulvinar ac
leo sit amet, cursus pellentesque velit.
</p>
<p>
Nunc pretium, est sit <strong>amet tristique sollicitudin</strong>, dui nulla tempor tortor, ut mattis neque
metus sed leo. Donec posuere, sem at iaculis ultricies, nunc justo tristique ipsum, vel
ultricies enim dui in augue. <strong>Praesent quis tincidunt</strong> elit.
</p>
</div>
</div>
<hr>
<!-- ITEM 4 - END -->
<!-- ITEM 5 - START -->
<div class="row">
<div class="large-8 large-uncentered columns">
<h1 id="item-5" class="library-title"><span class="number">5</span> - Ordered list</h1>
<ol>
<li>Ordered list item 1</li>
<li>Ordered list item 2</li>
<li>Ordered list item 3</li>
<li>Ordered list item 4</li>
<li>Ordered list item 5</li>
</ol>
</div>
</div>
<hr>
<!-- ITEM 5 - END -->
<!-- ITEM 6 - START -->
<div class="row">
<div class="large-8 large-uncentered columns">
<h1 id="item-6" class="library-title"><span class="number">6</span> - Un-ordered list</h1>
<ul class="bullet-list">
<li>Un-ordered list item 1</li>
<li>Un-ordered list item 2</li>
<li>Un-ordered list item 3</li>
<li>Un-ordered list item 4</li>
<li>Un-ordered list item 5</li>
</ul>
</div>
</div>
<hr>
<!-- ITEM 6 - END -->
<!-- ITEM 7 - START -->
<div class="row">
<div class="large-8 large-uncentered columns">
<h1 id="item-7" class="library-title"><span class="number">7</span> - Form items</h1>
</div>
</div>
<div class="row">
<div class="large-4 large-uncentered columns">
<h3>Normal status</h3>
<h2 class="section-title">Form title</h2>
<form>
<div id="error-message" class="confirmation-panel error-message" style="display: inline-block !important;">
<div class="content">
<h1>
<span></span>
There appears to be a problem with the form
</h1>
<p>Some of the fileds require your attention:</p>
<ul>
<li><a href="#dob-error">Date of birth</a></li>
</ul>
</div>
</div>
<div id="confirmation-message" class="confirmation-panel small-version" style="display: inline-block !important;">
<div class="content">
<h1>
<span></span>
<div class="client-title">Mr</div>
<div class="client-first-name">Gerald</div>
<div class="client-last-name">Brackens</div>
has now been updated
</h1>
</div>
</div>
<!-- // FORM ITEM - 1 - START // -->
<div class="form-group">
<label for="A-form-type-1">Required full width select drop down <span class="required">*</span></label>
<select id="A-form-type-1" class="full-width">
<option value="">-- Select --</option>
<option value="Select 1">Select 1</option>
<option value="Select 2">Select 2</option>
<option value="Select 3">Select 3</option>
<option value="Select 4">Select 4</option>
<option value="Select 5">Select 5</option>
</select>
</div>
<!-- // FORM ITEM - 1 - END // -->
<!-- // FORM ITEM - 2 - START // -->
<div class="form-group">
<label for="A-form-type-2">Auto width select drop down</label>
<select id="A-form-type-2">
<option value="">-- Select --</option>
<option value="Select 1">Select 1</option>
<option value="Select 2">Select 2</option>
<option value="Select 3">Select 3</option>
<option value="Select 4">Select 4</option>
<option value="Select 5">Select 5</option>
</select>
</div>
<!-- // FORM ITEM - 2 - END // -->
<!-- // FORM ITEM - 3 - START // -->
<div class="form-group">
<label for="A-form-type-3a">Required full width text input <span class="required">*</span></label>
<input id="A-form-type-3a" name="A-form-type-3a" type="text" class="full-width" value="">
</div>
<div class="form-group error-field" id="dob-error">
<label for="A-form-type-3b">Required full width text input <span class="required">*</span></label>
<span class="error-text">This is the error description message</a></span>
<input id="A-form-type-3b" name="A-form-type-3b" type="text" class="full-width" value="">
</div>
<div class="form-group">
<label for="A-form-type-3c">Optional full width text input <div class="optional">(optional)</div></label>
<input id="A-form-type-3c" name="A-form-type-3c" type="text" class="full-width" value="">
</div>
<div class="form-group">
<label for="A-form-type-3d">Full width text input with placeholder</label>
<input id="A-form-type-3d" name="A-form-type-3d" type="text" class="full-width" value="" placeholder="This is placeholder text...">
</div>
<!-- // FORM ITEM - 3 - END // -->
<!-- // FORM ITEM - 4 - START // -->
<div class="form-group">
<label for="A-form-type-4">Half width text input</label>
<input id="A-form-type-4" name="A-form-type-4" type="text" class="half" value="">
</div>
<!-- // FORM ITEM - 4 - END // -->
<!-- // FORM ITEM - 5 - START // -->
<div class="form-group currency">
<label for="A-form-type-5">Money amount</label>
<div class="date-wrapper">
<span class="currency-icon"></span>
<input id="A-form-type-5" name="A-form-type-5" type="text" class="" placeholder="" value="">
</div>
</div>
<!-- // FORM ITEM - 5 - END // -->
<!-- // FORM ITEM - 6 - START // -->
<div class="form-group order-type">
<legend>Required full width radio buttons with icons <span class="required">*</span></legend>
<label for="A-form-type-6a" class="radio radio-health-welfare normal single-radio">
<input id="A-form-type-6a" type="radio" name="radio-group-1" value="Radio button 1">
<span>Radio button 1</span> <span class="icon welfare"></span>
</label>
<label for="A-form-type-6b" class="radio radio-property normal single-radio">
<input id="A-form-type-6b" type="radio" name="radio-group-1" value="Radio button 2">
<span>Radio button 2</span> <span class="icon property"></span>
</label>
</div>
<!-- // FORM ITEM - 6 - END // -->
<!-- // FORM ITEM - 7 - START // -->
<div class="form-group order-type">
<legend>Auto width radio buttons</legend>
<label for="A-form-type-7a" class="radio normal">
<input id="A-form-type-7a" type="radio" name="radio-group-2" value="Radio 1">
Radio 1
</label>
<label for="A-form-type-7b" class="radio normal">
<input id="A-form-type-7b" type="radio" name="radio-group-2" value="Radio 2">
Radio 2
</label>
<label for="A-form-type-7c" class="radio normal">
<input id="A-form-type-7c" type="radio" name="radio-group-2" value="Radio 3">
Radio 3
</label>
</div>
<!-- // FORM ITEM - 7 - END // -->
<!-- // FORM ITEM - 8a - START // -->
<div class="form-group">
<legend>Checkbox items</legend>
<label class="normal" for="A-form-type-8a-1">
<input id="A-form-type-8a-1" name="A-form-type-8a" type="checkbox" value="checkbox-1">
Checkbox 1
</label>
<label class="normal" for="A-form-type-8a-2">
<input id="A-form-type-8a-2" name="A-form-type-8a" type="checkbox" value="checkbox-2">
Checkbox 2
</label>
<label class="normal" for="A-form-type-8a-3">
<input id="A-form-type-8a-3" name="A-form-type-8a" type="checkbox" value="checkbox-3">
Checkbox 3
</label>
<label class="normal" for="A-form-type-8a-4">
<input id="A-form-type-8a-4" name="A-form-type-8a" type="checkbox" value="checkbox-4">
Checkbox 4
</label>
</div>
<!-- // FORM ITEM - 8a - END // -->
<!-- // FORM ITEM - 8b - START // -->
<div class="form-group">
<label class="normal" for="A-form-type-8b">
<input id="A-form-type-8b" name="A-form-type-8b" type="checkbox" value="checkbox-1">
Single checkbox with no label
</label>
</div>
<!-- // FORM ITEM - 8b - END // -->
<!-- // FORM ITEM - 9a - START // -->
<div class="form-group">
<legend>Required date fields <span class="required">*</span></legend>
<span class="help-text">Help text</span>
<div>
<input id="A-form-type-9a-day" class="input-length" name="date-day" type="text" placeholder="" maxlength="2">
<input id="A-form-type-9a-month" class="input-length" name="date-month" type="text" placeholder="" maxlength="2">
<input id="A-form-type-9a-year" class="input-length four" name="date-year" type="text" placeholder="" maxlength="4">
</div>
</div>
<!-- // FORM ITEM - 9a - END // -->
<!-- // FORM ITEM - 9b - START // -->
<div class="form-group read-only">
<label for="bond-renewal-date">Editible date:</label>
<span class="help-text">Example - 05 04 2017</span>
<div>
<input id="bond-renewal-day" class="input-length" name="date-day" type="text" value="28" maxlength="2">
<input id="bond-renewal-month" class="input-length" name="date-month" type="text" value="08" maxlength="2">
<input id="bond-renewal-year" class="input-length four" name="date-year" type="text" value="2018" maxlength="4">
</div>
<a href="#" class="edit edit-form-item">edit</a>
</div>
<!-- // FORM ITEM - 9b - END // -->
<!-- // FORM ITEM - 10 - START // -->
<div class="form-group">
<legend>Date fields with hint</legend>
<div class="weeks-8">
<div class="wrapper"><span>8</span></div>
<p>weeks after the report end date</p>
</div>
<div>
<input id="A-form-type-10-day" class="input-length" name="date-day" type="text" placeholder="" maxlength="2">
<input id="A-form-type-10-month" class="input-length" name="date-month" type="text" placeholder="" maxlength="2">
<input id="A-form-type-10-year" class="input-length four" name="date-year" type="text" placeholder="" maxlength="4">
</div>
</div>
<!-- // FORM ITEM - 10 - END // -->
<!-- // FORM ITEM - 11 - START // -->
<div class="form-group">
<label for="datepicker">Datepicker</label>
<div class="date-wrapper">
<input type="text" id="datepicker">
<i class="date"></i>
</div>
</div>
<!-- // FORM ITEM - 11 - END // -->
<!-- // FORM ITEM - 12 - START // -->
<div class="form-group violent-risk">
<span></span>
<label class="normal" for="form-type-12">
<input id="A-form-type-12" name="A-form-type-12" type="checkbox" value="post">
Is the client a violent risk?
</label>
</div>
<!-- // FORM ITEM - 12 - END // -->
<!-- // FORM ITEM - 13 - START // -->
<div class="form-group fee-payer">
<span></span>
<label class="normal" for="form-type-13">
<input id="A-form-type-13" name="A-form-type-13" type="checkbox" value="post">
Is the deputy the fee payer?
</label>
</div>
<!-- // FORM ITEM - 13 - END // -->
<!-- // FORM ITEM - 14 - START // -->
<div class="form-group">
<label for="A-form-type-14">Notes</label>
<textarea name="textarea" class="jqte-test" id="A-form-type-14"></textarea>
</div>
<!-- // FORM ITEM - 14 - END // -->
<!-- // FORM ITEM - 15 - START // -->
<div class="form-group">
<label for="A-form-type-15">Text area</label>
<textarea name="textarea" id="A-form-type-15" placeholder="" maxlength="250"></textarea>
</div>
<!-- // FORM ITEM - 15 - END // -->
<!-- // FORM ITEM - 16 - START // -->
<div class="form-group deputy-search">
<label for="form-type-16">Search field</label>
<span class="help-text">Search using the name, address or Sirius ID of the deputy</span>
<div class="wrapper">
<input id="A-form-type-16" name="A-form-type-16" type="text" value="">
<button class="main-cta" id="A-form-type-16" type="button">Search</button>
</div>
</div>
<!-- // FORM ITEM - 16 - END // -->
<!-- // FORM ITEM - 17 - START // -->
<div class="form-group">
<label>Text highlight:</label>
<p class="highlight">
<span>16</span>/<span>11</span>/<span>2017</span>
</p>
</div>
<!-- // FORM ITEM - 17 - START // -->
<!-- // FORM ITEM - 18 - START // -->
<div class="form-group">
<label for="dropzone">File upload</label>
<div id="dropzone">
<div action="http://www.torrentplease.com/dropzone.php" class="dropzone dz-clickable">
<div class="dz-default dz-message">
<i class="statement"></i>
<span>Drop files here or <strong>click to attach</strong></span>
</div>
</div>
</div>
</div>
<!-- // FORM ITEM - 18 - END // -->
<h3 class="sub-section-title">Additional form items related to user journerys</h3>
<p> </p>
<!-- // FORM ITEM - 19 - START // -->
<div class="form-group">
<label>Link style for template selection</label>
<div class="document-item">
<a href="#" class="letter-title inserts-journey" data-letter-id="1">
<span class="doc-title" data-value="letter">Letter-template-selection.doc</span>
</a>
</div>
</div>
<!-- // FORM ITEM - 19 - END // -->
<!-- // FORM ITEM - 20 - START // -->
<div class="form-group">
<label>Link style for template selection</label>
<ul id="inserts-list">
<li>
<a class="insert selected" data-insert-id="1">
<span data-value="insert-name">Insert title 1</span>
</a>
</li>
<li>
<a href="#preview-insert" rel="modal:open" class="preview" data-preview-id='2'>Preview</a>
<a class="insert" data-insert-id="2">
<span data-value="insert-name">Insert title 2</span>
</a>
</li>
<li>
<a class="insert" data-insert-id="3">
<span data-value="insert-name">Insert title 3</span>
</a>
</li>
</ul>
</div>
<!-- // FORM ITEM - 20 - END // -->
<!-- // FORM ITEM - 21 - START // -->
<div class="form-group">
<label>Selected template in side panel</label>
<div class="document">
<span class="icon document"></span>
<h3 class="title">Selected-template.doc</h3>
</div>
</div>
<!-- // FORM ITEM - 21 - END // -->
<!-- // FORM ITEM - 22 - START // -->
<div class="form-group">
<label>Select or remove user from a visit</label>
<h2 class="section-title">Selected</h2>
<div id="selected">
<ul id="selected-list">
</ul>
</div>
<h2 class="section-title">Not selected</h2>
<div id="suggested">
<ul>
<li style="display: none;">
<a class="correspondent" data-correspondent-id="1" style="display:none;">
<span class="icon fee-payer"></span>
<span data-value="name">Ms Lara Stevens</span><br>
<span data-value="type" class="type">Main correspondent</span><br>
<span data-value="address" class="sub-text">92 Greyfriars Road, CANNOCK WOOD, W5154AA.</span><br>
<span data-value="pref" class="communication-preferences">Preferences: <strong>None</strong></span>
</a>
</li>
<li>
<a class="correspondent" data-correspondent-id="2">
<span data-value="name">Mrs Carla Frith</span><br>
<span data-value="type" class="type">Deputy</span><br>
<span data-value="address" class="sub-text">40 Haslemere Road, CANNOCK WOOD, W5174LD.</span><br>
<span data-value="pref" class="communication-preferences">Preferences: <strong>Welsh</strong></span>
</a>
</li>
<li>
<a class="correspondent" data-correspondent-id="3">
<span class="icon violent"></span>
<span data-value="name">Toby Daniels</span><br>
<span data-value="type" class="type">Notified person</span><br>
<span data-value="address" class="sub-text">39 Islaire Road, NEW MILL, HP239JA.</span><br>
<span data-value="pref" class="communication-preferences">Preferences: <strong>Large print</strong>, <strong>Hearing impaired</strong></span>
</a>
</li>
</ul>
</div>
</div>
<!-- // FORM ITEM - 22 - END // -->
</form>
</div>
<div class="large-1 large-uncentered columns">
<p> </p>
</div>
<div class="large-4 large-uncentered columns">
<h3>Read only</h3>
<h2 class="section-title">Form title</h2>
<form>
<!-- // FORM ITEM - 1 - START // -->
<div class="form-group read-only">
<label for="B-form-type-1">Required full width select drop down <span class="required">*</span></label>
<select id="B-form-type-1" class="full-width" disabled>
<option value="">-- Select --</option>
<option value="Select 1">Select 1</option>
<option value="Select 2">Select 2</option>
<option value="Select 3">Select 3</option>
<option value="Select 4">Select 4</option>
<option value="Select 5">Select 5</option>
</select>
</div>
<!-- // FORM ITEM - 1 - END // -->
<!-- // FORM ITEM - 2 - START // -->
<div class="form-group read-only">
<label for="B-form-type-2">Auto width select drop down</label>
<select id="B-form-type-2" disabled>
<option value="">-- Select --</option>
<option value="Select 1">Select 1</option>
<option value="Select 2">Select 2</option>
<option value="Select 3">Select 3</option>
<option value="Select 4">Select 4</option>
<option value="Select 5">Select 5</option>
</select>
</div>
<!-- // FORM ITEM - 2 - END // -->
<!-- // FORM ITEM - 3 - START // -->
<div class="form-group read-only">
<label for="B-form-type-3a">Required full width text input <span class="required">*</span></label>
<input id="B-form-type-3a" name="B-form-type-3b" type="text" class="full-width" value="" disabled>
</div>
<div class="form-group read-only">
<label for="B-form-type-3b">Optional full width text input <div class="optional">(optional)</div></label>
<input id="B-form-type-3b" name="B-form-type-3b" type="text" class="full-width" value="" disabled>
</div>
<div class="form-group read-only">
<label for="B-form-type-3d">Full width text input with placeholder</label>
<input id="B-form-type-3d" name="B-form-type-3d" type="text" class="full-width" value="" placeholder="This is placeholder text...">
</div>
<!-- // FORM ITEM - 3 - END // -->
<!-- // FORM ITEM - 4 - START // -->
<div class="form-group read-only">
<label for="B-form-type-4">Half width text input</label>
<input id="B-form-type-4" name="B-form-type-4" type="text" class="half" value="" disabled>
</div>
<!-- // FORM ITEM - 4 - END // -->
<!-- // FORM ITEM - 5 - START // -->
<div class="form-group currency read-only">
<label for="form-type-5">Money amount</label>
<div class="date-wrapper">
<span class="currency-icon"></span>
<input id="B-form-type-5" name="B-form-type-5" type="text" class="" placeholder="" value="" disabled>
</div>
</div>
<!-- // FORM ITEM - 5 - END // -->
<!-- // FORM ITEM - 6 - START // -->
<div class="form-group order-type read-only">
<legend>Required full width radio buttons with icons <span class="required">*</span></legend>
<label for="B-form-type-6a" class="radio radio-health-welfare normal single-radio">
<input id="B-form-type-6a" type="radio" name="radio-group-3" value="Radio button 1" disabled>
<span>Radio button 1</span> <span class="icon welfare"></span>
</label>
<label for="B-form-type-6b" class="radio radio-property normal single-radio">
<input id="B-form-type-6b" type="radio" name="radio-group-3" value="Radio button 2" disabled>
<span>Radio button 2</span> <span class="icon property"></span>
</label>
</div>
<!-- // FORM ITEM - 6 - END // -->
<!-- // FORM ITEM - 7 - START // -->
<div class="form-group order-type read-only">
<legend>Auto width radio buttons</legend>
<label for="B-form-type-7a" class="radio normal">
<input id="B-form-type-7a" type="radio" name="radio-group-4" value="Radio 1" disabled>
Radio 1
</label>
<label for="B-form-type-7b" class="radio normal">
<input id="B-form-type-7b" type="radio" name="radio-group-4" value="Radio 2" disabled>
Radio 2
</label>
<label for="B-form-type-7c" class="radio normal">
<input id="B-form-type-7c" type="radio" name="radio-group-4" value="Radio 3" disabled>
Radio 3
</label>
</div>
<!-- // FORM ITEM - 7 - END // -->
<!-- // FORM ITEM - 8a - START // -->
<div class="form-group read-only">
<legend>Checkbox items</legend>
<label class="normal" for="B-form-type-8a-1">
<input id="B-form-type-8a-1" name="B-form-type-8a" type="checkbox" value="checkbox-1" disabled>
Checkbox 1
</label>
<label class="normal" for="B-form-type-8a-2">
<input id="B-form-type-8a-2" name="B-form-type-8a" type="checkbox" value="checkbox-2" disabled>
Checkbox 2
</label>
<label class="normal" for="B-form-type-8a-3">
<input id="B-form-type-8a-3" name="B-form-type-8a" type="checkbox" value="checkbox-3" disabled>
Checkbox 3
</label>
<label class="normal" for="A-form-type-8a-4">
<input id="B-form-type-8a-4" name="B-form-type-8a" type="checkbox" value="checkbox-4" disabled>
Checkbox 4
</label>
</div>
<!-- // FORM ITEM - 8a - END // -->
<!-- // FORM ITEM - 8b - START // -->
<div class="form-group read-only">
<label class="normal" for="B-form-type-8b">
<input id="B-form-type-8b" name="B-form-type-8b" type="checkbox" value="checkbox-1" disabled>
Single checkbox with no label
</label>
</div>
<!-- // FORM ITEM - 8b - END // -->
<!-- // FORM ITEM - 9 - START // -->
<div class="form-group read-only">
<legend>Required date fields <span class="required">*</span></legend>
<span class="help-text">Help text</span>
<div>
<input id="B-form-type-9-day" class="input-length" name="date-day" type="text" placeholder="" maxlength="2" disabled>
<input id="B-form-type-9-month" class="input-length" name="date-month" type="text" placeholder="" maxlength="2" disabled>
<input id="B-form-type-9-year" class="input-length four" name="date-year" type="text" placeholder="" maxlength="4" disabled>
</div>
</div>
<!-- // FORM ITEM - 9 - END // -->
<!-- // FORM ITEM - 10 - START // -->
<div class="form-group read-only">
<legend>Date fields with hint</legend>
<div class="weeks-8">
<div class="wrapper"><span>8</span></div>
<p>weeks after the report end date</p>
</div>