forked from topcoat/topcoat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1238 lines (1175 loc) · 64.1 KB
/
index.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 lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1"> <!-- Google Chrome Frame -->
<title>Topcoat Style Guide</title>
<link rel="stylesheet" type="text/css" href="doc/css/normalize.css">
<link rel="stylesheet" type="text/css" href="doc/css/styleguide.css">
<link rel="stylesheet" type="text/css" href="release/css/topcoat-min.css">
</head>
<body>
<a href="https://github.com/adobe/topcoat"><img style="position: absolute; top: 0; right: 0; border: 0; z-index:4000;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub"></a>
<div id="container">
<header>
<hgroup>
<h1>TopCoat</h1>
<h2>Style Guide - November 1, 2012</h2>
</hgroup>
<nav>
<h3>General</h3>
<ul>
<li><a href="#what-is-TopCoat">What is TopCoat?</a></li>
<li><a href="#examples">Examples</a></li>
<li><a href="#fonts">Fonts</a></li>
<li><a href="#colors">Colors</a></li>
<li><a href="#icons">Icons</a></li>
<li><a href="#visual-hierarchy">Visual Hierarchy</a></li>
<li><a href="#spacing">Spacing</a></li>
<li><a href="#words">Words</a></li>
<li><a href="#os-wrapper-vs-browser">OS Wrapper vs. Browser</a></li>
</ul>
<h3>Actions</h3>
<ul>
<li><a href="#button">Button</a></li>
<li><a href="#icon-button">Icon Button</a></li>
<li><a href="#icon-label-button">Icon Label Button</a></li>
<li><a href="#call-to-action-button">Call-to-Action-Button</a></li>
<li><a href="#breadcrumbs">Breadcrumbs</a></li>
<li><a href="#drop-down">Drop-Down</a></li>
<li><a href="#Split-Action">Split-Action</a></li>
<li><a href="#link">Link</a></li>
<li><a href="#button-bar">Button Bar</a></li>
</ul>
<h3>Toggles</h3>
<ul>
<li><a href="#slide-switch">Slide Switch</a></li>
<li><a href="#toggle-buttons">Toggle Buttons</a></li>
<li><a href="#tabs">Tabs</a></li>
<li><a href="#disclosure-toggle">Disclosure Toggle</a></li>
</ul>
<h3>Settings</h3>
<ul>
<li><a href="#text-field">Text Field</a></li>
<li><a href="#combo-box">Combo Box</a></li>
<li><a href="#select">Select</a></li>
<li><a href="#swatch">Swatch</a></li>
<li><a href="#checkbox">Checkbox</a></li>
<li><a href="#radio-button">Radio Button</a></li>
<li><a href="#approximate-slider">Approximate Slider</a></li>
<li><a href="#step-slider">Step / Precision Slider</a></li>
<li><a href="#tags">Tags</a></li>
</ul>
<h3>Indicators</h3>
<ul>
<li><a href="#spinner">Spinner</a></li>
<li><a href="#indicator-bar">Indicator Bar</a></li>
</ul>
</nav>
</header>
<div id="main" role="main">
<section id="general">
<h4 id="what-is-TopCoat"><span>What is TopCoat?</span></h4>
<p>TopCoat is the design language for Adobe's Web platform & authoring tools. It was tailored for a set of light weight applications that are based on web standards. Moving away from the powerful, monolithic apps that you launch and use for most of your day, these apps are meant to be working alongside a set of other tools and services. They can be launched on your desktop or on the browser.</p>
<p>TopCoat was not meant for mobile apps, web sites and services, powerful authoring tools with a lot of configuration options. And extension of TopCoat would be required for those spaces.</p>
<p>Our Design Principles:</p>
<ul>
<li>We want to be good OS Citizens while still retaining our identity.</li>
<li>Our UI Framework should accelerate design, not restrict it.</li>
<li>We should be able to convey human, without literally showing our heart.</li>
<li>We want to be clean and simple without sacrificing being clear. </li>
<li>We’d like to explore the aesthetics of being functional.</li>
<li>We love our craft and it should be apparent in the quality of our UI.</li>
</ul>
<p><strong>Note:</strong> This style guide is not meant to be prescriptive. You shouldn't let this style guide hold you back if you've figured out a better way. Please feel free to let us know how we can improve TopCoat.</p>
<h4 id="examples"><span>Examples</span></h4>
<table class="tabular images">
<tr>
<th>Brackets (Edge Code)</th>
<th>Edge Reflow</th>
<th>Edge Inspect</th>
</tr>
<tr>
<td>
<a href="#e1" class="openmodal"><img src="doc/img/brackets.png" alt="Brackets Screenshot" /></a>
</td>
<td>
<a href="#e2" class="openmodal"><img src="doc/img/edge-reflow.png" alt="Edge Reflow Screenshot" /></a>
</td>
<td>
<a href="#e3" class="openmodal"><img src="doc/img/edge-inspect.png" alt="Edge Inspect Screenshot" style="width: 100px;" /></a>
(Chrome Extension)
</td>
</tr>
</table>
<aside id="e1" class="modal">
<div>
<h1>Brackets <a href="#close" title="Close">Close</a></h1>
<img src="doc/img/brackets.png" alt="Brackets (Edge Code) Screenshot" width="100%" />
</div>
</aside>
<aside id="e2" class="modal">
<div>
<h1>Edge Reflow <a href="#close" title="Close">Close</a></h1>
<img src="doc/img/edge-reflow.png" alt="Edge Reflow Screenshot" width="100%" />
</div>
</aside>
<aside id="e3" class="modal">
<div>
<h1>Edge Inspect <a href="#close" title="Close">Close</a></h1>
<img src="doc/img/edge-inspect.png" alt="Edge Inspect Screenshot" style="display: block; margin: 18px auto 36px;" />
</div>
</aside>
<h4 id="fonts"><span>Fonts</span></h4>
<table class="fonts tabular">
<tr>
<th class="bg-white">On White</th>
<th class="bg-lightgray">On Light Gray</th>
<th class="bg-slategray">On Slate Gray</th>
</tr>
<tr>
<td class="bg-white">
<h1 class="title">Title</h1>
<p>Standard Text</p>
<p class="large ">Large Text</p>
</td>
<td class="bg-lightgray">
<h1 class="title">Title</h1>
<p>Standard Text</p>
<p class="large ">Large Text</p>
</td>
<td class="bg-slategray">
<h1 class="title">Title</h1>
<p>Standard Text</p>
<p class="large ">Large Text</p>
<h2 class="group-label">Group Label</h2>
</td>
</tr>
</table>
<p>TopCoat uses <a href="http://blogs.adobe.com/typblography/2012/08/source-sans-pro.html">Source Sans Pro</a>, Adobe’s first open source type family; the fonts are included in this style guide in <code>/src/fonts</code>. Right now only Regular and Semibold are being used on the controls, 12px Regular on Standard controls and 14px Semibold on Large controls.</p>
<p>If you're going to use text shadow or highlight on text that don't have a clickable bounding box make sure that:</p>
<ul>
<li>interactive text are raised (shadow below text or highlight above text)</li>
<li>non-interactive text are sunken (the opposite).</li>
</ul>
<h4 id="colors"><span>Colors</span></h4>
<h5>Surface Palette</h5>
<table class="tabular">
<tr>
<th>Color</th>
<th>Name</th>
<th>Hex</th>
<th>RGB</th>
<th>Note</th>
</tr>
<tr>
<td><div class="swatch large" style="background: #494d4e;"></div></td>
<td>Slate Gray (gradient start)</td>
<td>#494D4E</td>
<td>73,77,78</td>
<td>Gradient background for global navigation or driver e.g. App Bar, Primary Side Bar, Chrome Extension</td>
</tr>
<tr>
<td><div class="swatch large" style="background: #3b3f41;"></div></td>
<td>Slate Gray (gradient end)</td>
<td>#3B3F41</td>
<td>59,63,65</td>
<td>(See above.)</td>
</tr>
<tr>
<td><div class="swatch large" style="background: #fff;"></div></td>
<td>White</td>
<td>#FFFFFF</td>
<td>255,255,255</td>
<td>Background color for Content, Settings, Windows, Dialogs</td>
</tr>
<tr>
<td><div class="swatch large" style="background: #f8f8f8;"></div></td>
<td>Nested-White</td>
<td>#F8F8F8</td>
<td>248,248,248</td>
<td>Background color for nested area of Content, Settings</td>
</tr>
<tr>
<td><div class="swatch large" style="background: #dfe2e2;"></div></td>
<td>Light Gray</td>
<td>#DFE2E2</td>
<td>222,226,225</td>
<td>Background color for HUD/Pop-over, Secondary Side Bar</td>
</tr>
<tr>
<td><div class="swatch large" style="background: #d4d7d7;"></div></td>
<td>Nested Light Gray</td>
<td>#D4D7D7</td>
<td>222,226,225</td>
<td>Background color for nested or sunken area of HUD/Pop-over, Secondary Side Bar</td>
</tr>
</table>
<h4 id="icons"><span>Icons</span></h4>
<p>Icons are used to:</p>
<ul>
<li>leverage globally understood visual concepts, or where icons usage is more conventional than text</li>
<li>save space by using an easily understood symbol, where localization or text orientation is constrained</li>
<li>direct the user visually and break down or differentiate elements (i.e. feature lists)</li>
<li>enforce consistency within the application</li>
<li>make the interface visually engaging</li>
</ul>
<h4 id="visual-hierarchy"><span>Visual Hierarchy</span></h4>
<p>Visual hierarchy is used to indicate what is important. Primary objects or actions have the highest contrast to their surroundings.</p>
<h5>Example: TopCoat Button Visual Hierarchy</h5>
<ol>
<li>Call-to-Action</li>
<li>Icon Label Button</li>
<li>Icon Button</li>
<li>Button</li>
<li>Icon Label Button - Quiet</li>
<li>Icon Button - Quiet</li>
<li>Button - Quiet</li>
</ol>
<h4 id="spacing"><span>Spacing</span></h4>
<h5>Example: Spacing in HUD</h5>
<ol>
<li>Parent container padding: 15px</li>
<li>Section Spacing: 10px</li>
<li>Spacing within Sections: 5px</li>
</ol>
<div class="preview"></div>
<ul>
<li>Use spacing to convey association</li>
<li>Item spacing should not be greater than container padding</li>
</ul>
<h4 id="words"><span>Words</span></h4>
<p>
For Headings, Component Labels and Menu Items, capitalize all major words (nouns, verbs, adjectives, adverbs and pronouns) including the second part of hyphenated major words (e.g. Snuggle-Cake, not Snuggle-cake).
</p>
<h4 id="os-wrapper-vs-browser"><span>OS Wrapper vs. Browser</span></h4>
<p>When TopCoat is being used in the context of an OS app, it needs to be a good OS citizen. If it reside within a browser then it should behave more like a web page.</p>
<table class="tabular">
<tr>
<th> </th>
<th>OS Wrapper</th>
<th>Browser</th>
</tr>
<tr>
<td class="var">Cursor Hovering Clickable Component</td>
<td>Default arrow cursor (cursor: default;)</td>
<td>Pointer cursor (cursor: pointer;)</td>
</tr>
<tr>
<td class="var">Hover State</td>
<td>Not Required unless hit area isn't clear</td>
<td>Recommended especially if the hit area isn't clear</td>
</tr>
</table>
</section>
<section id="actions">
<h4 id="button"><span>Button</span></h4>
<table class="preview" role="presentation">
<tr role="presentation">
<td class="bg-light" role="presentation">
<p>
<a href="#button" class="button" role="button">Button</a>
<a class="button disabled" role="button" aria-disabled="true">Disabled Button</a>
</p>
<p>
<a href="#button" class="button quiet" role="button">Quiet Button</a>
<a class="button quiet disabled" role="button" aria-disabled="true">Disabled Quiet Button</a>
</p>
<p>
<a href="#button" class="button large" role="button">Large Button</a>
<a class="button large disabled" role="button" aria-disabled="true">Large Disabled Button</a>
</p>
<p>
<a href="#button" class="button large quiet" role="button">Quiet Button</a>
<a class="button large quiet disabled" role="button" aria-disabled="true">Disabled Quiet Button</a>
</p>
</td>
<td class="bg-slategray" role="presentation">
<p>
<a href="#button" class="button dark" role="button">Button</a>
<a class="button dark disabled" role="button" aria-disabled="true">Disabled Dark Button</a>
</p>
<p>
<a href="#button" class="button dark quiet" role="button">Quiet Button</a>
<a class="button dark quiet disabled" role="button" aria-disabled="true">Disabled Quiet Button</a>
</p>
<p>
<a href="#button" class="button large dark" role="button">Large Button</a>
<a class="button large dark disabled" role="button" aria-disabled="true">Large Disabled Button</a>
</p>
<p>
<a href="#button" class="button large dark quiet" role="button">Large Quiet Button</a>
<a class="button large dark quiet disabled" role="button" aria-disabled="true">Large Disabled Quiet Button</a>
</p>
</td>
</tr>
</table>
<p>Just your average buttons.</p>
<h4 id="icon-button"><span>Icon Button</span></h4>
<table class="preview">
<tr>
<td class="bg-light">
<p>
<a class="button no-label" href="#icon-button" role="button">
<i class="icon-xs example">Icon Button</i>
</a>
<a class="button no-label disabled" role="button" aria-disabled="true">
<i class="icon-xs example">Disabled Icon Button</i>
</a>
</p>
<p>
<a class="button no-label quiet" href="#icon-button" role="button">
<i class="icon-xs example">Quiet Icon Button</i>
</a>
<a class="button no-label quiet disabled" role="button" aria-disabled="true">
<i class="icon-xs example">Disabled Quiet Icon Button</i>
</a>
</p>
<p>
<a class="button no-label large" href="#icon-button" role="button">
<i class="icon-sm example">Large Icon Button</i>
</a>
<a class="button no-label large disabled" role="button" aria-disabled="true">
<i class="icon-sm example">Large Disabled Icon Button</i>
</a>
</p>
<p>
<a class="button no-label quiet large" href="#icon-button" role="button">
<i class="icon-sm example">Large Quiet Icon Button</i>
</a>
<a class="button no-label quiet large disabled" role="button" aria-disabled="true">
<i class="icon-sm example">Large Disabled Quiet Icon Button</i>
</a>
</p>
</td>
<td class="bg-slategray">
<p>
<a class="button no-label dark" href="#icon-button" role="button">
<i class="icon-xs example">Icon Button</i>
</a>
<a class="button no-label dark disabled" role="button" aria-disabled="true">
<i class="icon-xs example">Disabled Icon Button</i>
</a>
</p>
<p>
<a class="button no-label quiet dark" href="#icon-button" role="button">
<i class="icon-xs example">Quiet Icon Button</i>
</a>
<a class="button no-label quiet dark disabled" role="button" aria-disabled="true">
<i class="icon-xs example">Disabled Quiet Icon Button</i>
</a>
</p>
<p>
<a class="button no-label large dark" href="#icon-button" role="button">
<i class="icon-sm example">Large Icon Button</i>
</a>
<a class="button no-label large dark disabled" role="button" aria-disabled="true">
<i class="icon-sm example">Large Disabled Icon Button</i>
</a>
</p>
<p>
<a class="button no-label quiet large dark" href="#icon-button" role="button">
<i class="icon-sm example">Large Quiet Icon Button</i>
</a>
<a class="button no-label quiet large dark disabled" role="button" aria-disabled="true">
<i class="icon-sm example">Large Disabled Quiet Icon Button</i>
</a>
</p>
</td>
</tr>
</table>
<p>Icon buttons save space, use them when visible labels aren't really required. Include a text label within the icon tag to identify the button for assistive technology.</p>
<h4 id="icon-label-button"><span>Icon Label Button</span></h4>
<table class="preview">
<tr>
<td class="bg-light">
<p>
<a class="button" href="#icon-label-button" role="button">
<i class="icon-xs example"></i>
Icon Label Button
</a>
<a class="button disabled" role="button" aria-disabled="true">
<i class="icon-xs example"></i>
Disabled Icon Label Button
</a>
</p>
<p>
<a class="button quiet" href="#icon-label-button" role="button">
<i class="icon-xs example"></i>
Quiet Icon Label Button
</a>
<a class="button quiet disabled" role="button" aria-disabled="true">
<i class="icon-xs example"></i>
Disabled Quiet Icon Label Button
</a>
</p>
<p>
<a class="button large" href="#icon-label-button" role="button">
<i class="icon-sm example"></i>
Large Icon Label Button
</a>
<a class="button large disabled" role="button" aria-disabled="true">
<i class="icon-sm example"></i>
Disabled Large Icon Label Button
</a>
</p>
<p>
<a class="button large quiet" href="#icon-label-button" role="button">
<i class="icon-sm example"></i>
Large Quiet Icon Label Button
</a>
<a class="button large quiet disabled" role="button" aria-disabled="true">
<i class="icon-sm example"></i>
Disabled Large Quiet Icon Label Button
</a>
</p>
</td>
<td class="bg-slategray">
<p>
<a class="button dark" href="#icon-label-button" role="button">
<i class="icon-xs example"></i>
Icon Label Button
</a>
<a class="button dark disabled" role="button" aria-disabled="true">
<i class="icon-xs example"></i>
Disabled Icon Label Button
</a>
</p>
<p>
<a class="button quiet dark" href="#icon-label-button" role="button">
<i class="icon-xs example"></i>
Quiet Icon Label Button
</a>
<a class="button quiet dark disabled" role="button" aria-disabled="true">
<i class="icon-xs example"></i>
Disabled Quiet Icon Label Button
</a>
</p>
<p>
<a class="button large dark" href="#icon-label-button" role="button">
<i class="icon-sm example"></i>
Large Icon Label Button
</a>
<a class="button large dark disabled" role="button" aria-disabled="true">
<i class="icon-sm example"></i>
Disabled Large Icon Label Button
</a>
</p>
<p>
<a class="button large quiet dark" href="#icon-label-button" role="button">
<i class="icon-sm example"></i>
Large Quiet Icon Label Button
</a>
<a class="button large quiet dark disabled" role="button" aria-disabled="true">
<i class="icon-sm example"></i>
Disabled Large Quiet Icon Label Button
</a>
</p>
</td>
</tr>
</table>
<p>Use icon label buttons to call out main actions.</p>
<h4 id="call-to-action-button"><span>Call-to-Action-Button</span></h4>
<table class="preview">
<tr>
<td class="bg-light">
<p>
<a href="#call-to-action-button" class="button cta" role="button">Button</a>
<a class="button cta disabled" role="button" aria-disabled="true">Disabled Button</a>
</p>
<p>
<a href="#call-to-action-button" class="button cta large" role="button">Large Button</a>
<a class="button cta large disabled" role="button" aria-disabled="true">Large Disabled Button</a>
</p>
</td>
<td class="bg-slategray">
<p>
<a href="#call-to-action-button" class="button cta dark" role="button">Button</a>
<a class="button cta dark disabled" role="button" aria-disabled="true">Disabled Button</a>
</p>
<p>
<a href="#call-to-action-button" class="button cta large dark" role="button">Large Button</a>
<a class="button cta large dark disabled" role="button" aria-disabled="true">Large Disabled Button</a>
</p>
</td>
</tr>
</table>
<p>The primary or suggested action in the workflow, there's usually only one of these on a screen.</p>
<h4 id="breadcrumbs"><span>Breadcrumbs</span></h4>
<table class="preview">
<tr>
<td class="bg-light">
<p>
Soon
</p>
</td>
<td class="bg-slategray">
<p>
<ol class="breadcrumbs">
<li><a href="#breadcrumbs">First Level</a></li>
<li><a href="#breadcrumbs">Second Level</a></li>
<li>Third Level</li>
</ol>
</p>
<p>
<ol class="breadcrumbs">
<li><a href="#breadcrumbs">…</a></li>
<li><a href="#breadcrumbs">Fourth Level</a></li>
<li><a href="#breadcrumbs">Fifth Level</a></li>
<li>Sixth Level</li>
</ol>
</p>
<ol class="breadcrumbs large">
<li><a href="#breadcrumbs">First Level</a></li>
<li><a href="#breadcrumbs">Second Level</a></li>
<li>Third Level</li>
</ol>
</p>
<p>
<ol class="breadcrumbs large">
<li><a href="#breadcrumbs">…</a></li>
<li><a href="#breadcrumbs">Fourth Level</a></li>
<li><a href="#breadcrumbs">Fifth Level</a></li>
<li>Sixth Level</li>
</ol>
</p>
</td>
</tr>
</table>
<ul>
<li>Typically appear horizontally across the top of an interface.</li>
<li>They provide links back to each previous page the user navigated through to get to the current page or - in hierarchical site structures - the parent pages of the current one.</li>
<li>breadcrumbs provide a trail for the user to follow back to the starting or entry point. A greater-than sign (>) serves as the hierarchical separator.</li>
</ul>
<h4 id="drop-down"><span>Drop-Down</span></h4>
<table class="preview">
<tr>
<td class="bg-light">
<span class="button drop-down" tabindex="0" role="button" aria-haspopup="true" aria-expanded="true">
Drop-Down
<i class="drop-down-triangle"></i>
<ul class="menu" role="menu">
<li role="presentation"><a href="#drop-down" tabindex="0" role="menuitem">Item 1</a></li>
<li role="presentation"><a href="#drop-down" tabindex="-1" role="menuitem">Item 2</a></li>
<li role="presentation"><a href="#drop-down" tabindex="-1" role="menuitem">Item 3</a></li>
</ul>
</span>
<span class="button drop-down disabled" role="button" aria-haspopup="true" aria-expanded="true" aria-disabled="true">
Drop-Down
<i class="drop-down-triangle"></i>
<ul class="menu" role="menu">
<li role="presentation"><a role="menuitem" aria-disabled="true">Item 1</a></li>
<li role="presentation"><a role="menuitem" aria-disabled="true">Item 2</a></li>
<li role="presentation"><a role="menuitem" aria-disabled="true">Item 3</a></li>
</ul>
</span>
<div class="space"></div>
<span class="button drop-down large" tabindex="0" role="button" aria-haspopup="true" aria-expanded="true">
Drop-Down
<i class="drop-down-triangle"></i>
<ul class="menu" role="menu">
<li role="presentation"><a href="#drop-down" tabindex="0" role="menuitem">Item 1</a></li>
<li role="presentation"><a href="#drop-down" tabindex="-1" role="menuitem">Item 2</a></li>
<li role="presentation"><a href="#drop-down" tabindex="-1" role="menuitem">Item 3</a></li>
</ul>
</span>
<span class="button drop-down large disabled" role="button" aria-haspopup="true" aria-expanded="true" aria-disabled="true">
Drop-Down
<i class="drop-down-triangle"></i>
<ul class="menu" role="menu">
<li role="presentation"><a role="menuitem" aria-disabled="true">Item 1</a></li>
<li role="presentation"><a role="menuitem" aria-disabled="true">Item 2</a></li>
<li role="presentation"><a role="menuitem" aria-disabled="true">Item 3</a></li>
</ul>
</span>
<div class="space"></div>
</td>
<td class="bg-slategray">
<span class="button drop-down dark" tabindex="0" role="button" aria-haspopup="true" aria-expanded="true">
Drop-Down
<i class="drop-down-triangle dark"></i>
<ul class="menu" role="menu">
<li role="presentation"><a href="#drop-down" tabindex="0" role="menuitem">Item 1</a></li>
<li role="presentation"><a href="#drop-down" tabindex="-1" role="menuitem">Item 2</a></li>
<li role="presentation"><a href="#drop-down" tabindex="-1" role="menuitem">Item 3</a></li>
</ul>
</span>
<span class="button drop-down dark disabled" role="button" aria-haspopup="true" aria-expanded="true" aria-disabled="true">
Drop-Down
<i class="drop-down-triangle dark"></i>
<ul class="menu" role="menu">
<li role="presentation"><a role="menuitem" aria-disabled="true">Item 1</a></li>
<li role="presentation"><a role="menuitem" aria-disabled="true">Item 2</a></li>
<li role="presentation"><a role="menuitem" aria-disabled="true">Item 3</a></li>
</ul>
</span>
<div class="space"></div>
<span class="button drop-down large dark" tabindex="0" role="button" aria-haspopup="true" aria-expanded="true">
Drop-Down
<i class="drop-down-triangle dark"></i>
<ul class="menu" role="menu">
<li role="presentation"><a href="#drop-down" tabindex="0" role="menuitem">Item 1</a></li>
<li role="presentation"><a href="#drop-down" tabindex="-1" role="menuitem">Item 2</a></li>
<li role="presentation"><a href="#drop-down" tabindex="-1" role="menuitem">Item 3</a></li>
</ul>
</span>
<span class="button drop-down large dark disabled" role="button" aria-haspopup="true" aria-expanded="true" aria-disabled="true">
Drop-Down
<i class="drop-down-triangle dark"></i>
<ul class="menu" role="menu">
<li role="presentation"><a role="menuitem" aria-disabled="true">Item 1</a></li>
<li role="presentation"><a role="menuitem" aria-disabled="true">Item 2</a></li>
<li role="presentation"><a role="menuitem" aria-disabled="true">Item 3</a></li>
</ul>
</span>
<div class="space"></div>
</td>
</tr>
</table>
<ul>
<li>This is generally used to reveal a set of actions or navigation items. This shouldn't be used in settings or forms.</li>
<li>Always opens up a fly-out surface</li>
<li>Fly-out surfaces never covers the drop-down</li>
<li>Clicking once on the button opens up the panel</li>
<li>Once a surface is open it remains open until the user clicks outside of the surfaces</li>
</ul>
<h4 id="Split-Action"><span>Split-Action</span></h4>
<table class="preview">
<tr>
<td class="bg-light" style="white-space: nowrap;">
<span class="button-group">
<a class="button start" href="#Split-Action" role="button">Split-Action</a>
<a class="button more" href="#Split-Action" role="button" aria-haspopup="true" aria-expanded="true"><i class="drop-down-triangle">Select an Action</i></a>
<ul class="menu" role="menu">
<li role="presentation"><a href="#Split-Action" role="menuitem" tabindex="0">Item 1</a></li>
<li role="presentation"><a href="#Split-Action" role="menuitem" tabindex="-1">Item 2</a></li>
<li role="presentation"><a href="#Split-Action" role="menuitem" tabindex="-1">Item 3</a></li>
</ul>
</span>
<span class="button-group disabled">
<a class="button start" role="button" aria-disabled="true">Split-Action</a>
<a class="button more" role="button" aria-haspopup="true" aria-expanded="true" aria-disabled="true"><i class="drop-down-triangle">Select an Action</i></a>
<ul class="menu" role="menu">
<li role="presentation"><a role="menuitem" aria-disabled="true">Item 1</a></li>
<li role="presentation"><a role="menuitem" aria-disabled="true">Item 2</a></li>
<li role="presentation"><a role="menuitem" aria-disabled="true">Item 3</a></li>
</ul>
</span>
<div class="space"></div>
<span class="button-group large">
<a class="button start large" href="#Split-Action" role="button">Split-Action</a>
<a class="button more large" href="#Split-Action" role="button" aria-haspopup="true" aria-expanded="true"><i class="drop-down-triangle">Select an Action</i></a>
<ul class="menu" role="menu">
<li role="presentation"><a href="#Split-Action" role="menuitem" tabindex="0">Item 1</a></li>
<li role="presentation"><a href="#Split-Action" role="menuitem" tabindex="-1">Item 2</a></li>
<li role="presentation"><a href="#Split-Action" role="menuitem" tabindex="-1">Item 3</a></li>
</ul>
</span>
<span class="button-group large disabled">
<a class="button start large" role="button" aria-disabled="true">Split-Action</a>
<a class="button more large" role="button" aria-haspopup="true" aria-expanded="true" aria-disabled="true"><i class="drop-down-triangle">Select an Action</i></a>
<ul class="menu" role="menu">
<li role="presentation"><a role="menuitem" aria-disabled="true">Item 1</a></li>
<li role="presentation"><a role="menuitem" aria-disabled="true">Item 2</a></li>
<li role="presentation"><a role="menuitem" aria-disabled="true">Item 3</a></li>
</ul>
</span>
<div class="space"></div>
</td>
<td class="bg-slategray" style="white-space: nowrap;">
<span class="button-group">
<a class="button start dark" href="#Split-Action" role="button">Split-Action</a>
<a class="button more dark" href="#Split-Action" role="button" aria-haspopup="true" aria-expanded="true"><i class="drop-down-triangle dark">Select an Action</i></a>
<ul class="menu" role="menu">
<li role="presentation"><a href="#Split-Action" role="menuitem" tabindex="0">Item 1</a></li>
<li role="presentation"><a href="#Split-Action" role="menuitem" tabindex="-1">Item 2</a></li>
<li role="presentation"><a href="#Split-Action" role="menuitem" tabindex="-1">Item 3</a></li>
</ul>
</span>
<span class="button-group disabled">
<a class="button start dark" role="button" aria-disabled="true">Split-Action</a>
<a class="button more dark" role="button" aria-haspopup="true" aria-expanded="true" aria-disabled="true"><i class="drop-down-triangle dark">Select an Action</i></a>
<ul class="menu" role="menu">
<li role="presentation"><a role="menuitem" aria-disabled="true">Item 1</a></li>
<li role="presentation"><a role="menuitem" aria-disabled="true">Item 2</a></li>
<li role="presentation"><a role="menuitem" aria-disabled="true">Item 3</a></li>
</ul>
</span>
<div class="space"></div>
<span class="button-group large">
<a class="button start large dark" href="#Split-Action" role="button">Split-Action</a>
<a class="button more large dark" href="#Split-Action" role="button" aria-haspopup="true" aria-expanded="true"><i class="drop-down-triangle dark">Select an Action</i></a>
<ul class="menu" role="menu">
<li role="presentation"><a href="#Split-Action" role="menuitem" tabindex="0">Item 1</a></li>
<li role="presentation"><a href="#Split-Action" role="menuitem" tabindex="-1">Item 2</a></li>
<li role="presentation"><a href="#Split-Action" role="menuitem" tabindex="-1">Item 3</a></li>
</ul>
</span>
<span class="button-group large disabled">
<a class="button start large dark" role="button" aria-disabled="true">Split-Action</a>
<a class="button more large dark" role="button" aria-haspopup="true" aria-expanded="true" aria-disabled="true"><i class="drop-down-triangle dark">Select an Action</i></a>
<ul class="menu" role="menu">
<li role="presentation"><a role="menuitem" aria-disabled="true">Item 1</a></li>
<li role="presentation"><a role="menuitem" aria-disabled="true">Item 2</a></li>
<li role="presentation"><a role="menuitem" aria-disabled="true">Item 3</a></li>
</ul>
</span>
<div class="space"></div>
</td>
</tr>
</table>
<h4 id="link"><span>Link</span></h4>
<table class="fonts tabular">
<tr>
<th class="bg-white">On White</th>
<th class="bg-lightgray">On Light Gray</th>
<th class="bg-slategray">On Slate Gray</th>
</tr>
<tr>
<td class="bg-white">
<p><a class="link" href="#link">Standard Link</a></p>
<p><a class="link large" href="#link">Large Link</a></p>
</td>
<td class="bg-lightgray">
<p><a class="link" href="#link">Standard Link</a></p>
<p><a class="link large" href="#link">Large Link</a></p>
</td>
<td class="bg-slategray">
<p><a class="link dark" href="#link">Standard Link</a></p>
<p><a class="link large dark" href="#link">Large Link</a></p>
</td>
</tr>
</table>
<p>Generally used for inline actions in Applications.</p>
<h4 id="button-bar"><span>Button Bar</span></h4>
<table class="preview">
<tr>
<td class="bg-light">
<p>
<span class="button-group">
<a class="button start" href="#button-bar" role="button">Button 1</a>
<a class="button inside" href="#button-bar" role="button">Button 2</a>
<a class="button end" href="#button-bar" role="button">Button 3</a>
</span>
<span class="button-group disabled">
<a class="button start" role="button" aria-disabled="true">Button 1</a>
<a class="button inside" role="button" aria-disabled="true">Button 2</a>
<a class="button end" role="button" aria-disabled="true">Button 3</a>
</span>
</p>
<p>
<span class="button-group large">
<a class="button start large" href="#button-bar" role="button">Button 1</a>
<a class="button inside large" href="#button-bar" role="button">Button 2</a>
<a class="button end large" href="#button-bar" role="button">Button 3</a>
</span>
<span class="button-group large disabled">
<a class="button start large" role="button" aria-disabled="true">Button 1</a>
<a class="button inside large" role="button" aria-disabled="true">Button 2</a>
<a class="button end large" role="button" aria-disabled="true">Button 3</a>
</span>
</p>
</td>
<td class="bg-slategray">
<p>
<span class="button-group">
<a class="button start dark" href="#button-bar" role="button">Button 1</a>
<a class="button inside dark" href="#button-bar" role="button">Button 2</a>
<a class="button end dark" href="#button-bar" role="button">Button 3</a>
</span>
<span class="button-group disabled">
<a class="button start dark" role="button" aria-disabled="true">Button 1</a>
<a class="button inside dark" role="button" aria-disabled="true">Button 2</a>
<a class="button end dark" role="button" aria-disabled="true">Button 3</a>
</span>
</p>
<p>
<span class="button-group large">
<a class="button start dark large" href="#button-bar" role="button">Button 1</a>
<a class="button inside dark large" href="#button-bar" role="button">Button 2</a>
<a class="button end dark large" href="#button-bar" role="button">Button 3</a>
</span>
<span class="button-group large disabled">
<a class="button start dark large" role="button" aria-disabled="true">Button 1</a>
<a class="button inside dark large" role="button" aria-disabled="true">Button 2</a>
<a class="button end dark large" role="button" aria-disabled="true">Button 3</a>
</span>
</p>
</td>
</tr>
</table>
<ul>
<li>When a button is selected, others within the group are deselected</li>
<li>Should always accompanied by comprehensive and clearly distinct text</li>
<li>Best used when choices should be shown, involve more than one choice, or the options can not be described as opposite</li>
<li>Also used to change pages within group boxes and dialogs</li>
</ul>
</section> <!-- end of #actions -->
<section id="toggles">
<h4 id="slide-switch"><span>Slide Switch</span></h4>
<table class="preview">
<tr>
<td class="bg-light">
<p>
<label class="slide-switch">
<input type="checkbox" />
<span class="wrapper">
<span class="on">ON</span>
<span class="switch"></span>
<span class="off">OFF</span>
</span>
</label>
</p>
<p>
<label class="slide-switch large">
<input type="checkbox" />
<span class="wrapper">
<span class="on">ON</span>
<span class="switch"></span>
<span class="off">OFF</span>
</span>
</label>
</p>
</td>
<td class="bg-slategray">
<p>
<label class="slide-switch dark">
<input type="checkbox" />
<span class="wrapper">
<span class="on">ON</span>
<span class="switch"></span>
<span class="off">OFF</span>
</span>
</label>
</p>
<p>
<label class="slide-switch large dark">
<input type="checkbox" />
<span class="wrapper">
<span class="on">ON</span>
<span class="switch"></span>
<span class="off">OFF</span>
</span>
</label>
</p>
</td>
</tr>
</table>
<p>Use this as the primary on/off or binary switch.</p>
<ul>
<li>Should be accompanied by positive and active text</li>
<li>Use to indicate binary choice, such as settings are either 'on' or 'off'</li>
<li>Do not allow binary buttons to become excessive. Any more than 6 might indicate that the design should use some other method.</li>
</ul>
<h4 id="toggle-buttons"><span>Toggle Buttons</span></h4>
<table class="preview">
<tr>
<td class="bg-light">
Soon
</td>
<td class="bg-slategray">
Soon
</td>
</tr>
</table>
<h4 id="tabs"><span>Tabs</span></h4>
<table class="preview">
<tr>
<td class="bg-light">
Soon
</td>
<td class="bg-slategray">
Soon
</td>
</tr>
</table>
<p>Tabs allow multiple documents or screens to be contained within an area and tabs are used to navigate between them.</p>
<h4 id="disclosure-toggle"><span>Disclosure Toggle</span></h4>
<table class="preview">
<tr>
<td class="bg-light">
Soon
</td>
<td class="bg-slategray">
Soon
</td>
</tr>
</table>
<p>Usability can be improved by only presenting the minimum data required to perform the task. We can hide additional data (advanced or extra features) by default and use the disclosure toggle to reveal them when they are needed.</p>
</section> <!-- end of #toggles -->
<section id="settings">
<h4 id="text-field"><span>Text Field</span></h4>
<table class="preview">
<td class="bg-light">
<p>
<label>
Text Field<br>
<input class="text-field" type="text" name="text_field" placeholder="Placeholder Text" />
</label>
</p>
<p>
<label>
Disabled State<br>
<input class="text-field" type="text" name="text_field" placeholder="Placeholder Text" disabled="disabled" aria-disabled="true" />
</label>
</p>
<p>
<label>
Error State<br>
<input class="text-field error" type="text" name="text_field" placeholder="Placeholder Text" aria-invalid="true" />
</label>
</p>
<p>
<label class="large">
Large Text Field<br>
<input class="text-field large" type="text" name="text_field" placeholder="Placeholder Text" />
</label>
</p>
</td>
<td class="bg-slategray">
<p>
<label>
Text Field<br>
<input class="text-field dark" type="text" name="text_field" placeholder="Placeholder Text" />
</label>
</p>
<p>
<label>
Disabled State<br>
<input class="text-field dark" type="text" name="text_field" placeholder="Placeholder Text" disabled="disabled" aria-disabled="true" />
</label>
</p>
<p>
<label>
Error State<br>
<input class="text-field dark error" type="text" name="text_field" placeholder="Placeholder Text" aria-invalid="true" />
</label>
</p>
<p>
<label class="large">
Large Text Field<br>
<input class="text-field dark large" type="text" name="text_field" placeholder="Placeholder Text" />
</label>
</p>
</td>
</table>
<p>A text field is used to input a variable or string.</p>