-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·1843 lines (1837 loc) · 91.5 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>
<head>
<title>Informatica Component Library</title>
<link type="text/css" rel="stylesheet" href="dist/css/informatica.css" />
<style>
.section {
display: block;
/* width: 100%; */
margin: 20px;
border-bottom: 3px solid #333;
}
.section > h1 {
color: red;
}
.sub-section {
display: block;
margin: 10px;
}
.sub-section > h4 {
color: blue;
}
.component {
display: block;
margin: 5px;
}
</style>
</head>
<body style="margin-top: 40px">
<header>
<table class="headerbar fixed-top">
<tr>
<td width="140px"><img src="dist/images/infa-logo.png" alt="Informatica" /></td>
<td width="80px" class="dropdown">
<!-- Here the td itself can act as .dropdown -->
<a class="dropdown-link" href="#">Component<span class="icon icon-carat"></span></a>
<ul class="dropdown-menu">
<li class="dropdown-menu-header text-infa-orange">Scaffolding / Basic</li>
<li><a href="#typography">Typography</a></li>
<li><a href="#grids">Grids</a></li>
<li><a href="#form">Form Elements</a></li>
<li><a href="#buttons">Buttons</a></li>
<li><a href="#lists">Lists</a></li>
<li><a href="#icons"><span class="icon icon-asset"></span>Icons</a></li>
<li><a href="#tables">Tables</a></li>
<li><a href="#dropdowns">Dropdowns</a></li>
<hr class="divider" />
<li class="dropdown-menu-header text-infa-orange">Bars</li>
<li><a href="#headerbar">Headerbar</a></li>
<li><a href="#titlebar">Titlebar</a></li>
<li><a href="#tabs">Tabs</a></li>
<li><a href="#modal">Modal</a></li>
<li class="dropdown-menu-header text-infa-dblue">Menu Header</li>
<li><a href="#">Another Item</a></li>
<li><a href="#">Just a link</a></li>
<li>No hyperlink</li>
<hr class="divider" />
<li class="dropdown-menu-header">Menu Header</li>
<li><a href="#">Just a link</a></li>
<li><a href="#"><span class="icon icon-asset"></span>With Icon</a></li>
</ul>
</td>
<td width="150px"><a href="./templates/">Sample Templates</a></td>
<td><input type="search" placeholder="Search All" style="width: 40%" /></td>
<td width="20px"><span class="icon icon-flag"></span></td>
<td width="80px"><a href="#">Manage</a></td>
<td width="100px"><a href="#">Username</a></td>
<td width="30px"><span class="icon icon-help"></span></td>
<td width="50px"><span class="icon icon-action"></span></td>
</tr>
</table>
</header>
<div id="component_container" class="clearfix scrollable">
<div id="primary-tabs" class="tabs-container">
<ul class="tabs">
<li class="active"><a href="#typography" class="infa-green" data-toggle="tab">Typography</a></li>
<li><a href="#grids" data-toggle="tab">Grids</a></li>
<li><a href="#form_elements" data-toggle="tab">Form Elements</a></li>
<li><a href="#buttons" data-toggle="tab">Buttons</a></li>
<li><a href="#lists" data-toggle="tab">Lists</a></li>
<li><a href="#icons" data-toggle="tab">icons</a></li>
<li><a href="#tables" data-toggle="tab">Grid View / Tables</a></li>
<li><a href="#dropdowns" data-toggle="tab">Dropdowns</a></li>
<li><a href="#headerbar" data-toggle="tab">Headerbar</a></li>
<li><a href="#titlebar" data-toggle="tab">Titlebar</a></li>
<li><a href="#tabs" data-toggle="tab">Tabs</a></li>
<li><a href="#boxes" data-toggle="tab">Boxes</a></li>
<li><a href="#wizard" data-toggle="tab">Wizard</a></li>
<li><a href="#modal" data-toggle="tab">Modal</a></li>
<li><a href="#accordian" data-toggle="tab">Accordians</a></li>
<li><a href="#tree" data-toggle="tab">Tree</a></li>
<li><a href="#shuttle" data-toggle="tab">Shutte</a></li>
</ul>
<!-- Tab panes -->
<div class="tabs-content">
<div class="tabs-pane active" id="typography">
<h1>Typography</h1>
<div class="sub-section">
<h4>Sub-section: Headings</h4>
<h1 class="heading-1">Heading 1</h1>
<h2 class="heading-2">Heading 2</h2>
<h3 class="heading-3">Heading 3</h3>
<h4 class="heading-4">Heading 4</h4>
<h5 class="heading-5">Heading 5</h5>
</div>
<div class="sub-section">
<h4>Sub-section: Other Types of Text</h4>
<p class="text-disabled">Disabled Text. Lorem Ipsum.. asdfas aef</p>
<p class="title">this is a title text</p>
<p class="sub-title">this is a title text</p>
<p class="text-bold">apply <span>.text-bold</span> to see text in bold</p>
<p class="text-center">Center Alignned</p>
<p class="text-right">right Alignned</p>
<p class="text-left">left Alignned</p>
<p class="text-infa-green">coloured text</p>
<p class="text-infa-lblue">coloured text</p>
<p class="text-infa-dblue">coloured text</p>
<p class="text-infa-gray">coloured text</p>
<p class="text-infa-red">coloured text</p>
<p>Big Number</p>
<p class="text-big-number text-infa-lblue">294</p>
<p>Medium Number</p>
<p class="text-medium-number">294</p>
<p>This is a paragraph</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
</div>
<div class="tabs-pane" id="grids">
<h1>Grids</h1>
<div class="sub-section">
<h4>Sub-section: Simple Grids</h4>
<div class="container">
<div class="col col-2" style="height: 20px; background: #ccc;">col-2</div>
<div class="col col-3" style="height: 20px; background: #eee;">col-3</div>
</div>
<div class="container">
<div class="col col-4" style="height: 20px; background: #ccc;">col-4</div>
<div class="col col-1" style="height: 20px; background: #eee;">col-1</div>
</div>
<div class="container">
<div class="col col-1" style="height: 20px; background: #ccc;">col-1</div>
<div class="col col-1" style="height: 20px; background: #eee;">col-1</div>
<div class="col col-1" style="height: 20px; background: #ccc;">col-1</div>
<div class="col col-1" style="height: 20px; background: #eee;">col-1</div>
<div class="col col-1" style="height: 20px; background: #ccc;">col-1</div>
<div class="col col-1" style="height: 20px; background: #eee;">col-1</div>
<div class="col col-1" style="height: 20px; background: #ccc;">col-1</div>
<div class="col col-1" style="height: 20px; background: #eee;">col-1</div>
<div class="col col-1" style="height: 20px; background: #ccc;">col-1</div>
<div class="col col-1" style="height: 20px; background: #eee;">col-1</div>
</div>
<h4>Sub-section: Grids inside other grids</h4>
<div class="container">
<div class="col col-2" style="background: #ccc;">
<div class="col col-5" style="height: 20px; background: blue;">col-5 inside col-2</div>
<div class="col col-5" style="height: 20px; background: red;">col-5 inside col-2</div>
</div>
<div class="col col-8" style="background: #eee;">
<div class="col col-6" style="height: 20px; background: blue;">col-6 inside col-8</div>
<div class="col col-4" style="height: 20px; background: red;">col-4 inside col-8</div>
</div>
</div>
</div>
</div>
<div class="tabs-pane" id="form_elements">
<h1>Form Elements</h1>
<div class="sub-section">
<h4>Sub-section: Text boxs, Password box</h4>
<table class="infa-table" style="width: 50%">
<thead>
<tr>
<th>Tag Type</th>
<th>Form Elements</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>input[type=text]</code></td>
<td><input type="text" /></td>
</tr>
<tr>
<td><code>input[type=text]</code> with placeholder</td>
<td><input type="text" placeholder="type something here.." /></td>
</tr>
<tr>
<td><code>input[type=text]</code> with a label</td>
<td><label>I am a label</label><input type="text" placeholder="textbox with a label.." /></td>
</tr>
<tr>
<td><code>input[type=email]</code></td>
<td>
<form><input type="email" placeholder="Enter Email" pattern='/^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/' /></form>
</td>
</tr>
<tr>
<td><code>input[type=password]</code></td>
<td><input type="password" placeholder="Enter password" /></td>
</tr>
<tr>
<td><code>input[type=number]</code></td>
<td>
<form><input type="number" placeholder="Enter Number" min="0" value="2" max="10" step="2" pattern="[0-9]" /></form>
</td>
</tr>
<tr>
<td><code>input[type=tel]</code></td>
<td><input type="tel" placeholder="Enter Telephone Number" value="999-99-99" /></td>
</tr>
<tr>
<td><code>input[type=date]</code></td>
<td><input type="date" placeholder="Enter Date" /></td>
</tr>
<tr>
<td><code>input[type=time]</code></td>
<td><input type="time" placeholder="Enter time" /></td>
</tr>
<tr>
<td><code>input[type=range]</code></td>
<td><input type="range" placeholder="Enter Number" value="3" /></td>
</tr>
<tr>
<td><code>textarea</code></td>
<td><textarea></textarea></td>
</tr>
<tr>
<td>Disabled Textbox</td>
<td><input type="text" placeholder="I am disabled" disabled /></td>
</tr>
<tr>
<td><code>input[type=submit]</code></td>
<td><input type="submit" value="I am a submit button" /></td>
</tr>
<tr>
<td><code>input[type=file]</code></td>
<td><input type="file" /></td>
</tr>
</tbody>
</table>
</div>
<div class="sub-section">
<h4>Sub-section: Checkboxes and Radio Boxes</h4>
<div class="component">
<input type="checkbox" name="checkbox1">Option 1
<input type="checkbox" name="checkbox1">Option 2
<input type="checkbox" name="checkbox1">Option 3
<input type="checkbox" name="checkbox1">Option 4
</div>
<div class="component">
<input type="radio" name="radiobox1">Option 1
<input type="radio" name="radiobox1">Option 2
<input type="radio" name="radiobox1">Option 3
<input type="radio" name="radiobox1">Option 4
</div>
</div>
<div class="sub-section">
<h4>Sub-section: Select</h4>
<div class="component">
<select>
<option>BMW</option>
<option>Benz</option>
<option>Volvo</option>
<option>Maseratti</option>
<option>Tesla</option>
</select>
</div>
</div>
</div>
<div class="tabs-pane" id="buttons">
<h1>Buttons</h1>
<div class="sub-section">
<h4>Sub-section: Buttons</h4>
<table class="infa-table" style="width: 50%">
<thead>
<tr>
<th>Class Name</th>
<th>Buttons</th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
<td><button>Default Button</button></td>
</tr>
<tr>
<td></td>
<td><input type="submit" value="Submit Button" /></td>
</tr>
<tr>
<td><code>.btn-primary</code></td>
<td><button class="btn-primary">Primary Button</button></td>
</tr>
<tr>
<td><code>.active</code></td>
<td><button class="active">Active Button</button></td>
</tr>
<tr>
<td><code>.disabled</code></td>
<td><button class="disabled">Disabled Button</button></td>
</tr>
<tr>
<td><code>.btn-next</code></td>
<td><button class="btn-next">Next</button></td>
</tr>
<tr>
<td><code>.btn-prev</code></td>
<td><button class="btn-prev">Prev</button></td>
</tr>
<tr>
<td><code>.dropdown</code></td>
<td>
<button class="btn dropdown">
<a class="dropdown-link" href="#">Link<span class="icon icon-carat"></span></a>
<ul class="dropdown-menu">
<li class="dropdown-menu-header text-infa-orange">Menu Header</li>
<li><a href="#">Sub menu item 1</a></li>
<li><a href="#">Another Item</a></li>
<li><a href="#"><span class="icon icon-asset"></span>With Icon</a></li>
<li><a href="#"><input type="checkbox" />Sub menu item 1</a></li>
<li class="disabled">Disabled Link</li>
<hr class="divider" />
<li class="dropdown-menu-header text-infa-dblue">Menu Header</li>
<li><a href="#">Another Item</a></li>
<li><a href="#">Just a link</a></li>
<li>No hyperlink</li>
<hr class="divider" />
<li class="dropdown-menu-header">Menu Header</li>
<li><a href="#">Just a link</a></li>
<li><a href="#"><span class="icon icon-asset"></span>With Icon</a></li>
</ul>
</button>
</td>
</tr>
<tr>
<td><code>.btn-file</code></td>
<td><input type="file" /></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="tabs-pane" id="lists">
<h1>Lists</h1>
<div class="sub-section">
<h4>Sub-section: Simple Lists</h4>
<div class="component">
<ul class="infa-list">
<li>Single List Item</li>
<li><a href="#">List Item Anchor</a></li>
<li><a href="#"><span class="icon icon-asset"></span>List Item Anchored with Icon</a></li>
<li class="selected"><a href="#">List Item Selected with anchor</a></li>
</ul>
<ul class="infa-list">
<li>Single List Item</li>
<li><a href="#">List Item Anchor</a></li>
<li><a href="#"><span class="icon icon-asset"></span>List Item Anchored with Icon</a></li>
<li class="selected">List Item Selected</li>
</ul>
</div><!-- END .component -->
</div>
<div class="sub-section">
<h4>Sub-section: Searchable List</h4>
<div class="component">
<input id="txt_search_list" type="search" placeholder="Search List" search_id="searchable_list" />
<ul id="searchable_list" class="infa-list">
<li><input type="radio" value="Single List Item" name="radio_list" />Single List Item</li>
<li><a href="#"><input type="radio" name="radio_list" />List Item Anchor</a></li>
<li><a href="#"><input type="radio" name="radio_list" /><span class="icon icon-asset"></span>List Item Anchored with Icon</a></li>
<li class="selected"><a href="#"><input type="radio" name="radio_list" />List Item Selected with anchor</a></li>
</ul>
</div><!-- END .component -->
</div>
</div>
<div class="tabs-pane" id="icons">
<h1>Icons</h1>
<div class="sub-section">
<h4>Sub Section: All Menu Icons</h4>
<p>These icons are sized 16x16 px</p>
<table class="infa-table" id="table-icons" style="width: 30%">
<thead>
<tr>
<th width="25%">Class Name</th>
<th width="10%">Icon</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>icon-folder-open</code></td>
<td><span class="icon icon-folder-open"></span></td>
</tr>
<tr>
<td><code>icon-folder-closed</code></td>
<td><span class="icon icon-folder-closed"></span></td>
</tr>
<tr>
<td><code>icon-asset</code></td>
<td><span class="icon icon-asset"></span></td>
</tr>
<tr>
<td><code>icon-glossary</code></td>
<td><span class="icon icon-glossary"></span></td>
</tr>
<tr>
<td><code>icon-category</code></td>
<td><span class="icon icon-category"></span></td>
</tr>
<tr>
<td><code>icon-policy</code></td>
<td><span class="icon icon-policy"></span></td>
</tr>
<tr>
<td><code>icon-data-domain-group</code></td>
<td><span class="icon icon-data-domain-group"></span></td>
</tr>
<tr>
<td><code>icon-business-applications</code></td>
<td><span class="icon icon-business-applications"></span></td>
</tr>
<tr>
<td><code>icon-synonym</code></td>
<td><span class="icon icon-synonym"></span></td>
</tr>
<tr>
<td><code>icon-data-domain</code></td>
<td><span class="icon icon-data-domain"></span></td>
</tr>
<tr>
<td><code>icon-connection</code></td>
<td><span class="icon icon-connection"></span></td>
</tr>
<tr>
<td><code>icon-pie-chart</code></td>
<td><span class="icon icon-pie-chart"></span></td>
</tr>
<tr>
<td><code>icon-discovery-profile</code></td>
<td><span class="icon icon-discovery-profile"></span></td>
</tr>
<tr>
<td><code>icon-columns</code></td>
<td><span class="icon icon-columns"></span></td>
</tr>
<tr>
<td><code>icon-schema</code></td>
<td><span class="icon icon-schema"></span></td>
</tr>
<tr>
<td><code>icon-view</code></td>
<td><span class="icon icon-view"></span></td>
</tr>
<tr>
<td><code>icon-mapplet</code></td>
<td><span class="icon icon-mapplet"></span></td>
</tr>
<tr>
<td><code>icon-mapping-spec</code></td>
<td><span class="icon icon-mapping-spec"></span></td>
</tr>
<tr>
<td><code>icon-reference-table</code></td>
<td><span class="icon icon-reference-table"></span></td>
</tr>
<tr>
<td><code>icon-definition</code></td>
<td><span class="icon icon-definition"></span></td>
</tr>
<tr>
<td><code>icon-scorecard</code></td>
<td><span class="icon icon-scorecard"></span></td>
</tr>
<tr>
<td><code>icon-project</code></td>
<td><span class="icon icon-project"></span></td>
</tr>
<tr>
<td><code>icon-function</code></td>
<td><span class="icon icon-function"></span></td>
</tr>
<tr>
<td><code>icon-action</code></td>
<td><span class="icon icon-action"></span></td>
</tr>
<tr>
<td><code>icon-search</code></td>
<td><span class="icon icon-search"></span></td>
</tr>
<tr>
<td><code>icon-refresh</code></td>
<td><span class="icon icon-refresh"></span></td>
</tr>
<tr>
<td><code>icon-bin</code></td>
<td><span class="icon icon-bin"></span></td>
</tr>
<tr>
<td><code>icon-cross</code></td>
<td><span class="icon icon-cross"></span></td>
</tr>
<tr>
<td><code>icon-cross-small</code></td>
<td><span class="icon icon-cross-small"></span></td>
</tr>
<tr>
<td><code>icon-warning</code></td>
<td><span class="icon icon-warning"></span></td>
</tr>
<tr>
<td><code>icon-clear-filter</code></td>
<td><span class="icon icon-clear-filter"></span></td>
</tr>
<tr>
<td><code>icon-help</code></td>
<td><span class="icon icon-help"></span></td>
</tr>
<tr>
<td><code>icon-flag</code></td>
<td><span class="icon icon-flag"></span></td>
</tr>
<tr>
<td><code>icon-calendar</code></td>
<td><span class="icon icon-calendar"></span></td>
</tr>
<tr>
<td><code>icon-cross-circle</code></td>
<td><span class="icon icon-cross-circle"></span></td>
</tr>
<tr>
<td><code>icon-arrow</code></td>
<td><span class="icon icon-arrow"></span></td>
</tr>
<tr>
<td><code>icon-arrow-right</code></td>
<td><span class="icon icon-arrow-right"></span></td>
</tr>
<tr>
<td><code>icon-arrow-left</code></td>
<td><span class="icon icon-arrow-left"></span></td>
</tr>
<tr>
<td><code>icon-arrow-closed</code></td>
<td><span class="icon icon-arrow-closed"></span></td>
</tr>
<tr>
<td><code>icon-arrow-open</code></td>
<td><span class="icon icon-arrow-open"></span></td>
</tr>
<tr>
<td><code>icon-status-pass</code></td>
<td><span class="icon icon-status-pass"></span></td>
</tr>
<tr>
<td><code>icon-status-fail</code></td>
<td><span class="icon icon-status-fail"></span></td>
</tr>
<tr>
<td><code>icon-status-not-tested</code></td>
<td><span class="icon icon-status-not-tested"></span></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="tabs-pane" id="tables">
<h1>Grid View / Tables</h1>
<div class="sub-section" id="grid_view">
<p>A grid view is a panel view designed to present tabular data in columns and rows. Grid views have several optional features which may be enabled or disabled as appropriate for the particular use case. These include column sorting, column resizing, column reordering, column customization, row numbering, row selection, grouping, pagination, and inline editing.</p>
<div class="sub-section">
<h2>Goals</h2>
<p>Users need the ability to view, interact with, and edit tabular data in rows and columns.</p>
<h2>Solutions</h2>
<ul class="listitems">
<li class="text">Typically, the columns of a grid view represent the data’s common attributes or fields and the
rows of a grid view represent individual records of data.</li>
<li class="text">A row of column headers appears at the top of the grid view. Each column header contains a label
that describes the data in that column. If column customization and/or grouping are enabled, then rolling over a
column header with the mouse will cause a menu icon to appear on its right side. Clicking this icon will open a
column menu containing a list of available actions.</li>
<li class="text">By default, the columns of a grid view should be of an appropriate width so that neither the
column labels nor the data are truncated but the space between columns is not excessive.
</li>
<li class="text">If either the column label or the data are truncated due to an insufficiently wide column, then
ellipses will appear at the end of the visible text. Rolling over a truncated column label or value will display
a tooltip containing the entire value.</li>
<li class="text">The rows of a grid view feature zebra striping to facilitate the viewing of data. Odd-numbered
rows are white and even-numbered rows are lightly shaded. Empty areas of the grid to the right of the last
column or underneath the last row are not zebra striped. There are no visible borders between columns.</li>
<li class="text">Horizontal and/or vertical scrollbars appear when necessary. The vertical scrollbar appears
underneath the row of column headers.</li>
<li class="text">If there is no data to display in a grid, then a message view should appear in place of the grid view
to explain why there are no data and what the user can do about it.</li>
<ul class="listitems">
<li class="listheading">Column Sorting</li>
<li class="text">When <strong>column sorting</strong> is enabled in a grid view, clicking a column header will
sort the grid data by that column in ascending order. An ascending sort icon will appear to the right of the
column label. If the grid data is already sorted by that column in ascending order, then clicking the column
header will sort the data in descending order. A descending sort icon will appear to the right of the column
label.</li>
</ul>
</ul>
<div class="component">
<table class="infa-table">
<thead>
<tr>
<th>Name</th>
<th>Desc</th>
<th>Something Else</th>
<th>Something Else that is quite long</th>
</tr>
</thead>
<tbody>
<tr>
<td>Italy</td>
<td>Capital is </td>
<td>Lorem ipsum asdf fape a</td>
<td>Lorem ipsum asdf fape a asdf vherja a;lesd</td>
</tr>
<tr>
<td>Italy</td>
<td>Capital is </td>
<td>Lorem ipsum asdf fape a</td>
<td>Lorem ipsum asdf fape a asdf vherja a;lesd</td>
</tr>
<tr>
<td>Italy</td>
<td>Capital is </td>
<td>Lorem ipsum asdf fape a</td>
<td>Lorem ipsum asdf fape a asdf vherja a;lesd</td>
</tr>
<tr>
<td>Italy</td>
<td>Capital is </td>
<td>Lorem ipsum asdf fape a</td>
<td>Lorem ipsum asdf fape a asdf vherja a;lesd</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="sub-section">
<h2>Column Sorting</h2>
<ul>
<li>When column sorting is enabled in a grid view, clicking a column header will sort the grid data by that column in ascending order. An ascending sort icon will appear to the right of the column label. If the grid data is already sorted by that column in ascending order, then clicking the column header will sort the data in descending order. A descending sort icon will appear to the right of the column label.</li>
<li class="text">If column customization and/or grouping are enabled, then users may also sort the data by a particular column by selecting the <em>Sort Ascending</em> or <em>Sort Descending</em> action from its column menu. If column sorting is disabled, then these actions do not appear in the column menus.</li>
<li class="text">Column sorting must always take the entire set of grid rows into account, not just the subset
of grid rows visible on the current page. UI designers should take the processing time into account when
choosing whether to enable column sorting for a particular grid view.</li>
<li class="text">When specified by the UI designer, column sorting should be sticky across sessions. To achieve
this, the user’s most recent sort order can be saved locally using a cookie.</li>
</ul>
</div>
<div class="sub-section">
<h2>Column Resizing</h2>
<ul>
<li class="text">When <strong>column resizing</strong> is enabled, rolling the mouse over the border between two
column headers will display the horizontal resize pointer.
</li>
<li class="text">The user may then click and drag the border in order to resize the column. While the user is
dragging the border, a vertical line appears within the grid to illustrate the new position of the border when
the user releases the mouse button.</li>
</ul>
</div>
<div class="sub-section">
<h2>Column Reordering</h2>
<ul>
<li class="text">When <strong>column reordering</strong> is enabled, users may drag a column header and drop it at the desired location.</li>
column headers will display the horizontal resize pointer.
</li>
<li class="text">While the user is dragging, a ghost column header appears under the mouse pointer.</li>
<li class="text">When specified by the UI designer, column reordering should be sticky across sessions. To
achieve this, the user’s most recent column order can be saved locally using a cookie.
</li>
</ul>
</div>
<div class="sub-section">
<h2>Column customization</h2>
<ul>
<li class="text">When <strong>column customization</strong> is enabled, users may hide and show columns by
selecting the <em>Columns</em> item from any column menu. Selecting <em>Columns</em> opens a cascading
menu containing a list of available columns preceded by checkboxes. Unchecking columns hides them and
checking columns shows them.</li>
<li class="text">When column customization is disabled, the <em>Columns</em> item does not appear in the
column menus.</li>
<li class="text">When specified by the UI designer, column customization should be sticky across sessions.
To achieve this, the user’s most recent column customizations can be saved locally using a cookie.</li>
<li class="text">UI designers may specify that infrequently used columns be hidden by default.</li>
</ul>
</div>
<div class="sub-section">
<h2>Column numbering</h2>
<ul>
<li class="text">When <strong>row numbering</strong> is enabled, row numbers appear to the left of the first
column. These numbers are attached to the left side of the panel and remain visible when a user scrolls
horizontally through the data.</li>
<li class="text">When <strong>row numbering</strong> is enabled, row numbers appear to the left of the first
column. These numbers are attached to the left side of the panel and remain visible when a user scrolls
horizontally through the data.</li>
<li class="text">Row numbering is not appropriate for most grid views. Row numbering is most appropriate for
grid views that allow users to preview the data in a source such as a relational table or flat file.</li>
<li class="text">In some cases, it may be more appropriate to have an actual data column of line numbers than
to enable the row numbering feature of the grid view. This allows the user to return the data to its original
order by sorting by the column of line numbers.</li>
</ul>
</div>
</div>
<div class="sub-section">
<h4>Sub-section: Table</h4>
<div class="component">
<table class="infa-table">
<thead>
<tr>
<th>Name</th>
<th>Desc</th>
<th>Something Else</th>
<th>Something Else that is quite long</th>
</tr>
</thead>
<tbody>
<tr>
<td>Italy</td>
<td>Capital is </td>
<td>Lorem ipsum asdf fape a</td>
<td>Lorem ipsum asdf fape a asdf vherja a;lesd</td>
</tr>
<tr>
<td>Italy</td>
<td>Capital is </td>
<td>Lorem ipsum asdf fape a</td>
<td>Lorem ipsum asdf fape a asdf vherja a;lesd</td>
</tr>
<tr>
<td>Italy</td>
<td>Capital is </td>
<td>Lorem ipsum asdf fape a</td>
<td>Lorem ipsum asdf fape a asdf vherja a;lesd</td>
</tr>
<tr>
<td>Italy</td>
<td>Capital is </td>
<td>Lorem ipsum asdf fape a</td>
<td>Lorem ipsum asdf fape a asdf vherja a;lesd</td>
</tr>
</tbody>
</table>
</div>
<h4>Sub-section: Grouped By Table</h4>
<div class="component">
<table class="infa-table">
<thead>
<tr>
<th>Name</th>
<th>Desc</th>
<th>Something Else</th>
<th>Something Else that is quite long</th>
</tr>
</thead>
<tbody>
<tr>
<td>Italy</td>
<td>Capital is </td>
<td>Lorem ipsum asdf fape a</td>
<td>Lorem ipsum asdf fape a asdf vherja a;lesd</td>
</tr>
<tr>
<td>Italy</td>
<td>Capital is </td>
<td>Lorem ipsum asdf fape a</td>
<td>Lorem ipsum asdf fape a asdf vherja a;lesd</td>
</tr>
</tbody>
<tr>
<td colspan="4">asdf</td>
</tr>
<tbody>
<tr>
<td>Italy</td>
<td>Capital is </td>
<td>Lorem ipsum asdf fape a</td>
<td>Lorem ipsum asdf fape a asdf vherja a;lesd</td>
</tr>
<tr>
<td>Italy</td>
<td>Capital is </td>
<td>Lorem ipsum asdf fape a</td>
<td>Lorem ipsum asdf fape a asdf vherja a;lesd</td>
</tr>
<tr>
<td>Italy</td>
<td>Capital is </td>
<td>Lorem ipsum asdf fape a</td>
<td>Lorem ipsum asdf fape a asdf vherja a;lesd</td>
</tr>
<tr>
<td>Italy</td>
<td>Capital is </td>
<td>Lorem ipsum asdf fape a</td>
<td>Lorem ipsum asdf fape a asdf vherja a;lesd</td>
</tr>
</tbody>
</table>
</div>
<h4>Sub-section: Table Stiped</h4>
<div class="component">
<table class="infa-table-striped">
<thead>
<tr>
<th>Name</th>
<th>Desc</th>
<th>Something Else</th>
<th>Something Else that is quite long</th>
</tr>
</thead>
<tbody>
<tr>
<td>Italy</td>
<td>Capital is </td>
<td>Lorem ipsum asdf fape a</td>
<td>Lorem ipsum asdf fape a asdf vherja a;lesd</td>
</tr>
<tr>
<td>Italy</td>
<td>Capital is </td>
<td>Lorem ipsum asdf fape a</td>
<td>Lorem ipsum asdf fape a asdf vherja a;lesd</td>
</tr>
<tr>
<td>Italy</td>
<td>Capital is </td>
<td>Lorem ipsum asdf fape a</td>
<td>Lorem ipsum asdf fape a asdf vherja a;lesd</td>
</tr>
<tr>
<td>Italy</td>
<td>Capital is </td>
<td>Lorem ipsum asdf fape a</td>
<td>Lorem ipsum asdf fape a asdf vherja a;lesd</td>
</tr>
</tbody>
</table>
</div>
<h4>Sub-section: Table Header</h4>
<div class="component">
<table class="infa-table">
<tr>
<td><b>897</b> Business Terms</td>
<td width="60px"><label>Sort By:</label></td>
<td width="100px">
<select>
<option>Name</option>
</select>
</td>
<td width="80px"><label>Group By:</label></td>
<td width="100px">
<select>
<option>None</option>
</select>
</td>
<td width="60px" class="border-left">
<button class="btn-active">Filter</button>
</td>
</tr>
</table>
</div><!-- END of component -->
<h4>Sub-section: Table Task Header</h4>
<div class="component">
<table id="myTable" class="infa-table">
<caption>This is the table Caption</caption>
<thead>
<tr>
<th width="10px">></th>
<th width="10px"></th>
<th width="240px">Date</th>
<th width="25%">Team A</th>
<th width="20px">Goals</th>
<th width="20px">Goals</th>
<th width="25%">Team B</th>
<th>Group</th>
<!--<th>Scorers</th>-->
</tr>
<!-- Task Row -->
<tr class="task-row">
<td> </td>
<td><span class="icon icon-asset"></span></td>
<td><input type="date" /><span class="icon icon-calendar"></span></td>
<td><input type="search" placeholder="Search Team..." /></td>
<td><input type="search" /></td>
<td><input type="search" /></td>
<td><input type="search" placeholder="Search Team..." /></td>
<td>
<select>
<option>
</optons>
<option>Group A</optons>
<option>Group B</optons>
<option>Group C</optons>
<option>Group D</optons>
<option>Group E</optons>
<option>Group F</optons>
<option>Group G</optons>
<option>Group H</optons>
</select>
</td>
<!--<td><input type="search" placeholder="Search Team..." /></td>-->
</tr>
</thead>
<tbody>
<tr>
<td>></td>
<td><input type="checkbox" /></td>
<td>12th June</td>
<td>$11.5</td>
<td>3</td>
<td>1</td>
<td>Croatia</td>
<td>Group A</td>
<!--<td></td>-->
</tr>
<tr>
<td>></td>
<td><input type="checkbox" /></td>
<td>13th June</td>
<td><a href="#">Mexico</a></td>
<td>1</td>
<td>0</td>
<td>Cameroon</td>
<td>Group A</td>
<!--<td></td>-->
</tr>
<tr>
<td>></td>
<td><input type="checkbox" /></td>
<td>13th June</td>
<td>Spain</td>
<td>1</td>
<td>5</td>
<td>Netherlands</td>
<td>Group B</td>
<!--<td></td>-->
</tr>
<tr>
<td>></td>
<td><input type="checkbox" /></td>
<td>13th June</td>
<td>55</td>
<td>3</td>
<td>1</td>
<td>Australia</td>
<td>Group B</td>
<!--<td></td>-->
</tr>
<tr>
<td>></td>
<td><input type="checkbox" /></td>
<td>14th June</td>
<td>Colombia</td>
<td>3</td>
<td>0</td>
<td>Greece</td>
<td>Group C</td>
<!--<td></td>-->
</tr>
<tr>
<td>></td>
<td><input type="checkbox" /></td>
<td>16th June</td>
<td>Germany</td>
<td>4</td>
<td>0</td>
<td>Portugal</td>
<td>Group G</td>
<!--<td></td>-->
</tr>
<tr>
<td>></td>
<td><input type="checkbox" /></td>
<td>18th June</td>
<td>Spain</td>
<td>0</td>
<td>2</td>
<td>Chile</td>
<td>Group G</td>
<!--<td></td>-->
</tr>
<tr>
<td>></td>
<td><input type="checkbox" /></td>
<td>23rd June</td>
<td>Brazil</td>
<td>4</td>
<td>1</td>
<td>Cameroon</td>
<td>Group A</td>
<!--<td></td>-->
</tr>
</tbody>
</table>
</div><!-- END of component -->
<h4>Sub-section: Table Header</h4>