diff --git a/documentation/build/include/layout.html b/documentation/build/include/layout.html
index 18d7fdc55..70109223a 100644
--- a/documentation/build/include/layout.html
+++ b/documentation/build/include/layout.html
@@ -27,18 +27,66 @@
Skins can be found in the dist/css/skins folder.
Choose and the skin file that you want then add the appropriate
class to the body tag to change the template's appearance. Here is the list of available skins:
-
- skin-blue
- skin-blue-light
- skin-yellow
- skin-yellow-light
- skin-purple
- skin-purple-light
- skin-green
- skin-green-light
- skin-red
- skin-red-light
- skin-black
- skin-black-light
-
+
+
+
+
+
+ Skin Class |
+ Preview |
+
+
+
+
+ skin-blue |
+ |
+
+
+ skin-blue-light |
+ |
+
+
+ skin-yellow |
+ |
+
+
+ skin-yellow-light |
+ |
+
+
+ skin-green |
+ |
+
+
+ skin-green-light |
+ |
+
+
+ skin-purple |
+ |
+
+
+ skin-purple-light |
+ |
+
+
+ skin-red |
+ |
+
+
+ skin-red-light |
+ |
+
+
+ skin-black |
+ |
+
+
+ skin-black-light |
+ |
+
+
+
+
+
\ No newline at end of file
diff --git a/documentation/docs.js b/documentation/docs.js
index dc0c504d1..5a79467b3 100644
--- a/documentation/docs.js
+++ b/documentation/docs.js
@@ -52,9 +52,12 @@ $(function () {
}
});
//Skin switcher
- $('#layout-skins-list a').click(function(e) {
+ var current_skin = "skin-blue";
+ $('#layout-skins-list [data-skin]').click(function(e) {
e.preventDefault();
- var skinName = $(this).siblings('code').text();
- $('body').attr('class', skinName + ' fixed');
+ var skinName = $(this).data('skin');
+ $('body').removeClass(current_skin);
+ $('body').addClass(skinName);
+ current_skin = skinName;
});
});
\ No newline at end of file
diff --git a/documentation/index.html b/documentation/index.html
index f2a2b45eb..bbba8e251 100644
--- a/documentation/index.html
+++ b/documentation/index.html
@@ -234,20 +234,68 @@ AdminLTE/
Skins can be found in the dist/css/skins folder.
Choose and the skin file that you want then add the appropriate
class to the body tag to change the template's appearance. Here is the list of available skins:
-
- skin-blue
- skin-blue-light
- skin-yellow
- skin-yellow-light
- skin-purple
- skin-purple-light
- skin-green
- skin-green-light
- skin-red
- skin-red-light
- skin-black
- skin-black-light
-
+
+
+
+
+
+ Skin Class |
+ Preview |
+
+
+
+
+ skin-blue |
+ |
+
+
+ skin-blue-light |
+ |
+
+
+ skin-yellow |
+ |
+
+
+ skin-yellow-light |
+ |
+
+
+ skin-green |
+ |
+
+
+ skin-green-light |
+ |
+
+
+ skin-purple |
+ |
+
+
+ skin-purple-light |
+ |
+
+
+ skin-red |
+ |
+
+
+ skin-red-light |
+ |
+
+
+ skin-black |
+ |
+
+
+ skin-black-light |
+ |
+
+
+
+
+
diff --git a/documentation/style.css b/documentation/style.css
index 9f72643ab..dd9bb73be 100644
--- a/documentation/style.css
+++ b/documentation/style.css
@@ -11,6 +11,9 @@
position: relative;
z-index: 30;
}
+.nth-2-center > tbody > tr > td:last-of-type {
+ text-align: center!important;
+}
.content {
font-size: 16px;
z-index: 500;