-
Notifications
You must be signed in to change notification settings - Fork 794
/
Copy pathindex.html
executable file
·1204 lines (943 loc) · 42.4 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>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>INSPINIA Admin Theme Documentation</title>
<link href="css/bootstrap.css" rel="stylesheet">
<link href="js/google-code-prettify/prettify.css" rel="stylesheet">
<style>
.documentation .jumbotron .row {
padding-top: 60px;
}
.anchor {
padding-top: 50px;
}
</style>
</head>
<body class="documentation">
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">INSPINIA - Documentation</a>
</div>
</div>
</div>
<div class="jumbotron">
<div class="container">
<div class="row">
<div class="col-md-6">
<h2>INSPINIA - Responsible Admin Theme</h2>
<p>Thank you for purchasing INSPINIA admin theme. If you have any questions about the template, please feel free to contact us via email: <a href="mailto:[email protected]">[email protected]</a>.<br/>
Thanks very much!</p>
<small>
<strong>Documentation created:</strong> 19/05/2014<br/>
<strong>Latest update:</strong> 25/06/2018<br/>
<strong>By:</strong> WebAppLayers Team<br/>
<strong>Theme Version:</strong> 2.8<br/>
</small>
<br/>
<small>
For migration to Bootstrap 4 documentation go to: <a href="BS4_MIGRATION.html">Migration to BS4</a><br/>
For AngularJs documentation go to: <a href="angular.html">Angular documentation.</a><br/>
For ASP.NET MVC documentation go to: <a href="asp.net.mvc.html">ASP.NET MVC documentation.</a><br/>
For Ruby on Rails documentation go to: <a href="rails.html">RAILS documentation.</a><br/>
For Meteor documentation go to: <a href="meteor.html">METEOR documentation.</a>
</small>
</div>
<div class="col-md-6">
<img src="img/preview.png" alt="screen" class="img-responsive"/>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2>
Table of Contents
</h2>
<ul>
<li><a href="#documentation">About documentation</a></li>
<li><a href="#folder_structure">Folder structure</a></li>
<li><a href="#layout_structure">Layout structure</a></li>
<li><a href="#options">Options</a>
<ul>
<li><a href="#fixed_sidebar">Fixed sidebar</a></li>
<li><a href="#fixed_navbar">Fixed navbar</a></li>
<li><a href="#fixed_navbar2">Fixed navbar v.2</a></li>
<li><a href="#fixed_footer">Fixed footer</a></li>
<li><a href="#rtl_support">RTL support</a></li>
<li><a href="#layout_2">Layout 2</a></li>
<li><a href="#off_canvas_menu">Off canvas menu</a></li>
<li><a href="#skins">Skins</a></li>
<li><a href="#themeconfig">Theme config</a></li>
</ul>
</li>
<li><a href="#seed_project">Seed Project</a></li>
<li><a href="#change_log">Change log v.2.7.1 -> v.2.8</a></li>
<li><a href="#change_log">Change log v.2.6.7 -> v.2.7.1</a></li>
<li><a href="#change_log">Change log v.2.6.2 -> v.2.7</a></li>
<li><a href="#change_log">Change log v.2.6 -> v.2.6.2</a></li>
<li><a href="#change_log">Change log v.2.5 -> v.2.6</a></li>
<li><a href="#change_log">Change log v.2.4 -> v.2.5</a></li>
<li><a href="#change_log">Change log v.2.3 -> v.2.4</a></li>
<li><a href="#change_log">Change log v.2.2 -> v.2.3</a></li>
<li><a href="#change_log">Change log v.2.0/2.1 -> v.2.2</a></li>
<li><a href="#change_log">Change log v.2.0 -> v.2.1</a></li>
<li><a href="#change_log">Change log v.1.9 -> v.2.0</a></li>
<li><a href="#change_log">Change log v.1.9 -> v.1.9.2</a></li>
<li><a href="#change_log">Change log v.1.8 -> v.1.9</a></li>
<li><a href="#contact">Contacts</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-md-12">
<a name="documentation" class="anchor"></a>
<h3>About the template</h3>
<p>INSPINIA has a clean and minimalistic design which helps you create an awesome and powerful project. It is perfectly designed and precisely prepared. Template was built based on the latest
standards and recommendations. INSPINIA theme
is powered by Twitter Bootstrap v3 - the most popular front-end framework.<br/>
Please note that this documentation is dedicated to the main element of the template. With each version, we will try to develop it. But if you have any questions going beyond what is described
here don't hesitate to write to us.</p>
<div class="row">
<a name="folder_structure" class="anchor"></a>
<div class="col-md-6">
<h3>Structure</h3>
<h4>Folders and files</h4>
<div><pre class="prettyprint linenums">
<code>inspinia_admin_theme/
├── <strong>css/</strong>
├── <strong>email_templates/</strong>
├── <strong>font-awesome/</strong>
├── <strong>fonts/</strong>
├── <strong>img/</strong>
├── <strong>js/</strong>
├── 404.html
├── 500.html
├── agile_board.html
├── article.html
├── badges_labels.html
├── basic_gallery.html
├── blog.html
├── buttons.html
├── calendar.html
├── carousel.html
├── chat_view.html
├── clients.html
├── code_editor.html
├── contacts.html
├── css_animation.html
├── dashboard_2.html
├── dashboard_3.html
├── dashboard_4.html
├── dashboard_4_1.html
...
</code></pre>
</div>
</div>
<div class="col-md-6">
<h3>Main HTML elements</h3>
<p>Theme files have almost unchanging structure consisting of:</p>
<ol>
<li><code>#wrapper</code> main container of body elements.</li>
<li><code>nav .navbar-static-side</code> left navigation <b>menu</b>.</li>
<li><code>#page-wrapper</code> main container for page elements.</li>
<li><code>nav .navbar-static-top</code> top navigation with second menu.</li>
<li><code>.page-heading</code> container with page title and breadcrumb</li>
<li><code>.wrapper-content</code> main container for html elements.</li>
<li><code>.footer</code> main container for footer.</li>
</ol>
<a target="_blank" href="img/page.png"><img class="img-responsive" src="img/page.png" alt="page structure"></a>
</div>
</div>
<div class="row">
<a name="layout_structure" class="anchor"></a>
<div class="col-lg-12">
<h3>Layout structure</h3>
<p>Page <code><head /></code> contains Metadata, CSS files.</p>
<pre class="prettyprint linenums">
<!DOCTYPE html>
<head>
<!-- Metadata -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>INSPINIA | Page</title>
<!-- CSS Files -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="font-awesome/css/font-awesome.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head></pre>
<hr>
<h3>Main menu - navigation</h3>
<p>Navigation menu with profile submenu.</p>
<pre class="prettyprint linenums">
<ul class="nav" id="side-menu">
<li class="nav-header">
<div class="dropdown profile-element"> <span>
<img alt="image" class="img-circle" src="img/profile_small.jpg">
</span>
<a data-toggle="dropdown" class="dropdown-toggle" href="#">
<span class="clear"> <span class="block m-t-xs"> <strong class="font-bold">Amelia Smith</strong>
</span> <span class="text-muted text-xs block">Art Director <b class="caret"></b></span> </span> </a>
<ul class="dropdown-menu animated fadeInRight m-t-xs">
<li><a href="profile.html">Profile</a></li>
<li><a href="contacts.html">Contacts</a></li>
<li><a href="mailbox.html">Mailbox</a></li>
<li class="divider"></li>
<li><a href="login.html">Logout</a></li>
</ul>
</div>
<div class="logo-element">
IN+
</div>
</li>
<li>
<!-- All li elements o navigation -->
</li>
</ul> </pre>
<hr>
<h3>Second menu</h3>
<p>Menu for notifications and primary functions such as logout or global search.</p>
<pre class="prettyprint linenums">
<nav class="navbar navbar-static-top " role="navigation">
<div class="navbar-header">
<a class="navbar-minimalize minimalize-styl-2 btn btn-primary " href="#"><i class="fa fa-bars"></i> </a>
<form role="search" class="navbar-form-custom" method="post" action="search_results.html">
<div class="form-group">
<input type="text" placeholder="Search for something..." class="form-control" name="top-search" id="top-search">
</div>
</form>
</div>
<ul class="nav navbar-top-links navbar-right">
<li>
<span class="m-r-sm text-muted welcome-message">Welcome to INSPINIA+ Admin Theme.</span>
</li>
<li class="dropdown">
<a class="dropdown-toggle count-info" data-toggle="dropdown" href="#">
<i class="fa fa-envelope"></i> <span class="label label-warning">16</span>
</a>
<ul class="dropdown-menu dropdown-messages">
<li>
<div class="dropdown-messages-box">
<a href="profile.html" class="pull-left">
<img alt="image" class="img-circle" src="img/a7.jpg">
</a>
<div class="media-body">
<small class="pull-right">46h ago</small>
<strong>Mike Loreipsum</strong> started following <strong>Monica Smith</strong>. <br>
<small class="text-muted">3 days ago at 7:58 pm - 10.06.2014</small>
</div>
</div>
</li>
<li class="divider"></li>
<li>
<div class="dropdown-messages-box">
<a href="profile.html" class="pull-left">
<img alt="image" class="img-circle" src="img/a4.jpg">
</a>
<div class="media-body ">
<small class="pull-right text-navy">5h ago</small>
<strong>Chris Johnatan Overtunk</strong> started following <strong>Monica Smith</strong>. <br>
<small class="text-muted">Yesterday 1:21 pm - 11.06.2014</small>
</div>
</div>
</li>
<li class="divider"></li>
<li>
<div class="dropdown-messages-box">
<a href="profile.html" class="pull-left">
<img alt="image" class="img-circle" src="img/profile.jpg">
</a>
<div class="media-body ">
<small class="pull-right">23h ago</small>
<strong>Monica Smith</strong> love <strong>Kim Smith</strong>. <br>
<small class="text-muted">2 days ago at 2:30 am - 11.06.2014</small>
</div>
</div>
</li>
<li class="divider"></li>
<li>
<div class="text-center link-block">
<a href="mailbox.html">
<i class="fa fa-envelope"></i> <strong>Read All Messages</strong>
</a>
</div>
</li>
</ul>
</li>
<li class="dropdown">
<a class="dropdown-toggle count-info" data-toggle="dropdown" href="#">
<i class="fa fa-bell"></i> <span class="label label-primary">8</span>
</a>
<ul class="dropdown-menu dropdown-alerts">
<li>
<a href="mailbox.html">
<div>
<i class="fa fa-envelope fa-fw"></i> You have 16 messages
<span class="pull-right text-muted small">4 minutes ago</span>
</div>
</a>
</li>
<li class="divider"></li>
<li>
<a href="profile.html">
<div>
<i class="fa fa-twitter fa-fw"></i> 3 New Followers
<span class="pull-right text-muted small">12 minutes ago</span>
</div>
</a>
</li>
<li class="divider"></li>
<li>
<a href="grid_options.html">
<div>
<i class="fa fa-upload fa-fw"></i> Server Rebooted
<span class="pull-right text-muted small">4 minutes ago</span>
</div>
</a>
</li>
<li class="divider"></li>
<li>
<div class="text-center link-block">
<a href="notifications.html">
<strong>See All Alerts</strong>
<i class="fa fa-angle-right"></i>
</a>
</div>
</li>
</ul>
</li>
<li>
<a href="login.html">
<i class="fa fa-sign-out"></i> Log out
</a>
</li>
</ul>
</nav>
</pre>
<hr>
<h3>Content</h3>
<p>Main content wrapper with page heading and page content.</p>
<pre class="prettyprint linenums">
<div class="row wrapper border-bottom white-bg page-heading">
<div class="col-lg-9">
<h2>This is main title</h2>
<ol class="breadcrumb">
<li>
<a href="index.html">This is</a>
</li>
<li class="active">
<strong>Breadcrumb</strong>
</li>
</ol>
</div>
<div class="col-lg-3">
<div class="title-action">
<a href="" class="btn btn-primary">This is action area</a>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="wrapper wrapper-content">
</div>
</div>
</div>
</pre>
<hr>
<a name="options" class="anchor"></a>
<h3>Options</h3>
<p>Inspinia provide few option for you layout app. There are:
<ul>
<li>Fixed sidebar</li>
<li>Fixed navbar</li>
<li>Fixed footer</li>
<li>RTL support</li>
<li>Layout 2 (top navigation)</li>
<li>Skins</li>
</ul>
</p>
<a name="fixed_sidebar" class="anchor"></a>
<h4>Fixed sidebar</h4>
<p>
Fixed sidebar is a sidebar that is sticked on screen.
</p>
<p>
To add fixed sidebar you need to add .fixed-sidebar class to body.
</p>
<pre class="prettyprint linenums">
<body class="fixed-sidebar">
</pre>
<p>
Be sure that you have included this files to your index.html file:
<pre class="prettyprint linenums">
<!-- SlimScroll -->
<script src="js/plugins/slimscroll/jquery.slimscroll.min.js"></script>
</pre>
</p>
<a name="fixed_navbar" class="anchor"></a>
<h4>Fixed navbar</h4>
<p>
Fixed navbar is a top navbar that is sticked on screen.
</p>
<p>
To add fixed sidebar you need to add .fixed-nav class to body.
</p>
<pre class="prettyprint linenums">
<body class="fixed-nav">
</pre>
<p>
Next we will need to change navbar from static to fixed. Change .navbar-static-top class to navbar-fixed-top
</p>
<a name="fixed_navbar2" class="anchor"></a>
<h4>Fixed navbar 2</h4>
<p>
Fixed navbar 2 is a top navbar that is sticked on screen and it's width is the same as the width of wrapper
</p>
<p>
To add fixed sidebar you need to add .fixed-nav class and .fixed-nav-basic class to body.
</p>
<pre class="prettyprint linenums">
<body class="fixed-nav fixed-nav-basic">
</pre>
<p>
Next we will need to change navbar from static to fixed. Change .navbar-static-top class to navbar-fixed-top
</p>
<pre class="prettyprint linenums">
<nav class="navbar navbar-fixed-top" role="navigation">
</pre>
<p>
Fixed navbar 2 works only on primary layout
</p>
<a name="fixed_footer" class="anchor"></a>
<h4>Fixed footer</h4>
<p>
Fixed footer is a bottom footer that is sticked on screen.
</p>
<p>
To add fixed bottom footer you just need to add .fixed class to footer class.
</p>
<pre class="prettyprint linenums">
<div class="footer fixed">
</pre>
<a name="rtl_support" class="anchor"></a>
<h4>Right-to-Left Language Support </h4>
<p>
Adding support for language written in a Right-To-Left (RTL) direction.
</p>
<p>
To add RTL support you will need to add new .rtls class to body element
</p>
<pre class="prettyprint linenums">
<body class="rtls">
</pre>
<p>
Next you will need to add new bootstrap rtl support library bootstrap-rtl. Add new link to css file just below the css from bootstrap in index.html page like this:
</p>
<pre class="prettyprint linenums">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/plugins/bootstrap-rtl/bootstrap-rtl.min.css" rel="stylesheet">
</pre>
<p>
After that you will have RTL support similar to this:
</p>
<img class="img-responsive" src="img/rtl_support.png" alt="">
<a name="layout_2" class="anchor"></a>
<h4>Layout 2</h4>
<p>
Layout 2 is a top navigation with centered content layout.
</p>
<p>
For layout 2 we prepared special example files dashboard_4.html
</p>
<p>
To use layout 2 all you need to do remove full <code>nav</code> element (sidebar navigation). Add <code>.top-navigation</code> class to body element and add <code>.container</code> class with element after
<code>.wrapper</code> class element. Please chcek teh example file Dashboard_4.html to see code of it.
</p>
<p>
Layout 2 with example code look like this:
</p>
<img class="img-responsive" src="img/Dashboard_4.png" alt="">
<a name="off_canvas_menu" class="anchor"></a>
<h4>Off canvas menu</h4>
<p>
Off canvas menu is a menu that not change the width of main wrapper page. It appear on top of the page.
</p>
<p>
To use off canvas menu you just need to add <code>.canvas-menu</code> to body element:
</p>
<pre class="prettyprint linenums">
<body class="canvas-menu">
</pre>
<p>And in navigation after element with class <code>.sidebar-collapse</code> add special element to handle hide menu.</p>
<pre class="prettyprint linenums">
<a class="close-canvas-menu"><i class="fa fa-times"></i></a>
</pre>
<a name="skins" class="anchor"></a>
<h4>Skins</h4>
<p>Inspinai theme has 3 diferent skins</p>
<p><strong>To change skin you just have to add skin class to body element.</strong></p>
<p>For example: to add skin Blue skin you just need to add <code>.skin-1</code> class to body element.</p>
<p>In LESS files skins.less you can find style for the skin. Below is a representation of css classes demand color skin.</p>
<ul>
<li><code>.skin-1</code> - Blue Light</li>
<li><code>.skin-2</code> - Inspinia Ultra {for support with Inspinia Ultra please contact with [email protected]}</li>
<li><code>.skin-3</code> - Yellow/purple</li>
<li><code>.md-skin</code> - Material Design Skin (In demo Inspinia Material Design version has also fixed sidebar and fixed navbar option)</li>
<li>Defaut skin does not need any class</li>
</ul>
<a name="themeconfig" class="anchor"></a>
<h4>Theme config</h4>
<p>Theme config is the configuration box for setting options in live preview. It is placed in the right side of page with green icon.</p>
<p>We did not want to add code to all pages so we just add js script to append the config box. The function is located in inspinia.js file with comment // Append config box / Only for demo purpose</p>
<p>If you want to remove the config box all you need to do is to remove function below this comment.</p>
<a name="seed_project" class="anchor"></a>
<h3>Inspinia Seed Project</h3>
<p> It is an application skeleton for a typical web app. You can use it to quickly bootstrap your webapp projects. It has all necessary resources/files to help you started new project.
As your project will grow you will need to add new resources. Look at the full version to select the elements and resources you want to use.
</p>
<p>
File strucutre for Seed Project
</p>
<pre class="prettyprint linenums">
<code>Static_Seed_Project/
├── <strong>css/</strong>
├── <strong>font-awsome/</strong>
├── <strong>fonts/</strong>
├── <strong>img/</strong>
├── <strong>js/</strong>
├── index.html
├── minor.html
</code></pre>
<a name="change_log" class="anchor"></a>
<h3>Change log 2.7.1 -> 2.8</h3>
<ul>
<strong>Version 2.8 was fully focused on migration to support Bootstrap 4</strong><br/>
Please open <a href="BS4_MIGRATION.html">Migration to BS4</a> for detailed documetation how to upgrade your theme.
</ul>
<h3>Change log 2.7 -> 2.7.1</h3>
<ul>
<strong>Changed Inspinia js files</strong>
<li> inspinia.js - correct typos in fix_height function</li>
<li> inspinia.js - update navbar-minimalize event handler</li>
<hr>
<strong>CSS/LESS/SCSS/SASS</strong>
<li>Fix media-body style on right sidebar</li>
<li>Fix form-control style to allow inout sizing</li>
<li>Fix min-height issue with small content</li>
<li>Fix background menu on md-skin</li>
<li>Fix tabs in top-navigation layout</li>
<li>Fix label style to release sizing option</li>
</ul>
<h3>Change log 2.6.2 -> 2.7</h3>
<ul>
<strong>New view files</strong>
<li> activity_stream.html </li>
<li> password_meter.html </li>
<li> spinners_usage.html </li>
<li> text_spinners.html </li>
<hr>
<strong>Changed views files</strong>
<li> All .html files - add new menu elements for new views</li>
<li> All .html files - change script link to new jquery version</li>
<li> icons.html - update font awesome icons to new set</li>
<li> agile_board.html - add support for touch gestures - jquery.ui.touch-punch.min.js</li>
<li> draggable_panels.html - add support for touch gestures - jquery.ui.touch-punch.min.js</li>
<li> resizeable_panels.html - add support for touch gestures - jquery.ui.touch-punch.min.js</li>
<li> form_advanced.html - add new example for switchery control </li>
<li> ladda_buttons.html - update bind method for ladda example buttons </li>
<li> helper_classes.html - change css name in border examples</li>
<li> layouts.html - correct typos in image names and descriptions</li>
<li> mail_compose.html - correct typos in css class</li>
<li> dashboard_3.html - update css class of sidebar</li>
<hr>
<strong>Changed Inspinia js files</strong>
<li> inspinia.js - update collapse-link click functions </li>
<li> inspinia.js - update fix_height functions </li>
<hr>
<strong>Updates</strong>
<li> js/jquery-3.1.1.min.js</li>
<li> js/plugins/dataTables </li>
<li> js/plugins/switchery </li>
<li> js/plugins/jquery-ui </li>
<li> js/plugins/steps </li>
<li> js/plugins/validation </li>
<li> /font-awesome </li>
<hr>
<strong>New plugins</strong>
<li> js/plugins/touchpunch</li>
<li> js/plugins/pwstrength</li>
<li> css/plugins/textSpinners</li>
<hr>
<strong>CSS/LESS/SCSS/SASS</strong>
<li> Add styles for new pages </li>
<li> Fix jumping menu on landing page </li>
<li> Fix bg-colors </li>
<li> Remove rules for support old IE </li>
<li> Add styles for third level menu on md-skin </li>
<li> Improve select2 styles </li>
<li> Improve menu style </li>
<li> Clear overwrite native media-body classes </li>
<li> Improve few styles for IE </li>
<li> Improve style for summernote </li>
<li> Correct selected typo </li>
<li> Fix chat-avatar class rules </li>
<li> Fix typo in css preprocessor variables </li>
</ul>
<h3>Change log 2.6 -> 2.6.2</h3>
<ul>
<hr>
<strong>Updates</strong>
<li> Bootstrap to 3.3.7</li>
<hr>
<strong>CSS/LESS/SCSS/SASS</strong>
<li> Fix the issue with hidden href on mobile mini navbar</li>
<li> Fix the flickering menu</li>
<li> Fix Safari modal issue</li>
<li> Fix Summernote fullscreen mode</li>
<li> Fix css width helper classes</li>
<li> Improve content height on fixed navbar</li>
<li> Improve landing page on mobile view</li>
</ul>
<h3>Change log 2.5 -> 2.6</h3>
<ul>
<strong>New view files</strong>
<li> datamaps.html </li>
<li> form_autocomplete.html </li>
<li> helper_classes.html </li>
<li> pdf_viewer.html </li>
<li> social_buttons.html </li>
<hr>
<strong>Changed views files</strong>
<li> All .html files - add new menu elements for new views</li>
<li> dashboard_2.html - update script for new Chartjs version</li>
<li> dashboard_3.html - update script for new Chartjs version</li>
<li> dashboard_4.html - update script for new Chartjs version</li>
<li> dashboard_4_1.html - update script for new Chartjs version</li>
<li> form_advanced.html - add new features: input tag, dual select</li>
<li> file_upload.html - add new input components, update dropzone</li>
<li> graph_chartjs.html - update script for new Chartjs version</li>
<li> index.html - update script for new Chartjs version</li>
<li> table_data_tables.html - remove jeditable library</li>
<hr>
<strong>New Inspinia files</strong>
<li> pdf/example.pdf</li>
<li> js/api/typehead_collection.json</li>
<hr>
<strong>Changed Inspinia js files</strong>
<li> inspinia.js - update click functions </li>
<hr>
<strong>Updates</strong>
<li> js/dropzone </li>
<li> js/fullcalendar </li>
<li> js/chartJs </li>
<li> js/summernote </li>
<li> css/animate.css</li>
<hr>
<strong>New plugins</strong>
<li> js/plugins/bootstrap-taginput</li>
<li> js/plugins/dualListbox</li>
<li> js/plugins/pdfjs</li>
<li> js/plugins/topojson</li>
<li> js/plugins/typehead</li>
<li> css/plugins/bootstrapSocial</li>
<hr>
<strong>CSS/LESS/SCSS/SASS</strong>
<li> Add styles for new pages </li>
<li> Fix menu jumping issue</li>
<li> Improve print mode for Firefox</li>
<li> Improve chosen colors</li>
<li> Fix boxes layout with md-skin</li>
<li> Improve custom swithc style</li>
<li> Add few new css classes - helper classes</li>
</ul>
<h3>Change log 2.4 -> 2.5</h3>
<div class="alert alert-info">
2.5 version fully focused on update AngularJS projects.
<strong>New features and views will be added to separate 2.6 version.</strong>
</div>
<h3>Change log 2.3 -> 2.4</h3>
<ul>
<strong>New view files</strong>
<li> c3.html </li>
<li> clipboard.html </li>
<li> ecommerce-cart.html </li>
<li> form_markdown.html </li>
<li> i18support.html </li>
<li> loading_buttons.html </li>
<li> resizeable_panels.html </li>
<li> tour.html </li>
<li> truncate.html </li>
<hr>
<strong>Changed views files</strong>
<li> All .html files - add new menu elements for new views</li>
<li> agile_board.html - add example code for serialize list</li>
<li> form_advanced.html - add new Touch spin control</li>
<li> landing.html - update page-scroll click event to close menu on select in mobile</li>
<li> package.html - add info about new MVC6 project</li>
<li> skin-config.html - add new option for fixed nav bar</li>
<li> table_data_tables.html - replace old swf buttons with new button plugin (update datatables library)</li>
<li> video.html - add script for handle full screen video option</li>
<hr>
<strong>New Inspinia js/json files</strong>
<li> locales/en.json</li>
<li> locales/es.json</li>
<hr>
<strong>Changed Inspinia js files</strong>
<li> inspinia.js - update fix_height function </li>
<li> inspinia.js - update SmoothlyMenu function </li>
<hr>
<strong>Updates</strong>
<li> js/bootstrap - update to 3.3.6 </li>
<li> js/plugins/dataTables - create on compact datatables generate in official builder: https://datatables.net/download/index </li>
<li> js/pace - update to 1.0.2 </li>
<hr>
<strong>New plugins</strong>
<li> js/plugins/c3 (with css files)</li>
<li> js/plugins/bootstrap-markdow (with css files)</li>
<li> js/plugins/d3 </li>
<li> js/plugins/clipboard </li>
<li> js/plugins/dotdotdot </li>
<li> js/plugins/i18next </li>
<li> js/plugins/ladda (with css files)</li>
<li> js/plugins/touchspin (with css files)</li>
<li> js/plugins/bootstrapTour (with css files)</li>
<hr>
<strong>New images</strong>
<li> imb/flags- Set of flags images</li>
<hr>
<strong>CSS/LESS/SCSS/SASS</strong>
<li> Add styles for new pages </li>
<li> Fix buttons shadow on Chrome </li>
<li> Fix dropdown text colour on md-skin </li>
<li> Fix pace.js on fixed navbar option </li>
<li> Fix few glitch animation effect </li>
<li> Improve nav-tabs on mobile devices </li>
<li> Fix second level menu on md-skin </li>
<li> Improve RTL mode </li>
<li> Add new fixed navbar option </li>
<li> Ipmore print mode </li>
</ul>
<h3>Change log 2.2 -> 2.3</h3>
<ul>
<strong>New view files</strong>
<li> contacts_2.html </li>
<li> dashboard_5.html </li>
<li> ecommerce_payments.html </li>
<li> ecommerce_product_detail.html </li>
<li> masonry.html </li>
<li> profile_2.html </li>
<li> slick_carousel.html </li>
<li> vote_list.html </li>
<hr>
<strong>Changed views files</strong>
<li> All .html files - add new menu elements for new views</li>
<li> tabs_panels.html - add example of fullscreen panel and slim scroll panel </li>
<li> index.html - Change color for main charts </li>
<li> dashboard_2.html - Change color for main charts </li>
<li> form_advanced.html - Add select2 examples</li>
<hr>
<strong>New Inspinia js files</strong>
<li> <span class="text-muted">No new files</span> </li>
<hr>
<strong>Changed Inspinia js files</strong>
<li> inspinia.js - Add function for handle full screen ibox </li>
<hr>
<strong>Updates</strong>
<li> js/bootstrap - update to 3.3.5 </li>
<li> js/plugins/dataTables - update to 1.10.8 </li>
<hr>
<strong>New plugins</strong>
<li> js/plugins/select2 (with css files)</li>
<li> js/plugins/slick (with css files)</li>
<li> js/plugins/masonry </li>
<hr>
<strong>New images</strong>
<li> css/patterns- Add images for header in Material Design skin</li>
<hr>
<strong>CSS/SCSS/SASS</strong>
<li> Add styles for new pages </li>
<li> Add new md-skin styles </li>
<li> Fix ibox-tools when title is large</li>
<li> Fix landing page menu on small devices</li>
<li> Fix modal open backdrop with animate.css effect</li>
<li> Fix dropdown orientation under ibox</li>
<li> Fix profile menu on fixed sidebar</li>
</ul>
<h3>Change log 2.0/2.1 -> 2.2</h3>
<ul>
<strong>New view files</strong>