-
Notifications
You must be signed in to change notification settings - Fork 0
/
charts-gauges.html
1699 lines (1477 loc) · 45.3 KB
/
charts-gauges.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="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Xenon Boostrap Admin Panel" />
<meta name="author" content="" />
<title>Xenon - Circular Gauges</title>
<link rel="stylesheet" href="assets/css/fonts/linecons/css/googleapis.css">
<link rel="stylesheet" href="assets/css/fonts/linecons/css/linecons.css">
<link rel="stylesheet" href="assets/css/fonts/fontawesome/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/bootstrap.css">
<link rel="stylesheet" href="assets/css/xenon-core.css">
<link rel="stylesheet" href="assets/css/xenon-forms.css">
<link rel="stylesheet" href="assets/css/xenon-components.css">
<link rel="stylesheet" href="assets/css/xenon-skins.css">
<link rel="stylesheet" href="assets/css/custom.css">
<script src="assets/js/jquery-1.11.1.min.js"></script>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body class="page-body">
<div class="settings-pane">
<a href="#" data-toggle="settings-pane" data-animate="true">
×
</a>
<div class="settings-pane-inner">
<div class="row">
<div class="col-md-4">
<div class="user-info">
<div class="user-image">
<a href="extra-profile.html">
<img src="assets/images/user-2.png" class="img-responsive img-circle" />
</a>
</div>
<div class="user-details">
<h3>
<a href="extra-profile.html">史密斯</a>
<!-- Available statuses: is-online, is-idle, is-busy and is-offline -->
<span class="user-status is-online"></span>
</h3>
<p class="user-title">Web开发人员</p>
<div class="user-links">
<a href="extra-profile.html" class="btn btn-primary">修改设置</a>
<a href="extra-profile.html" class="btn btn-success">升级</a>
</div>
</div>
</div>
</div>
<div class="col-md-8 link-blocks-env">
<div class="links-block left-sep">
<h4>
<span>通知</span>
</h4>
<ul class="list-unstyled">
<li>
<input type="checkbox" class="cbr cbr-primary" checked="checked" id="sp-chk1" />
<label for="sp-chk1">消息</label>
</li>
<li>
<input type="checkbox" class="cbr cbr-primary" checked="checked" id="sp-chk2" />
<label for="sp-chk2">事件</label>
</li>
<li>
<input type="checkbox" class="cbr cbr-primary" checked="checked" id="sp-chk3" />
<label for="sp-chk3">更新</label>
</li>
<li>
<input type="checkbox" class="cbr cbr-primary" checked="checked" id="sp-chk4" />
<label for="sp-chk4">服务时间</label>
</li>
</ul>
</div>
<div class="links-block left-sep">
<h4>
<a href="#">
<span>帮助台</label>
</a>
</h4>
<ul class="list-unstyled">
<li>
<a href="#">
<i class="fa-angle-right"></i>
支援中心
</a>
</li>
<li>
<a href="#">
<i class="fa-angle-right"></i>
开具发票
</a>
</li>
<li>
<a href="#">
<i class="fa-angle-right"></i>
域名协议
</a>
</li>
<li>
<a href="#">
<i class="fa-angle-right"></i>
服务条款
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="page-container"><!-- add class "sidebar-collapsed" to close sidebar by default, "chat-visible" to make chat appear always -->
<!-- Add "fixed" class to make the sidebar fixed always to the browser viewport. -->
<!-- Adding class "toggle-others" will keep only one menu item open at a time. -->
<!-- Adding class "collapsed" collapse sidebar root elements and show only icons. -->
<div class="sidebar-menu toggle-others fixed">
<div class="sidebar-menu-inner">
<header class="logo-env">
<!-- logo -->
<div class="logo">
<a href="dashboard-1.html" class="logo-expanded">
<img src="assets/images/logo@2x.png" width="80" alt="" />
</a>
<a href="dashboard-1.html" class="logo-collapsed">
<img src="assets/images/logo-collapsed@2x.png" width="40" alt="" />
</a>
</div>
<!-- This will toggle the mobile menu and will be visible only on mobile devices -->
<div class="mobile-menu-toggle visible-xs">
<a href="#" data-toggle="user-info-menu">
<i class="fa-bell-o"></i>
<span class="badge badge-success">7</span>
</a>
<a href="#" data-toggle="mobile-menu">
<i class="fa-bars"></i>
</a>
</div>
<!-- This will open the popup with user profile settings, you can use for any purpose, just be creative -->
<div class="settings-icon">
<a href="#" data-toggle="settings-pane" data-animate="true">
<i class="linecons-cog"></i>
</a>
</div>
</header>
<ul id="main-menu" class="main-menu">
<!-- add class "multiple-expanded" to allow multiple submenus to open -->
<!-- class "auto-inherit-active-class" will automatically add "active" class for parent elements who are marked already with class "active" -->
<li>
<a href="dashboard-1.html">
<i class="linecons-cog"></i>
<span class="title">仪表板</span>
</a>
<ul>
<li>
<a href="dashboard-1.html">
<span class="title">仪表板-1</span>
</a>
</li>
<li>
<a href="dashboard-2.html">
<span class="title">仪表板-2</span>
</a>
</li>
<li>
<a href="dashboard-3.html">
<span class="title">仪表板-3</span>
</a>
</li>
<li>
<a href="dashboard-4.html">
<span class="title">仪表板-4</span>
</a>
</li>
<li>
<a href="skin-generator.html">
<span class="title">皮肤选择器</span>
</a>
</li>
</ul>
</li>
<li>
<a href="layout-variants.html">
<i class="linecons-desktop"></i>
<span class="title">布局</span>
</a>
<ul>
<li>
<a href="layout-variants.html">
<span class="title">布局变量API</span>
</a>
</li>
<li>
<a href="layout-collapsed-sidebar.html">
<span class="title">折叠边栏</span>
</a>
</li>
<li>
<a href="layout-static-sidebar.html">
<span class="title">静态侧栏</span>
</a>
</li>
<li>
<a href="layout-horizontal-menu.html">
<span class="title">水平菜单</span>
</a>
</li>
<li>
<a href="layout-horizontal-plus-sidebar.html">
<span class="title">水平侧栏菜单</span>
</a>
</li>
<li>
<a href="layout-horizontal-menu-click-to-open-subs.html">
<span class="title">水平打开点击</span>
</a>
</li>
<li>
<a href="layout-horizontal-menu-min.html">
<span class="title">水平菜单最小</span>
</a>
</li>
<li>
<a href="layout-right-sidebar.html">
<span class="title">右侧栏</span>
</a>
</li>
<li>
<a href="layout-chat-open.html">
<span class="title">打开聊天</span>
</a>
</li>
<li>
<a href="layout-horizontal-sidebar-menu-collapsed-right.html">
<span class="title">菜单和折叠</span>
</a>
</li>
<li>
<a href="layout-boxed.html">
<span class="title">盒状布局</span>
</a>
</li>
<li>
<a href="layout-boxed-horizontal-menu.html">
<span class="title">盒状水平菜单</span>
</a>
</li>
</ul>
</li>
<li>
<a href="ui-panels.html">
<i class="linecons-note"></i>
<span class="title">UI Elements</span>
</a>
<ul>
<li>
<a href="ui-panels.html">
<span class="title">面板</span>
</a>
</li>
<li>
<a href="ui-buttons.html">
<span class="title">按钮</span>
</a>
</li>
<li>
<a href="ui-tabs-accordions.html">
<span class="title">标签和手风琴</span>
</a>
</li>
<li>
<a href="ui-modals.html">
<span class="title">情态动词</span>
</a>
</li>
<li>
<a href="ui-breadcrumbs.html">
<span class="title">面包屑</span>
</a>
</li>
<li>
<a href="ui-blockquotes.html">
<span class="title">引用文字</span>
</a>
</li>
<li>
<a href="ui-progressbars.html">
<span class="title">进度条</span>
</a>
</li>
<li>
<a href="ui-navbars.html">
<span class="title">导航栏</span>
</a>
</li>
<li>
<a href="ui-alerts.html">
<span class="title">警告</span>
</a>
</li>
<li>
<a href="ui-pagination.html">
<span class="title">分页</span>
</a>
</li>
<li>
<a href="ui-typography.html">
<span class="title">排版</span>
</a>
</li>
<li>
<a href="ui-other-elements.html">
<span class="title">其他元素</span>
</a>
</li>
</ul>
</li>
<li>
<a href="ui-widgets.html">
<i class="linecons-star"></i>
<span class="title">小工具</span>
</a>
</li>
<li>
<a href="mailbox-main.html">
<i class="linecons-mail"></i>
<span class="title">邮箱</span>
<span class="label label-success pull-right">5</span>
</a>
<ul>
<li>
<a href="mailbox-main.html">
<span class="title">收件箱</span>
</a>
</li>
<li>
<a href="mailbox-compose.html">
<span class="title">写邮件</span>
</a>
</li>
<li>
<a href="mailbox-message.html">
<span class="title">查看消息</span>
</a>
</li>
</ul>
</li>
<li>
<a href="tables-basic.html">
<i class="linecons-database"></i>
<span class="title">表格</span>
</a>
<ul>
<li>
<a href="tables-basic.html">
<span class="title">基本表格</span>
</a>
</li>
<li>
<a href="tables-responsive.html">
<span class="title">响应表格</span>
</a>
</li>
<li>
<a href="tables-datatables.html">
<span class="title">数据表格</span>
</a>
</li>
</ul>
</li>
<li>
<a href="forms-native.html">
<i class="linecons-params"></i>
<span class="title">表单</span>
</a>
<ul>
<li>
<a href="forms-native.html">
<span class="title">原生元素</span>
</a>
</li>
<li>
<a href="forms-advanced.html">
<span class="title">高级插件</span>
</a>
</li>
<li>
<a href="forms-wizard.html">
<span class="title">表单向导</span>
</a>
</li>
<li>
<a href="forms-validation.html">
<span class="title">表单验证</span>
</a>
</li>
<li>
<a href="forms-input-masks.html">
<span class="title">输入控制</span>
</a>
</li>
<li>
<a href="forms-file-upload.html">
<span class="title">文件上传</span>
</a>
</li>
<li>
<a href="forms-editors.html">
<span class="title">富文本</span>
</a>
</li>
<li>
<a href="forms-sliders.html">
<span class="title">滑块</span>
</a>
</li>
</ul>
</li>
<li>
<a href="extra-gallery.html">
<i class="linecons-beaker"></i>
<span class="title">其他</span>
<span class="label label-purple pull-right hidden-collapsed">新物品</span>
</a>
<ul>
<li>
<a href="extra-icons-fontawesome.html">
<span class="title">小图标</span>
<span class="label label-warning pull-right">4</span>
</a>
<ul>
<li>
<a href="extra-icons-fontawesome.html">
<span class="title">字体</span>
</a>
</li>
<li>
<a href="extra-icons-linecons.html">
<span class="title">矢量图标</span>
</a>
</li>
<li>
<a href="extra-icons-elusive.html">
<span class="title">流行图标</span>
</a>
</li>
</ul>
</li>
<li>
<a href="extra-maps-google.html">
<span class="title">地图</span>
</a>
<ul>
<li>
<a href="extra-maps-google.html">
<span class="title">谷歌地图</span>
</a>
</li>
<li>
<a href="extra-maps-advanced.html">
<span class="title">高级地图</span>
</a>
</li>
<li>
<a href="extra-maps-vector.html">
<span class="title">矢量地图</span>
</a>
</li>
</ul>
</li>
<li>
<a href="extra-gallery.html">
<span class="title">画廊</span>
</a>
</li>
<li>
<a href="extra-calendar.html">
<span class="title">日历</span>
</a>
</li>
<li>
<a href="extra-profile.html">
<span class="title">轮廓</span>
</a>
</li>
<li>
<a href="extra-login.html">
<span class="title">登录</span>
</a>
</li>
<li>
<a href="extra-lockscreen.html">
<span class="title">锁屏</span>
</a>
</li>
<li>
<a href="extra-login-light.html">
<span class="title">亮灯登录</span>
</a>
</li>
<li>
<a href="extra-timeline.html">
<span class="title">时间线</span>
</a>
</li>
<li>
<a href="extra-timeline-center.html">
<span class="title">时间线居中</span>
</a>
</li>
<li>
<a href="extra-notes.html">
<span class="title">笔记</span>
</a>
</li>
<li>
<a href="extra-image-crop.html">
<span class="title">图像裁剪</span>
</a>
</li>
<li>
<a href="extra-portlets.html">
<span class="title">门户</span>
</a>
</li>
<li>
<a href="blank-sidebar.html">
<span class="title">空白页</span>
</a>
</li>
<li>
<a href="extra-search.html">
<span class="title">搜索</span>
</a>
</li>
<li>
<a href="extra-invoice.html">
<span class="title">发票</span>
</a>
</li>
<li>
<a href="extra-not-found.html">
<span class="title">404 Page</span>
</a>
</li>
<li>
<a href="extra-tocify.html">
<span class="title">滚动跟随</span>
</a>
</li>
<li>
<a href="extra-loader.html">
<span class="title">进度加载</span>
</a>
</li>
<li>
<a href="extra-page-loading-ol.html">
<span class="title">页面载入加载</span>
</a>
</li>
<li>
<a href="extra-通知.html">
<span class="title">通知</span>
</a>
</li>
<li>
<a href="extra-nestable-lists.html">
<span class="title">拖动分组排序</span>
</a>
</li>
<li>
<a href="extra-scrollable.html">
<span class="title">滚动条</span>
</a>
</li>
</ul>
</li>
<li class="opened active">
<a href="charts-main.html">
<i class="linecons-globe"></i>
<span class="title">图表</span>
</a>
<ul>
<li>
<a href="charts-main.html">
<span class="title">图表变体</span>
</a>
</li>
<li>
<a href="charts-range.html">
<span class="title">范围选择器</span>
</a>
</li>
<li>
<a href="charts-sparklines.html">
<span class="title">波形图</span>
</a>
</li>
<li>
<a href="charts-map.html">
<span class="title">地图统计</span>
</a>
</li>
<li class="active">
<a href="charts-gauges.html">
<span class="title">圆形仪表</span>
</a>
</li>
<li>
<a href="charts-bar-gauges.html">
<span class="title">酒吧仪表</span>
</a>
</li>
</ul>
</li>
<li>
<a href="#">
<i class="linecons-cloud"></i>
<span class="title">菜单级别s</span>
</a>
<ul>
<li>
<a href="#">
<i class="entypo-flow-line"></i>
<span class="title">菜单级别 1.1</span>
</a>
<ul>
<li>
<a href="#">
<i class="entypo-flow-parallel"></i>
<span class="title">菜单级别 2.1</span>
</a>
</li>
<li>
<a href="#">
<i class="entypo-flow-parallel"></i>
<span class="title">菜单级别 2.2</span>
</a>
<ul>
<li>
<a href="#">
<i class="entypo-flow-cascade"></i>
<span class="title">菜单级别 3.1</span>
</a>
</li>
<li>
<a href="#">
<i class="entypo-flow-cascade"></i>
<span class="title">菜单级别 3.2</span>
</a>
<ul>
<li>
<a href="#">
<i class="entypo-flow-branch"></i>
<span class="title">菜单级别 4.1</span>
</a>
</li>
</ul>
</li>
</ul>
</li>
<li>
<a href="#">
<i class="entypo-flow-parallel"></i>
<span class="title">菜单级别 2.3</span>
</a>
</li>
</ul>
</li>
<li>
<a href="#">
<i class="entypo-flow-line"></i>
<span class="title">菜单级别 1.2</span>
</a>
</li>
<li>
<a href="#">
<i class="entypo-flow-line"></i>
<span class="title">菜单级别 1.3</span>
</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="main-content">
<!-- User Info, 通知 and Menu Bar -->
<nav class="navbar user-info-navbar" role="navigation">
<!-- Left links for user info navbar -->
<ul class="user-info-menu left-links list-inline list-unstyled">
<li class="hidden-sm hidden-xs">
<a href="#" data-toggle="sidebar">
<i class="fa-bars"></i>
</a>
</li>
<li class="dropdown hover-line">
<a href="#" data-toggle="dropdown">
<i class="fa-envelope-o"></i>
<span class="badge badge-green">15</span>
</a>
<ul class="dropdown-menu messages">
<li>
<ul class="dropdown-menu-list list-unstyled ps-scrollbar">
<li class="active"><!-- "active" class means message is unread -->
<a href="#">
<span class="line">
<strong>Luc Chartier</strong>
<span class="light small">- yesterday</span>
</span>
<span class="line desc small">
This ain’t our first item, it is the best of the rest.
</span>
</a>
</li>
<li class="active">
<a href="#">
<span class="line">
<strong>Salma Nyberg</strong>
<span class="light small">- 2 days ago</span>
</span>
<span class="line desc small">
Oh he decisively impression attachment friendship so if everything.
</span>
</a>
</li>
<li>
<a href="#">
<span class="line">
Hayden Cartwright
<span class="light small">- a week ago</span>
</span>
<span class="line desc small">
Whose her enjoy chief new young. Felicity if ye required likewise so doubtful.
</span>
</a>
</li>
<li>
<a href="#">
<span class="line">
Sandra Eberhardt
<span class="light small">- 16 days ago</span>
</span>
<span class="line desc small">
On so attention necessary at by provision otherwise existence direction.
</span>
</a>
</li>
<!-- Repeated -->
<li class="active"><!-- "active" class means message is unread -->
<a href="#">
<span class="line">
<strong>Luc Chartier</strong>
<span class="light small">- yesterday</span>
</span>
<span class="line desc small">
This ain’t our first item, it is the best of the rest.
</span>
</a>
</li>
<li class="active">
<a href="#">
<span class="line">
<strong>Salma Nyberg</strong>
<span class="light small">- 2 days ago</span>
</span>
<span class="line desc small">
Oh he decisively impression attachment friendship so if everything.
</span>
</a>
</li>
<li>
<a href="#">
<span class="line">
Hayden Cartwright
<span class="light small">- a week ago</span>
</span>
<span class="line desc small">
Whose her enjoy chief new young. Felicity if ye required likewise so doubtful.
</span>
</a>
</li>
<li>
<a href="#">
<span class="line">
Sandra Eberhardt
<span class="light small">- 16 days ago</span>
</span>
<span class="line desc small">
On so attention necessary at by provision otherwise existence direction.
</span>
</a>
</li>
</ul>
</li>
<li class="external">
<a href="blank-sidebar.html">
<span>All Messages</span>
<i class="fa-link-ext"></i>
</a>
</li>
</ul>
</li>
<li class="dropdown hover-line">
<a href="#" data-toggle="dropdown">
<i class="fa-bell-o"></i>
<span class="badge badge-purple">7</span>
</a>
<ul class="dropdown-menu 通知">
<li class="top">
<p class="small">
<a href="#" class="pull-right">Mark all Read</a>
You have <strong>3</strong> new 通知.
</p>
</li>
<li>
<ul class="dropdown-menu-list list-unstyled ps-scrollbar">
<li class="active notification-success">
<a href="#">
<i class="fa-user"></i>
<span class="line">
<strong>New user registered</strong>
</span>
<span class="line small time">
30 seconds ago
</span>
</a>
</li>
<li class="active notification-secondary">
<a href="#">
<i class="fa-lock"></i>
<span class="line">
<strong>Privacy settings have been changed</strong>
</span>
<span class="line small time">
3 hours ago
</span>
</a>
</li>
<li class="notification-primary">
<a href="#">
<i class="fa-thumbs-up"></i>
<span class="line">
<strong>Someone special liked this</strong>
</span>
<span class="line small time">
2 minutes ago
</span>
</a>
</li>
<li class="notification-danger">
<a href="#">
<i class="fa-calendar"></i>
<span class="line">
John cancelled the event
</span>
<span class="line small time">
9 hours ago
</span>
</a>
</li>
<li class="notification-info">
<a href="#">
<i class="fa-database"></i>
<span class="line">
The server is status is stable
</span>
<span class="line small time">
yesterday at 10:30am
</span>
</a>
</li>
<li class="notification-warning">
<a href="#">
<i class="fa-envelope-o"></i>
<span class="line">
New comments waiting approval
</span>
<span class="line small time">
last week
</span>
</a>
</li>
</ul>
</li>
<li class="external">
<a href="#">
<span>View all 通知</span>
<i class="fa-link-ext"></i>
</a>
</li>
</ul>
</li>
</ul>
<!-- Right links for user info navbar -->
<ul class="user-info-menu right-links list-inline list-unstyled">
<li class="search-form"><!-- You can add "always-visible" to show make the search input visible -->