forked from learnwithgeeks/BlockChain-Vtraders.pro-Project-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ui-popovers.html
1164 lines (1085 loc) · 67.4 KB
/
ui-popovers.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 name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Cryptocurrency trading Dashboard</title>
<meta content="" name="description" />
<meta content="" name="author" />
<!-- Favicon -->
<link rel="shortcut icon" href="../assets/images/favicon.png" type="image/x-icon" />
<!-- For iPhone -->
<link rel="apple-touch-icon-precomposed" href="../assets/images/apple-touch-icon-57-precomposed.png">
<!-- For iPhone 4 Retina display -->
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../assets/images/apple-touch-icon-114-precomposed.png">
<!-- For iPad -->
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../assets/images/apple-touch-icon-72-precomposed.png">
<!-- For iPad Retina display -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../assets/images/apple-touch-icon-144-precomposed.png">
<!-- CORE CSS FRAMEWORK - START -->
<link href="../assets/plugins/pace/pace-theme-flash.css" rel="stylesheet" type="text/css" media="screen" />
<link href="../assets/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="../assets/plugins/bootstrap/css/bootstrap-theme.min.css" rel="stylesheet" type="text/css" />
<link href="../assets/fonts/font-awesome/css/font-awesome.css" rel="stylesheet" type="text/css" />
<link href="../assets/css/animate.min.css" rel="stylesheet" type="text/css" />
<link href="../assets/plugins/perfect-scrollbar/perfect-scrollbar.css" rel="stylesheet" type="text/css" />
<!-- CORE CSS FRAMEWORK - END -->
<!-- HEADER SCRIPTS INCLUDED ON THIS PAGE - START -->
<!-- HEADER SCRIPTS INCLUDED ON THIS PAGE - END -->
<!-- CORE CSS TEMPLATE - START -->
<link href="../assets/css/style.css" rel="stylesheet" type="text/css" />
<link href="../assets/css/responsive.css" rel="stylesheet" type="text/css" />
<!-- CORE CSS TEMPLATE - END -->
</head>
<!-- END HEAD -->
<!-- BEGIN BODY -->
<body class=" ">
<!-- START TOPBAR -->
<div class='page-topbar gradient-blue1'>
<div class='logo-area crypto'>
</div>
<div class='quick-area'>
<div class='pull-left'>
<ul class="info-menu left-links list-inline list-unstyled">
<li class="sidebar-toggle-wrap">
<a href="#" data-toggle="sidebar" class="sidebar_toggle">
<i class="fa fa-bars"></i>
</a>
</li>
<li class="topnav-item item1">
<a href="#" class="new-link w-text">Schedule
<span class="badge badge-primary ml-5">New</span>
</a>
</li>
<li class="topnav-item active item2">
<a href="#" class="nav-link w-text">
<i class="fa fa-area-chart mr-10"></i>Reports
</a>
</li>
<li class="topnav-item item3">
<a href="#" class="nav-link w-text">
<i class="fa fa-sitemap mr-10"></i>Trading
</a>
</li>
<li class="hidden-sm hidden-xs searchform">
<form action="#" method="post">
<div class="input-group">
<span class="input-group-addon">
<i class="fa fa-search"></i>
</span>
<input type="text" class="form-control animated fadeIn" placeholder="Search & Enter">
</div>
<input type='submit' value="">
</form>
</li>
</ul>
</div>
<div class='pull-right'>
<ul class="info-menu right-links list-inline list-unstyled">
<li class="notify-toggle-wrapper spec">
<a href="#" data-toggle="dropdown" class="toggle">
<i class="fa fa-bell"></i>
<span class="badge badge-accent">3</span>
</a>
<ul class="dropdown-menu notifications animated fadeIn">
<li class="total">
<span class="small">
You have <strong>3</strong> new notifications.
<a href="javascript:;" class="pull-right">Mark all as Read</a>
</span>
</li>
<li class="list">
<ul class="dropdown-menu-list list-unstyled ps-scrollbar">
<li class="unread available">
<!-- available: success, warning, info, error -->
<a href="javascript:;">
<div class="notice-icon">
<i class="fa fa-check"></i>
</div>
<div>
<span class="name">
<strong>Successful transaction of 0.01 BTC</strong>
<span class="time small">15 mins ago</span>
</span>
</div>
</a>
</li>
<li class="unread away">
<!-- available: success, warning, info, error -->
<a href="javascript:;">
<div class="notice-icon">
<i class="fa fa-clock-o"></i>
</div>
<div>
<span class="name">
<strong>4 of Pending Transactions!</strong>
<span class="time small">45 mins ago</span>
</span>
</div>
</a>
</li>
<li class=" busy">
<!-- available: success, warning, info, error -->
<a href="javascript:;">
<div class="notice-icon">
<i class="fa fa-times"></i>
</div>
<div>
<span class="name">
<strong>Cancelled Order of 200 ICO</strong>
<span class="time small">1 hour ago</span>
</span>
</div>
</a>
</li>
<li class=" available">
<!-- available: success, warning, info, error -->
<a href="javascript:;">
<div class="notice-icon">
<i class="fa fa-check"></i>
</div>
<div>
<span class="name">
<strong>Great Speed Notify of 1.34 LTC</strong>
<span class="time small">14th Mar</span>
</span>
</div>
</a>
</li>
</ul>
</li>
<li class="external">
<a href="javascript:;">
<span>Read All Notifications</span>
</a>
</li>
</ul>
</li>
<li class="message-toggle-wrapper spec">
<a href="#" data-toggle="dropdown" class="toggle mr-15">
<i class="fa fa-envelope"></i>
<span class="badge badge-accent">7</span>
</a>
<ul class="dropdown-menu messages animated fadeIn">
<li class="list">
<ul class="dropdown-menu-list list-unstyled ps-scrollbar">
<li class="unread status-available">
<a href="javascript:;">
<div class="user-img">
<img src="../data/profile/avatar-1.png" alt="user-image" class="img-circle img-inline">
</div>
<div>
<span class="name">
<strong>Clarine Vassar</strong>
<span class="time small">- 15 mins ago</span>
<span class="profile-status available pull-right"></span>
</span>
<span class="desc small">
Lorem ipsum dolor sit elit fugiat molest.
</span>
</div>
</a>
</li>
<li class=" status-away">
<a href="javascript:;">
<div class="user-img">
<img src="../data/profile/avatar-2.png" alt="user-image" class="img-circle img-inline">
</div>
<div>
<span class="name">
<strong>Brooks Latshaw</strong>
<span class="time small">- 45 mins ago</span>
<span class="profile-status away pull-right"></span>
</span>
<span class="desc small">
Lorem ipsum dolor sit elit fugiat molest.
</span>
</div>
</a>
</li>
<li class=" status-busy">
<a href="javascript:;">
<div class="user-img">
<img src="../data/profile/avatar-3.png" alt="user-image" class="img-circle img-inline">
</div>
<div>
<span class="name">
<strong>Clementina Brodeur</strong>
<span class="time small">- 1 hour ago</span>
<span class="profile-status busy pull-right"></span>
</span>
<span class="desc small">
Lorem ipsum dolor sit elit fugiat molest.
</span>
</div>
</a>
</li>
<li class=" status-offline">
<a href="javascript:;">
<div class="user-img">
<img src="../data/profile/avatar-4.png" alt="user-image" class="img-circle img-inline">
</div>
<div>
<span class="name">
<strong>Carri Busey</strong>
<span class="time small">- 5 hours ago</span>
<span class="profile-status offline pull-right"></span>
</span>
<span class="desc small">
Lorem ipsum dolor sit elit fugiat molest.
</span>
</div>
</a>
</li>
<li class=" status-offline">
<a href="javascript:;">
<div class="user-img">
<img src="../data/profile/avatar-5.png" alt="user-image" class="img-circle img-inline">
</div>
<div>
<span class="name">
<strong>Melissa Dock</strong>
<span class="time small">- Yesterday</span>
<span class="profile-status offline pull-right"></span>
</span>
<span class="desc small">
Lorem ipsum dolor sit elit fugiat molest.
</span>
</div>
</a>
</li>
<li class=" status-available">
<a href="javascript:;">
<div class="user-img">
<img src="../data/profile/avatar-1.png" alt="user-image" class="img-circle img-inline">
</div>
<div>
<span class="name">
<strong>Verdell Rea</strong>
<span class="time small">- 14th Mar</span>
<span class="profile-status available pull-right"></span>
</span>
<span class="desc small">
Lorem ipsum dolor sit elit fugiat molest.
</span>
</div>
</a>
</li>
<li class=" status-busy">
<a href="javascript:;">
<div class="user-img">
<img src="../data/profile/avatar-2.png" alt="user-image" class="img-circle img-inline">
</div>
<div>
<span class="name">
<strong>Linette Lheureux</strong>
<span class="time small">- 16th Mar</span>
<span class="profile-status busy pull-right"></span>
</span>
<span class="desc small">
Lorem ipsum dolor sit elit fugiat molest.
</span>
</div>
</a>
</li>
<li class=" status-away">
<a href="javascript:;">
<div class="user-img">
<img src="../data/profile/avatar-3.png" alt="user-image" class="img-circle img-inline">
</div>
<div>
<span class="name">
<strong>Araceli Boatright</strong>
<span class="time small">- 16th Mar</span>
<span class="profile-status away pull-right"></span>
</span>
<span class="desc small">
Lorem ipsum dolor sit elit fugiat molest.
</span>
</div>
</a>
</li>
</ul>
</li>
<li class="external">
<a href="javascript:;">
<span>Read All Messages</span>
</a>
</li>
</ul>
</li>
<li class="profile">
<a href="#" data-toggle="dropdown" class="toggle">
<img src="../data/profile/profile.jpg" alt="user-image" class="img-circle img-inline">
<span>Arnold Ramsy <i class="fa fa-angle-down"></i></span>
</a>
<ul class="dropdown-menu profile animated fadeIn">
<li>
<a href="crypto-account-setting.html">
<i class="fa fa-wrench"></i> Settings
</a>
</li>
<li>
<a href="crypto-profile.html">
<i class="fa fa-user"></i> Profile
</a>
</li>
<li>
<a href="crypto-support.html">
<i class="fa fa-info"></i> Help
</a>
</li>
<li class="last">
<a href="crypto-login.html">
<i class="fa fa-lock"></i> Logout
</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
</div>
<!-- END TOPBAR -->
<!-- START CONTAINER -->
<div class="page-container row-fluid container-fluid">
<!-- SIDEBAR - START -->
<div class="page-sidebar fixedscroll">
<!-- MAIN MENU - START -->
<div class="page-sidebar-wrapper" id="main-menu-wrapper">
<ul class='wraplist'>
<li class='menusection'>Main</li>
<li class="">
<a href="index-crypto-dashboard.html">
<i class="img relative crypto-ic ">
<img src="../data/crypto-dash/icons/1.png" alt="" class="ic1 width-20">
</i>
<span class="title">Dashboard</span>
</a>
</li>
<li class="">
<a href="crypto-wallet.html">
<i class="img">
<img src="../data/crypto-dash/icons/2.png" alt="" class="width-20">
</i>
<span class="title">Crypto Wallet</span>
</a>
</li>
<li class="">
<a href="crypto-buy-sell.html">
<i class="img">
<img src="../data/crypto-dash/icons/6.png" alt="" class="width-20">
</i>
<span class="title">Buy & Sell</span>
</a>
</li>
<li class="">
<a href="crypto-ico-admin.html">
<i class="img">
<img src="../data/crypto-dash/icons/4.png" alt="" class="width-20">
</i>
<span class="title">ICO Admin</span>
<span class="label label-accent">HOT</span>
</a>
</li>
<li class="">
<a href="crypto-affiliate.html">
<i class="img">
<img src="../data/crypto-dash/icons/8.png" alt="" class="width-20">
</i>
<span class="title">Affiliate Program</span>
</a>
</li>
<li class="">
<a href="crypto-profile.html">
<i class="img">
<img src="../data/crypto-dash/icons/10.png" alt="" class="width-20">
</i>
<span class="title">Trader Profile</span>
</a>
</li>
<li class="">
<a href="crypto-faq.html">
<i class="img">
<img src="../data/crypto-dash/icons/12.png" alt="" class="width-20">
</i>
<span class="title">Support</span>
</a>
</li>
<li class="">
<a href="javascript:;">
<i class="img">
<img src="../data/crypto-dash/icons/11.png" alt="" class="width-20">
</i>
<span class="title">Settings</span>
<span class="arrow "></span>
</a>
<ul class="sub-menu">
<li>
<a class="" href="crypto-personal-setting.html">Personal Settings</a>
</li>
<li>
<a class="" href="crypto-account-setting.html">Account Settings</a>
</li>
</ul>
</li>
<li class="">
<a href="javascript:;">
<i class="img">
<img src="../data/crypto-dash/icons/9.png" alt="" class="width-20">
</i>
<span class="title">Access Pages</span>
<span class="arrow "></span>
</a>
<ul class="sub-menu">
<li>
<a class="" href="crypto-login.html">Login</a>
</li>
<li>
<a class="" href="crypto-register.html">Registration</a>
</li>
<li>
<a class="" href="ui-404.html">404</a>
</li>
</ul>
</li>
<li class="">
<a href="javascript:;">
<i class="img">
<img src="../data/crypto-dash/icons/7.png" alt="" class="width-20">
</i>
<span class="title">Mailbox</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu" style="display: none;">
<li>
<a class="" href="crypto-mail-inbox.html">Inbox</a>
</li>
<li>
<a class="" href="crypto-mail-compose.html">Compose</a>
</li>
<li>
<a class="" href="crypto-mail-view.html">View</a>
</li>
<li>
<a class="" href="crypto-mail-important.html">Important Mail</a>
</li>
<li>
<a class="" href="crypto-mail-trash.html">Mail Trash</a>
</li>
</ul>
</li>
<li class='menusection'>Data Visualization</li>
<li class="">
<a href="javascript:;">
<i class="img">
<img src="../data/crypto-dash/icons/16.png" alt="" class="width-20">
</i>
<span class="title">Echarts</span>
<span class="arrow "></span>
</a>
<ul class="sub-menu">
<li>
<a class="" href="charts-echart-line.html">Line & Area Charts</a>
</li>
<li>
<a class="" href="charts-echart-bar.html">Bar & Stacked Charts</a>
</li>
</ul>
</li>
<li class="">
<a href="javascript:;">
<i class="img">
<img src="../data/crypto-dash/icons/17.png" alt="" class="width-20">
</i>
<span class="title">Morris Charts</span>
<span class="arrow "></span>
</a>
<ul class="sub-menu">
<li>
<a class="" href="charts-morris-line.html">Line Charts</a>
</li>
<li>
<a class="" href="charts-morris-bar.html">Bar & Stacked Charts</a>
</li>
<li>
<a class="" href="charts-morris-area.html">Area Charts</a>
</li>
<li>
<a class="" href="charts-morris-pie.html">Pie Charts</a>
</li>
</ul>
</li>
<li class="">
<a href="javascript:;">
<i class="img">
<img src="../data/crypto-dash/icons/18.png" alt="" class="width-20">
</i>
<span class="title">Charts JS</span>
<span class="arrow"></span>
</a>
<ul class="sub-menu">
<li>
<a class="" href="charts-chartjs-line.html">Line Charts</a>
</li>
<li>
<a class="" href="charts-chartjs-bar.html">Bar Charts</a>
</li>
<li>
<a class="" href="charts-chartjs-pie-donut.html">Pie & Donut</a>
</li>
</ul>
</li>
<li class="">
<a href="javascript:;">
<i class="img">
<img src="../data/crypto-dash/icons/19.png" alt="" class="width-20">
</i>
<span class="title">Flot Charts</span>
<span class="arrow "></span>
</a>
<ul class="sub-menu">
<li>
<a class="" href="charts-flot-area.html">Area Charts</a>
</li>
<li>
<a class="" href="charts-flot-line.html">Line Charts</a>
</li>
</ul>
</li>
<li class="">
<a href="javascript:;">
<i class="img">
<img src="../data/crypto-dash/icons/20.png" alt="" class="width-20">
</i>
<span class="title">Sparkline Charts</span>
<span class="arrow "></span>
</a>
<ul class="sub-menu">
<li>
<a class="" href="charts-sparkline-line.html">Line & Area Charts</a>
</li>
<li>
<a class="" href="charts-sparkline-bar.html">Bar Charts</a>
</li>
<li>
<a class="" href="charts-sparkline-composite.html">Composite Charts</a>
</li>
</ul>
</li>
<li class='menusection'>User Interface</li>
<li class="">
<a href="javascript:;"><i class="img">
<img src="../data/crypto-dash/icons/13.png" alt="" class="width-20">
</i>
<span class="title">Ui Elements</span> <span class="arrow "></span> </a>
<ul class="sub-menu">
<li class="">
<a href="javascript:;"><span class="title">Timeline</span> <span class="arrow "></span> </a>
<ul class="sub-menu">
<li>
<a class="" href="ui-timeline-centered.html">Centered timeline</a>
</li>
<li>
<a class="" href="ui-timeline-left.html">Left Aligned timeline</a>
</li>
</ul>
</li>
<li class="">
<a href="javascript:;"><span class="title">Pricing Tables</span> <span class="arrow "></span> </a>
<ul class="sub-menu">
<li>
<a class="" href="ui-pricing-expanded.html">Expanded</a>
</li>
<li>
<a class="" href="ui-pricing-narrow.html">Narrow</a>
</li>
</ul>
</li>
<li class="">
<a href="javascript:;"><span class="title">Icon Sets</span> <span class="arrow "></span> </a>
<ul class="sub-menu">
<li>
<a class="" href="ui-icons.html">Icon Styles</a>
</li>
<li>
<a class="" href="ui-fontawesome.html">Font Awesome</a>
</li>
<li>
<a class="" href="ui-glyphicons.html">Glyph Icons</a>
</li>
</ul>
</li>
<li>
<a href="javascript:;"><span class="title">Form Elements</span> <span class="arrow "></span> </a>
<ul class="sub-menu">
<li>
<a class="" href="form-elements.html">Field Elements</a>
</li>
<li>
<a class="" href="form-elements-premade.html">Pre Made Forms</a>
</li>
<li>
<a class="" href="form-elements-icheck.html">Checkbox & Radio</a>
</li>
<li>
<a class="" href="form-elements-grid.html">Form Grid</a>
</li>
</ul>
</li>
<li>
<a href="form-wizard.html"> <span class="title">Form Wizard</span> </a>
</li>
<li>
<a href="form-validation.html"> <span class="title">Form Validations</span> </a>
</li>
</ul>
</li>
<li class="open">
<a href="javascript:;">
<i class="img">
<img src="../data/crypto-dash/icons/14.png" alt="" class="width-20">
</i>
<span class="title">Components</span>
<span class="arrow open"></span>
</a>
<ul class="sub-menu">
<li>
<a class="" href="ui-tabs.html">Tabs</a>
</li>
<li>
<a class="" href="ui-accordion.html">Accordions</a>
</li>
<li>
<a class="" href="ui-progress.html">Progress Bars</a>
</li>
<li>
<a class="" href="ui-buttons.html">Buttons</a>
</li>
<li>
<a class="" href="ui-modals.html">Modals</a>
</li>
<li>
<a class="" href="ui-alerts.html">Alerts</a>
</li>
<li>
<a class="" href="ui-notifications.html">Notifications</a>
</li>
<li>
<a class="" href="ui-tooltips.html">Tooltips</a>
</li>
<li>
<a class="active" href="ui-popovers.html">Popovers</a>
</li>
<li>
<a class="" href="ui-navbars.html">Navbars</a>
</li>
<li>
<a class="" href="ui-dropdowns.html">Dropdowns</a>
</li>
<li>
<a class="" href="ui-breadcrumbs.html">Breadcrumbs</a>
</li>
<li>
<a class="" href="ui-pagination.html">Pagination</a>
</li>
<li>
<a class="" href="ui-labels-badges.html">Labels & Badges</a>
</li>
</ul>
</li>
<li class="">
<a href="javascript:;">
<i class="img">
<img src="../data/crypto-dash/icons/15.png" alt="" class="width-20">
</i>
<span class="title">Appearance</span>
<span class="arrow "></span>
</a>
<ul class="sub-menu">
<li>
<a class="" href="ui-typography.html">Typography</a>
</li>
<li>
<a class="" href="ui-grids.html">Grids</a>
</li>
<li>
<a class="" href="ui-panels.html">Draggable Panels</a>
</li>
<li>
<a class="" href="ui-group-list.html">Group Listing</a>
</li>
</ul>
</li>
</ul>
</div>
<!-- MAIN MENU - END -->
</div>
<!-- SIDEBAR - END -->
<!-- START CONTENT -->
<section id="main-content" class=" ">
<div class="wrapper main-wrapper row" style=''>
<div class='col-xs-12'>
<div class="page-title">
<div class="pull-left">
<!-- PAGE HEADING TAG - START -->
<h1 class="title">PopOvers</h1>
<!-- PAGE HEADING TAG - END -->
</div>
<div class="pull-right hidden-xs">
<ol class="breadcrumb">
<li>
<a href="index-dashboard.html"><i class="fa fa-home"></i>Home</a>
</li>
<li>
<a href="ui-tabs.html">Components</a>
</li>
<li class="active">
<strong>Popovers</strong>
</li>
</ol>
</div>
</div>
</div>
<div class="clearfix"></div>
<!-- MAIN CONTENT AREA STARTS -->
<div class="col-xs-12">
<section class="box ">
<header class="panel_header">
<h2 class="title pull-left">Popover Placements</h2>
<div class="actions panel_actions pull-right">
<a class="box_toggle fa fa-chevron-down"></a>
<a class="box_setting fa fa-cog" data-toggle="modal" href="#section-settings"></a>
<a class="box_close fa fa-times"></a>
</div>
</header>
<div class="content-body">
<div class="row">
<div class="col-xs-12 text-center">
<div class="row">
<div class="col-md-6 bottom10">
<div rel="popover" data-animate=" animated fadeIn " data-container="body" data-toggle="popover" data-placement="top" data-content="Test content of the popover details ! It can handle HTML content too !" data-title="Top popover" data-trigger="hover" data-html="true" data-original-title="" title=""><u class='text-dark'>Top Placed Popover</u></div>
<div class="clearfix"></div>
</div>
<div class="col-md-6 bottom10">
<div rel="popover" data-animate=" animated fadeIn " data-container="body" data-toggle="popover" data-placement="left" data-content="Test content of the popover details ! It can handle HTML content too !" data-title="Left popover" data-trigger="hover" data-html="true" data-original-title="" title=""><u class='text-dark'>Left Placed Popover</u></div>
<div class="clearfix"></div>
</div>
<div class="col-md-6 bottom10">
<div rel="popover" data-animate=" animated fadeIn " data-container="body" data-toggle="popover" data-placement="right" data-content="Test content of the popover details ! It can handle HTML content too !" data-title="Right Placed popover" data-trigger="hover" data-html="true" data-original-title="" title=""><u class='text-dark'>Right placed Popover</u></div>
<div class="clearfix"></div>
</div>
<div class="col-md-6 bottom10">
<div rel="popover" data-animate=" animated fadeIn " data-container="body" data-toggle="popover" data-placement="bottom" data-content="Test content of the popover details ! It can handle HTML content too !" data-title="Bottom popover" data-trigger="hover" data-html="true" data-original-title="" title=""><u class='text-dark'>Bottom placed Popover</u></div>
<div class="clearfix"></div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<div class="col-xs-12">
<section class="box ">
<header class="panel_header">
<h2 class="title pull-left">Popover Animations</h2>
<div class="actions panel_actions pull-right">
<a class="box_toggle fa fa-chevron-down"></a>
<a class="box_setting fa fa-cog" data-toggle="modal" href="#section-settings"></a>
<a class="box_close fa fa-times"></a>
</div>
</header>
<div class="content-body">
<div class="row">
<div class="col-xs-12 text-center">
<div class="row">
<div class="col-md-6 bottom10">
<div rel="popover" data-animate=" animated fadeIn " data-container="body" data-toggle="popover" data-placement="top" data-content="Test content of the popover details ! It can handle HTML content too !" data-title="Fading popover" data-trigger="hover" data-html="true" data-original-title="" title=""><u class='text-dark'>Fading Popover</u></div>
<div class="clearfix"></div>
</div>
<div class="col-md-6 bottom10">
<div rel="popover" data-animate=" animated bounce" data-container="body" data-toggle="popover" data-placement="top" data-content="Test content of the popover details ! It can handle HTML content too !" data-title="Bouncing popover" data-trigger="hover" data-html="true" data-original-title="" title=""><u class='text-dark'>Bouncing Popover</u></div>
<div class="clearfix"></div>
</div>
<div class="col-md-6 bottom10">
<div rel="popover" data-animate=" animated flip " data-container="body" data-toggle="popover" data-placement="top" data-content="Test content of the popover details ! It can handle HTML content too !" data-title="Fliping popover" data-trigger="hover" data-html="true" data-original-title="" title=""><u class='text-dark'>Fliping Popover</u></div>
<div class="clearfix"></div>
</div>
<div class="col-md-6 bottom10">
<div rel="popover" data-animate=" animated flash " data-container="body" data-toggle="popover" data-placement="top" data-content="Test content of the popover details ! It can handle HTML content too !" data-title="Flashing popover" data-trigger="hover" data-html="true" data-original-title="" title=""><u class='text-dark'>Flashing Popover</u></div>
<div class="clearfix"></div>
</div>
<div class="col-md-6 bottom10">
<div rel="popover" data-animate=" animated pulse " data-container="body" data-toggle="popover" data-placement="top" data-content="Test content of the popover details ! It can handle HTML content too !" data-title="Pulse effect popover" data-trigger="hover" data-html="true" data-original-title="" title=""><u class='text-dark'>Pulse effect Popover</u></div>
<div class="clearfix"></div>
</div>
<div class="col-md-6 bottom10">
<div rel="popover" data-animate=" animated swing " data-container="body" data-toggle="popover" data-placement="top" data-content="Test content of the popover details ! It can handle HTML content too !" data-title="Swinging popover" data-trigger="hover" data-html="true" data-original-title="" title=""><u class='text-dark'>Swinging Popover</u></div>
<div class="clearfix"></div>
</div>
<div class="col-md-6 bottom10">
<div rel="popover" data-animate=" animated shake " data-container="body" data-toggle="popover" data-placement="top" data-content="Test content of the popover details ! It can handle HTML content too !" data-title="Shaking popover" data-trigger="hover" data-html="true" data-original-title="" title=""><u class='text-dark'>Shaking Popover</u></div>
<div class="clearfix"></div>
</div>
<div class="col-md-6 bottom10">
<div rel="popover" data-animate=" animated wobble " data-container="body" data-toggle="popover" data-placement="top" data-content="Test content of the popover details ! It can handle HTML content too !" data-title="Wobbling popover" data-trigger="hover" data-html="true" data-original-title="" title=""><u class='text-dark'>Wobbling Popover</u></div>
<div class="clearfix"></div>
</div>
<div class="col-md-6 bottom10">
<div rel="popover" data-animate=" animated tada" data-container="body" data-toggle="popover" data-placement="top" data-content="Test content of the popover details ! It can handle HTML content too !" data-title="Tada effect popover" data-trigger="hover" data-html="true" data-original-title="" title=""><u class='text-dark'>Tada effect Popover</u></div>
<div class="clearfix"></div>
</div>
<div class="col-md-6 bottom10">
<div rel="popover" data-animate=" animated rubberBand" data-container="body" data-toggle="popover" data-placement="top" data-content="Test content of the popover details ! It can handle HTML content too !" data-title="Rubber Band effect popover" data-trigger="hover" data-html="true" data-original-title="" title=""><u class='text-dark'>Rubber Band effect Popover</u></div>
<div class="clearfix"></div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<div class="col-xs-12">
<section class="box ">
<header class="panel_header">
<h2 class="title pull-left">Popover Colors</h2>
<div class="actions panel_actions pull-right">
<a class="box_toggle fa fa-chevron-down"></a>
<a class="box_setting fa fa-cog" data-toggle="modal" href="#section-settings"></a>
<a class="box_close fa fa-times"></a>
</div>
</header>
<div class="content-body">
<div class="row">
<div class="col-xs-12 text-center">
<div class="row">
<div class="col-md-6 bottom10">
<div rel="popover" data-animate=" animated fadeIn " data-container="body" data-color-class="success" data-toggle="popover" data-placement="top" data-content="Test content of the popover details ! It can handle HTML content too !" data-title="Success popover" data-trigger="hover" data-html="true" data-original-title="" title="">
<u class='text-dark'>Success Popover</u></div>
<div class="clearfix"></div>
</div>
<div class="col-md-6 bottom10">
<div rel="popover" data-animate=" animated fadeIn " data-container="body" data-color-class="primary" data-toggle="popover" data-placement="top" data-content="Test content of the popover details ! It can handle HTML content too !" data-title="Primary popover" data-trigger="hover" data-html="true" data-original-title="" title="">
<u class='text-dark'>Primary Popover</u></div>
<div class="clearfix"></div>
</div>
<div class="col-md-6 bottom10">
<div rel="popover" data-animate=" animated fadeIn " data-container="body" data-color-class="accent" data-toggle="popover" data-placement="top" data-content="Test content of the popover details ! It can handle HTML content too !" data-title="Accent popover" data-trigger="hover" data-html="true" data-original-title="" title="">
<u class='text-dark'>Accent Popover</u></div>
<div class="clearfix"></div>
</div>
<div class="col-md-6 bottom10">
<div rel="popover" data-animate=" animated fadeIn " data-container="body" data-color-class="purple" data-toggle="popover" data-placement="top" data-content="Test content of the popover details ! It can handle HTML content too !" data-title="Purple popover" data-trigger="hover" data-html="true" data-original-title="" title="">
<u class='text-dark'>Purple Popover</u></div>
<div class="clearfix"></div>
</div>
<div class="col-md-6 bottom10">
<div rel="popover" data-animate=" animated fadeIn " data-container="body" data-color-class="warning" data-toggle="popover" data-placement="top" data-content="Test content of the popover details ! It can handle HTML content too !" data-title="Warning popover" data-trigger="hover" data-html="true" data-original-title="" title="">
<u class='text-dark'>Warning Popover</u></div>
<div class="clearfix"></div>
</div>
<div class="col-md-6 bottom10">
<div rel="popover" data-animate=" animated fadeIn " data-container="body" data-color-class="info" data-toggle="popover" data-placement="top" data-content="Test content of the popover details ! It can handle HTML content too !" data-title="Info popover" data-trigger="hover" data-html="true" data-original-title="" title="">
<u class='text-dark'>Info Popover</u></div>
<div class="clearfix"></div>
</div>
<div class="col-md-6 bottom10">
<div rel="popover" data-animate=" animated fadeIn " data-container="body" data-color-class="danger" data-toggle="popover" data-placement="top" data-content="Test content of the popover details ! It can handle HTML content too !" data-title="Danger popover" data-trigger="hover" data-html="true" data-original-title="" title="">
<u class='text-dark'>Danger Popover</u></div>
<div class="clearfix"></div>
</div>
<div class="col-md-6 bottom10">
<div rel="popover" data-animate=" animated fadeIn " data-container="body" data-color-class="secondary" data-toggle="popover" data-placement="top" data-content="Test content of the popover details ! It can handle HTML content too !" data-title="Secondary popover" data-trigger="hover" data-html="true" data-original-title="" title="">
<u class='text-dark'>Secondary Popover</u></div>
<div class="clearfix"></div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<!-- MAIN CONTENT AREA ENDS -->
</div>
</section>
<!-- END CONTENT -->
<div class="page-chatapi hideit">
<div class="search-bar">
<input type="text" placeholder="Search" class="form-control">
</div>
<div class="chat-wrapper">
<h4 class="group-head">Favourites</h4>
<ul class="contact-list">
<li class="user-row " id='chat_user_1' data-user-id='1'>
<div class="user-img">
<a href="#"><img src="../data/profile/avatar-1.png" alt=""></a>
</div>
<div class="user-info">
<h4><a href="#">Joge Lucky</a></h4>
<span class="status available" data-status="available"> Available</span>
</div>
<div class="user-status available">
<i class="fa fa-circle"></i>
</div>
</li>
<li class="user-row " id='chat_user_2' data-user-id='2'>
<div class="user-img">
<a href="#"><img src="../data/profile/avatar-2.png" alt=""></a>
</div>
<div class="user-info">
<h4><a href="#">Folisise Chosiel</a></h4>
<span class="status away" data-status="away"> Away</span>
</div>
<div class="user-status away">