|
|
|
@ -4,9 +4,19 @@
|
|
|
|
|
* You should not use this file in production.
|
|
|
|
|
* This file is for demo purposes only.
|
|
|
|
|
*/
|
|
|
|
|
(function ($, AdminLTE) {
|
|
|
|
|
$(function () {
|
|
|
|
|
'use strict'
|
|
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
/**
|
|
|
|
|
* Get access to plugins
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
$('[data-toggle="control-sidebar"]').controlSidebar()
|
|
|
|
|
$('[data-toggle="push-menu"]').pushMenu()
|
|
|
|
|
|
|
|
|
|
var $pushMenu = $('[data-toggle="push-menu"]').data('lte.pushmenu')
|
|
|
|
|
var $controlSidebar = $('[data-toggle="control-sidebar"]').data('lte.controlsidebar')
|
|
|
|
|
var $layout = $('body').data('lte.layout')
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* List of all the available skins
|
|
|
|
@ -26,7 +36,7 @@
|
|
|
|
|
'skin-yellow-light',
|
|
|
|
|
'skin-purple-light',
|
|
|
|
|
'skin-green-light'
|
|
|
|
|
];
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get a prestored setting
|
|
|
|
@ -36,9 +46,9 @@
|
|
|
|
|
*/
|
|
|
|
|
function get(name) {
|
|
|
|
|
if (typeof (Storage) !== 'undefined') {
|
|
|
|
|
return localStorage.getItem(name);
|
|
|
|
|
return localStorage.getItem(name)
|
|
|
|
|
} else {
|
|
|
|
|
window.alert('Please use a modern browser to properly view this template!');
|
|
|
|
|
window.alert('Please use a modern browser to properly view this template!')
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -51,9 +61,9 @@
|
|
|
|
|
*/
|
|
|
|
|
function store(name, val) {
|
|
|
|
|
if (typeof (Storage) !== 'undefined') {
|
|
|
|
|
localStorage.setItem(name, val);
|
|
|
|
|
localStorage.setItem(name, val)
|
|
|
|
|
} else {
|
|
|
|
|
window.alert('Please use a modern browser to properly view this template!');
|
|
|
|
|
window.alert('Please use a modern browser to properly view this template!')
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -64,17 +74,13 @@
|
|
|
|
|
* @returns void
|
|
|
|
|
*/
|
|
|
|
|
function changeLayout(cls) {
|
|
|
|
|
$('body').toggleClass(cls);
|
|
|
|
|
AdminLTE.layout.fixSidebar();
|
|
|
|
|
// Fix the problem with right sidebar and layout boxed
|
|
|
|
|
if (cls == 'layout-boxed')
|
|
|
|
|
AdminLTE.controlSidebar._fix($('.control-sidebar-bg'));
|
|
|
|
|
$('body').toggleClass(cls)
|
|
|
|
|
$layout.fixSidebar()
|
|
|
|
|
if ($('body').hasClass('fixed') && cls == 'fixed') {
|
|
|
|
|
AdminLTE.pushMenu.expandOnHover();
|
|
|
|
|
AdminLTE.layout.activate();
|
|
|
|
|
$pushMenu.expandOnHover()
|
|
|
|
|
$layout.activate()
|
|
|
|
|
}
|
|
|
|
|
AdminLTE.controlSidebar._fix($('.control-sidebar-bg'));
|
|
|
|
|
AdminLTE.controlSidebar._fix($('.control-sidebar'));
|
|
|
|
|
$controlSidebar.fix()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -84,12 +90,12 @@
|
|
|
|
|
*/
|
|
|
|
|
function changeSkin(cls) {
|
|
|
|
|
$.each(mySkins, function (i) {
|
|
|
|
|
$('body').removeClass(mySkins[i]);
|
|
|
|
|
});
|
|
|
|
|
$('body').removeClass(mySkins[i])
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
$('body').addClass(cls);
|
|
|
|
|
store('skin', cls);
|
|
|
|
|
return false;
|
|
|
|
|
$('body').addClass(cls)
|
|
|
|
|
store('skin', cls)
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -98,33 +104,34 @@
|
|
|
|
|
* @returns void
|
|
|
|
|
*/
|
|
|
|
|
function setup() {
|
|
|
|
|
var tmp = get('skin');
|
|
|
|
|
var tmp = get('skin')
|
|
|
|
|
if (tmp && $.inArray(tmp, mySkins))
|
|
|
|
|
changeSkin(tmp);
|
|
|
|
|
changeSkin(tmp)
|
|
|
|
|
|
|
|
|
|
// Add the change skin listener
|
|
|
|
|
$('[data-skin]').on('click', function (e) {
|
|
|
|
|
if ($(this).hasClass('knob'))
|
|
|
|
|
return;
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
changeSkin($(this).data('skin'));
|
|
|
|
|
});
|
|
|
|
|
return
|
|
|
|
|
e.preventDefault()
|
|
|
|
|
changeSkin($(this).data('skin'))
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// Add the layout manager
|
|
|
|
|
$('[data-layout]').on('click', function () {
|
|
|
|
|
changeLayout($(this).data('layout'));
|
|
|
|
|
});
|
|
|
|
|
changeLayout($(this).data('layout'))
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
$('[data-controlsidebar]').on('click', function () {
|
|
|
|
|
changeLayout($(this).data('controlsidebar'));
|
|
|
|
|
var slide = !AdminLTE.options.controlSidebarOptions.slide;
|
|
|
|
|
AdminLTE.options.controlSidebarOptions.slide = slide;
|
|
|
|
|
changeLayout($(this).data('controlsidebar'))
|
|
|
|
|
var slide = !$controlSidebar.options.slide
|
|
|
|
|
|
|
|
|
|
$controlSidebar.options.slide = slide
|
|
|
|
|
if (!slide)
|
|
|
|
|
$('.control-sidebar').removeClass('control-sidebar-open');
|
|
|
|
|
});
|
|
|
|
|
$('.control-sidebar').removeClass('control-sidebar-open')
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
$('[data-sidebarskin="toggle"]').on('click', function () {
|
|
|
|
|
var $sidebar = $('.control-sidebar');
|
|
|
|
|
var $sidebar = $('.control-sidebar')
|
|
|
|
|
if ($sidebar.hasClass('control-sidebar-dark')) {
|
|
|
|
|
$sidebar.removeClass('control-sidebar-dark')
|
|
|
|
|
$sidebar.addClass('control-sidebar-light')
|
|
|
|
@ -132,24 +139,24 @@
|
|
|
|
|
$sidebar.removeClass('control-sidebar-light')
|
|
|
|
|
$sidebar.addClass('control-sidebar-dark')
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
$('[data-enable="expandOnHover"]').on('click', function () {
|
|
|
|
|
$(this).attr('disabled', true);
|
|
|
|
|
AdminLTE.pushMenu.expandOnHover();
|
|
|
|
|
$(this).attr('disabled', true)
|
|
|
|
|
$pushMenu.expandOnHover()
|
|
|
|
|
if (!$('body').hasClass('sidebar-collapse'))
|
|
|
|
|
$('[data-layout="sidebar-collapse"]').click();
|
|
|
|
|
});
|
|
|
|
|
$('[data-layout="sidebar-collapse"]').click()
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// Reset options
|
|
|
|
|
if ($('body').hasClass('fixed')) {
|
|
|
|
|
$('[data-layout="fixed"]').attr('checked', 'checked');
|
|
|
|
|
$('[data-layout="fixed"]').attr('checked', 'checked')
|
|
|
|
|
}
|
|
|
|
|
if ($('body').hasClass('layout-boxed')) {
|
|
|
|
|
$('[data-layout="layout-boxed"]').attr('checked', 'checked');
|
|
|
|
|
$('[data-layout="layout-boxed"]').attr('checked', 'checked')
|
|
|
|
|
}
|
|
|
|
|
if ($('body').hasClass('sidebar-collapse')) {
|
|
|
|
|
$('[data-layout="sidebar-collapse"]').attr('checked', 'checked');
|
|
|
|
|
$('[data-layout="sidebar-collapse"]').attr('checked', 'checked')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
@ -158,21 +165,21 @@
|
|
|
|
|
var $tabPane = $('<div />', {
|
|
|
|
|
'id' : 'control-sidebar-theme-demo-options-tab',
|
|
|
|
|
'class': 'tab-pane active'
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// Create the tab button
|
|
|
|
|
var $tabButton = $('<li />', { 'class': 'active' })
|
|
|
|
|
.html('<a href=\'#control-sidebar-theme-demo-options-tab\' data-toggle=\'tab\'>'
|
|
|
|
|
+ '<i class="fa fa-wrench"></i>'
|
|
|
|
|
+ '</a>');
|
|
|
|
|
+ '</a>')
|
|
|
|
|
|
|
|
|
|
// Add the tab button to the right sidebar tabs
|
|
|
|
|
$('[href="#control-sidebar-home-tab"]')
|
|
|
|
|
.parent()
|
|
|
|
|
.before($tabButton);
|
|
|
|
|
.before($tabButton)
|
|
|
|
|
|
|
|
|
|
// Create the menu
|
|
|
|
|
var $demoSettings = $('<div />');
|
|
|
|
|
var $demoSettings = $('<div />')
|
|
|
|
|
|
|
|
|
|
// Layout options
|
|
|
|
|
$demoSettings.append(
|
|
|
|
@ -227,114 +234,114 @@
|
|
|
|
|
+ '</label>'
|
|
|
|
|
+ '<p>Toggle between dark and light skins for the right sidebar</p>'
|
|
|
|
|
+ '</div>'
|
|
|
|
|
);
|
|
|
|
|
var $skinsList = $('<ul />', { 'class': 'list-unstyled clearfix' });
|
|
|
|
|
)
|
|
|
|
|
var $skinsList = $('<ul />', { 'class': 'list-unstyled clearfix' })
|
|
|
|
|
|
|
|
|
|
// Dark sidebar skins
|
|
|
|
|
var $skinBlue =
|
|
|
|
|
$('<li />', { style: 'float:left; width: 33.33333%; padding: 5px;' })
|
|
|
|
|
.append('<a href="javascript:void(0);" data-skin="skin-blue" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 7px; background: #367fa9;"></span><span class="bg-light-blue" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #222d32;"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7;"></span></div>'
|
|
|
|
|
.append('<a href="javascript:void(0)" data-skin="skin-blue" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 7px; background: #367fa9"></span><span class="bg-light-blue" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #222d32"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
|
|
|
|
|
+ '</a>'
|
|
|
|
|
+ '<p class="text-center no-margin">Blue</p>');
|
|
|
|
|
$skinsList.append($skinBlue);
|
|
|
|
|
+ '<p class="text-center no-margin">Blue</p>')
|
|
|
|
|
$skinsList.append($skinBlue)
|
|
|
|
|
var $skinBlack =
|
|
|
|
|
$('<li />', { style: 'float:left; width: 33.33333%; padding: 5px;' })
|
|
|
|
|
.append('<a href="javascript:void(0);" data-skin="skin-black" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
|
|
|
|
+ '<div style="box-shadow: 0 0 2px rgba(0,0,0,0.1)" class="clearfix"><span style="display:block; width: 20%; float: left; height: 7px; background: #fefefe;"></span><span style="display:block; width: 80%; float: left; height: 7px; background: #fefefe;"></span></div>'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #222;"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7;"></span></div>'
|
|
|
|
|
.append('<a href="javascript:void(0)" data-skin="skin-black" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
|
|
|
|
+ '<div style="box-shadow: 0 0 2px rgba(0,0,0,0.1)" class="clearfix"><span style="display:block; width: 20%; float: left; height: 7px; background: #fefefe"></span><span style="display:block; width: 80%; float: left; height: 7px; background: #fefefe"></span></div>'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #222"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
|
|
|
|
|
+ '</a>'
|
|
|
|
|
+ '<p class="text-center no-margin">Black</p>');
|
|
|
|
|
$skinsList.append($skinBlack);
|
|
|
|
|
+ '<p class="text-center no-margin">Black</p>')
|
|
|
|
|
$skinsList.append($skinBlack)
|
|
|
|
|
var $skinPurple =
|
|
|
|
|
$('<li />', { style: 'float:left; width: 33.33333%; padding: 5px;' })
|
|
|
|
|
.append('<a href="javascript:void(0);" data-skin="skin-purple" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
|
|
|
|
.append('<a href="javascript:void(0)" data-skin="skin-purple" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-purple-active"></span><span class="bg-purple" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #222d32;"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7;"></span></div>'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #222d32"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
|
|
|
|
|
+ '</a>'
|
|
|
|
|
+ '<p class="text-center no-margin">Purple</p>');
|
|
|
|
|
$skinsList.append($skinPurple);
|
|
|
|
|
+ '<p class="text-center no-margin">Purple</p>')
|
|
|
|
|
$skinsList.append($skinPurple)
|
|
|
|
|
var $skinGreen =
|
|
|
|
|
$('<li />', { style: 'float:left; width: 33.33333%; padding: 5px;' })
|
|
|
|
|
.append('<a href="javascript:void(0);" data-skin="skin-green" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
|
|
|
|
.append('<a href="javascript:void(0)" data-skin="skin-green" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-green-active"></span><span class="bg-green" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #222d32;"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7;"></span></div>'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #222d32"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
|
|
|
|
|
+ '</a>'
|
|
|
|
|
+ '<p class="text-center no-margin">Green</p>');
|
|
|
|
|
$skinsList.append($skinGreen);
|
|
|
|
|
+ '<p class="text-center no-margin">Green</p>')
|
|
|
|
|
$skinsList.append($skinGreen)
|
|
|
|
|
var $skinRed =
|
|
|
|
|
$('<li />', { style: 'float:left; width: 33.33333%; padding: 5px;' })
|
|
|
|
|
.append('<a href="javascript:void(0);" data-skin="skin-red" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
|
|
|
|
.append('<a href="javascript:void(0)" data-skin="skin-red" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-red-active"></span><span class="bg-red" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #222d32;"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7;"></span></div>'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #222d32"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
|
|
|
|
|
+ '</a>'
|
|
|
|
|
+ '<p class="text-center no-margin">Red</p>');
|
|
|
|
|
$skinsList.append($skinRed);
|
|
|
|
|
+ '<p class="text-center no-margin">Red</p>')
|
|
|
|
|
$skinsList.append($skinRed)
|
|
|
|
|
var $skinYellow =
|
|
|
|
|
$('<li />', { style: 'float:left; width: 33.33333%; padding: 5px;' })
|
|
|
|
|
.append('<a href="javascript:void(0);" data-skin="skin-yellow" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
|
|
|
|
.append('<a href="javascript:void(0)" data-skin="skin-yellow" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-yellow-active"></span><span class="bg-yellow" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #222d32;"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7;"></span></div>'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #222d32"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
|
|
|
|
|
+ '</a>'
|
|
|
|
|
+ '<p class="text-center no-margin">Yellow</p>');
|
|
|
|
|
$skinsList.append($skinYellow);
|
|
|
|
|
+ '<p class="text-center no-margin">Yellow</p>')
|
|
|
|
|
$skinsList.append($skinYellow)
|
|
|
|
|
|
|
|
|
|
// Light sidebar skins
|
|
|
|
|
var $skinBlueLight =
|
|
|
|
|
$('<li />', { style: 'float:left; width: 33.33333%; padding: 5px;' })
|
|
|
|
|
.append('<a href="javascript:void(0);" data-skin="skin-blue-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 7px; background: #367fa9;"></span><span class="bg-light-blue" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #f9fafc;"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7;"></span></div>'
|
|
|
|
|
.append('<a href="javascript:void(0)" data-skin="skin-blue-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 7px; background: #367fa9"></span><span class="bg-light-blue" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
|
|
|
|
|
+ '</a>'
|
|
|
|
|
+ '<p class="text-center no-margin" style="font-size: 12px">Blue Light</p>');
|
|
|
|
|
$skinsList.append($skinBlueLight);
|
|
|
|
|
+ '<p class="text-center no-margin" style="font-size: 12px">Blue Light</p>')
|
|
|
|
|
$skinsList.append($skinBlueLight)
|
|
|
|
|
var $skinBlackLight =
|
|
|
|
|
$('<li />', { style: 'float:left; width: 33.33333%; padding: 5px;' })
|
|
|
|
|
.append('<a href="javascript:void(0);" data-skin="skin-black-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
|
|
|
|
+ '<div style="box-shadow: 0 0 2px rgba(0,0,0,0.1)" class="clearfix"><span style="display:block; width: 20%; float: left; height: 7px; background: #fefefe;"></span><span style="display:block; width: 80%; float: left; height: 7px; background: #fefefe;"></span></div>'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #f9fafc;"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7;"></span></div>'
|
|
|
|
|
.append('<a href="javascript:void(0)" data-skin="skin-black-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
|
|
|
|
+ '<div style="box-shadow: 0 0 2px rgba(0,0,0,0.1)" class="clearfix"><span style="display:block; width: 20%; float: left; height: 7px; background: #fefefe"></span><span style="display:block; width: 80%; float: left; height: 7px; background: #fefefe"></span></div>'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
|
|
|
|
|
+ '</a>'
|
|
|
|
|
+ '<p class="text-center no-margin" style="font-size: 12px">Black Light</p>');
|
|
|
|
|
$skinsList.append($skinBlackLight);
|
|
|
|
|
+ '<p class="text-center no-margin" style="font-size: 12px">Black Light</p>')
|
|
|
|
|
$skinsList.append($skinBlackLight)
|
|
|
|
|
var $skinPurpleLight =
|
|
|
|
|
$('<li />', { style: 'float:left; width: 33.33333%; padding: 5px;' })
|
|
|
|
|
.append('<a href="javascript:void(0);" data-skin="skin-purple-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
|
|
|
|
.append('<a href="javascript:void(0)" data-skin="skin-purple-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-purple-active"></span><span class="bg-purple" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #f9fafc;"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7;"></span></div>'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
|
|
|
|
|
+ '</a>'
|
|
|
|
|
+ '<p class="text-center no-margin" style="font-size: 12px">Purple Light</p>');
|
|
|
|
|
$skinsList.append($skinPurpleLight);
|
|
|
|
|
+ '<p class="text-center no-margin" style="font-size: 12px">Purple Light</p>')
|
|
|
|
|
$skinsList.append($skinPurpleLight)
|
|
|
|
|
var $skinGreenLight =
|
|
|
|
|
$('<li />', { style: 'float:left; width: 33.33333%; padding: 5px;' })
|
|
|
|
|
.append('<a href="javascript:void(0);" data-skin="skin-green-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
|
|
|
|
.append('<a href="javascript:void(0)" data-skin="skin-green-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-green-active"></span><span class="bg-green" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #f9fafc;"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7;"></span></div>'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
|
|
|
|
|
+ '</a>'
|
|
|
|
|
+ '<p class="text-center no-margin" style="font-size: 12px">Green Light</p>');
|
|
|
|
|
$skinsList.append($skinGreenLight);
|
|
|
|
|
+ '<p class="text-center no-margin" style="font-size: 12px">Green Light</p>')
|
|
|
|
|
$skinsList.append($skinGreenLight)
|
|
|
|
|
var $skinRedLight =
|
|
|
|
|
$('<li />', { style: 'float:left; width: 33.33333%; padding: 5px;' })
|
|
|
|
|
.append('<a href="javascript:void(0);" data-skin="skin-red-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
|
|
|
|
.append('<a href="javascript:void(0)" data-skin="skin-red-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-red-active"></span><span class="bg-red" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #f9fafc;"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7;"></span></div>'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
|
|
|
|
|
+ '</a>'
|
|
|
|
|
+ '<p class="text-center no-margin" style="font-size: 12px">Red Light</p>');
|
|
|
|
|
$skinsList.append($skinRedLight);
|
|
|
|
|
+ '<p class="text-center no-margin" style="font-size: 12px">Red Light</p>')
|
|
|
|
|
$skinsList.append($skinRedLight)
|
|
|
|
|
var $skinYellowLight =
|
|
|
|
|
$('<li />', { style: 'float:left; width: 33.33333%; padding: 5px;' })
|
|
|
|
|
.append('<a href="javascript:void(0);" data-skin="skin-yellow-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
|
|
|
|
.append('<a href="javascript:void(0)" data-skin="skin-yellow-light" style="display: block; box-shadow: 0 0 3px rgba(0,0,0,0.4)" class="clearfix full-opacity-hover">'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 7px;" class="bg-yellow-active"></span><span class="bg-yellow" style="display:block; width: 80%; float: left; height: 7px;"></span></div>'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #f9fafc;"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7;"></span></div>'
|
|
|
|
|
+ '<div><span style="display:block; width: 20%; float: left; height: 20px; background: #f9fafc"></span><span style="display:block; width: 80%; float: left; height: 20px; background: #f4f5f7"></span></div>'
|
|
|
|
|
+ '</a>'
|
|
|
|
|
+ '<p class="text-center no-margin" style="font-size: 12px;">Yellow Light</p>');
|
|
|
|
|
$skinsList.append($skinYellowLight);
|
|
|
|
|
+ '<p class="text-center no-margin" style="font-size: 12px">Yellow Light</p>')
|
|
|
|
|
$skinsList.append($skinYellowLight)
|
|
|
|
|
|
|
|
|
|
$demoSettings.append('<h4 class="control-sidebar-heading">Skins</h4>');
|
|
|
|
|
$demoSettings.append($skinsList);
|
|
|
|
|
$demoSettings.append('<h4 class="control-sidebar-heading">Skins</h4>')
|
|
|
|
|
$demoSettings.append($skinsList)
|
|
|
|
|
|
|
|
|
|
$tabPane.append($demoSettings);
|
|
|
|
|
$('#control-sidebar-home-tab').after($tabPane);
|
|
|
|
|
$tabPane.append($demoSettings)
|
|
|
|
|
$('#control-sidebar-home-tab').after($tabPane)
|
|
|
|
|
|
|
|
|
|
setup();
|
|
|
|
|
})(jQuery, $.AdminLTE);
|
|
|
|
|
setup()
|
|
|
|
|
})
|
|
|
|
|