diff --git a/production/calendar.html b/production/calendar.html index ecd29ba1..407d13aa 100755 --- a/production/calendar.html +++ b/production/calendar.html @@ -372,9 +372,8 @@ diff --git a/production/chartjs.html b/production/chartjs.html index 44baa1e2..110dcf07 100755 --- a/production/chartjs.html +++ b/production/chartjs.html @@ -507,9 +507,8 @@ diff --git a/production/chartjs2.html b/production/chartjs2.html index 3cebbbbc..dcbceed5 100755 --- a/production/chartjs2.html +++ b/production/chartjs2.html @@ -501,9 +501,8 @@ diff --git a/production/contacts.html b/production/contacts.html index fc95fef0..0f91153f 100755 --- a/production/contacts.html +++ b/production/contacts.html @@ -711,9 +711,8 @@ diff --git a/production/css/custom.css b/production/css/custom.css index 92c145e2..500b9d76 100755 --- a/production/css/custom.css +++ b/production/css/custom.css @@ -27,7 +27,6 @@ body.nav-sm .navbar.nav_title a i { border-radius: 50%; } body.nav-sm .main_container .top_nav { - padding: 0 !important; display: block; margin-left: 70px; z-index: 2; @@ -307,9 +306,7 @@ body { line-height: 1.471; } .main_container .top_nav { - padding: 0 !important; display: block; - padding: 10px 20px 0; margin-left: 230px; } .main_container {} @@ -660,9 +657,13 @@ li.current-page a { .x_content canvas {} footer { background: #fff; - padding: 5px 20px 0; - height: 45px; - margin: 0 -17px; + padding: 15px 20px; + margin: 0 -10px; +} +@media (min-width: 768px) { + footer { + margin: 0 -20px; + } } .tile-stats.sparkline { padding: 10px; @@ -5383,6 +5384,3 @@ ul.notifications { width: 100%; height: 2px; } -.copyright-info { - padding: 8px 0; -} diff --git a/production/e_commerce.html b/production/e_commerce.html index a4eb9c50..a8f5657d 100755 --- a/production/e_commerce.html +++ b/production/e_commerce.html @@ -497,9 +497,8 @@ diff --git a/production/echarts.html b/production/echarts.html index 8df3708c..7af2e5c2 100755 --- a/production/echarts.html +++ b/production/echarts.html @@ -690,8 +690,8 @@ diff --git a/production/empty.html b/production/empty.html index 9a93a41c..06b052b3 100644 --- a/production/empty.html +++ b/production/empty.html @@ -2,430 +2,428 @@ - - - - - + + + + + - Gentallela Alela! | + Gentallela Alela! | - + - + - - + + - - - - - + + + + + - - + + - + - - + + -
-
-
-
+
+
+
+
- -
+ +
- -
-
- ... -
-
- Welcome, -

Empty user

-
-
- + +
+
+ ... +
+
+ Welcome, +

Empty user

+
+
+ -
+
- - + - - - -
-
+ + + +
+
- -
+ +
- + -
- +
+ - -
+ +
-
-
-
+
+
+
-
-
-

Empty no content

-
-
+
+
+

Empty no content

+
+
-
-
+
+
-
- ... -
+
+ ... +
-
-
-
+
+
+
-
-
+
+
- + +
+
+ Gentelella - Bootstrap Admin Template by Colorlib +
+
+
+ +
+ -
- -
-
- -
- +
-
+
-
+
+ +
+
+
-
- -
-
-
+ - + + + + + + + + + + + + - - - - - - - - - - - - + - + + + + + + + + + + + + - - - - - - - - - - function gd(year, month, day) { - return new Date(year, month - 1, day).getTime(); - } - }); - + + + + + + + + + + + - - - - - - - - - - icons.play(); - + + + + + - - - - - - + var optionSet1 = { + startDate: moment().subtract(29, 'days'), + endDate: moment(), + minDate: '01/01/2012', + maxDate: '12/31/2015', + dateLimit: { + days: 60 + }, + showDropdowns: true, + showWeekNumbers: true, + timePicker: false, + timePickerIncrement: 1, + timePicker12Hour: true, + ranges: { + 'Today': [moment(), moment()], + 'Yesterday': [moment().subtract(1, 'days'), moment().subtract(1, 'days')], + 'Last 7 Days': [moment().subtract(6, 'days'), moment()], + 'Last 30 Days': [moment().subtract(29, 'days'), moment()], + 'This Month': [moment().startOf('month'), moment().endOf('month')], + 'Last Month': [moment().subtract(1, 'month').startOf('month'), moment().subtract(1, 'month').endOf('month')] + }, + opens: 'left', + buttonClasses: ['btn btn-default'], + applyClass: 'btn-small btn-primary', + cancelClass: 'btn-small', + format: 'MM/DD/YYYY', + separator: ' to ', + locale: { + applyLabel: 'Submit', + cancelLabel: 'Clear', + fromLabel: 'From', + toLabel: 'To', + customRangeLabel: 'Custom', + daysOfWeek: ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'], + monthNames: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'], + firstDay: 1 + } + }; + $('#reportrange span').html(moment().subtract(29, 'days').format('MMMM D, YYYY') + ' - ' + moment().format('MMMM D, YYYY')); + $('#reportrange').daterangepicker(optionSet1, cb); + $('#reportrange').on('show.daterangepicker', function() { + console.log("show event fired"); + }); + $('#reportrange').on('hide.daterangepicker', function() { + console.log("hide event fired"); + }); + $('#reportrange').on('apply.daterangepicker', function(ev, picker) { + console.log("apply event fired, start/end dates are " + picker.startDate.format('MMMM D, YYYY') + " to " + picker.endDate.format('MMMM D, YYYY')); + }); + $('#reportrange').on('cancel.daterangepicker', function(ev, picker) { + console.log("cancel event fired"); + }); + $('#options1').click(function() { + $('#reportrange').data('daterangepicker').setOptions(optionSet1, cb); + }); + $('#options2').click(function() { + $('#reportrange').data('daterangepicker').setOptions(optionSet2, cb); + }); + $('#destroy').click(function() { + $('#reportrange').data('daterangepicker').remove(); + }); + }); + + + + diff --git a/production/form.html b/production/form.html index 86feaebf..894c4bf2 100755 --- a/production/form.html +++ b/production/form.html @@ -1381,14 +1381,12 @@ - diff --git a/production/form_advanced.html b/production/form_advanced.html index 40a37f72..817d5537 100755 --- a/production/form_advanced.html +++ b/production/form_advanced.html @@ -1797,14 +1797,12 @@ - diff --git a/production/form_buttons.html b/production/form_buttons.html index 0e31bcba..e3dc4c3d 100755 --- a/production/form_buttons.html +++ b/production/form_buttons.html @@ -780,9 +780,8 @@ diff --git a/production/form_upload.html b/production/form_upload.html index 864c7261..d60ca7d2 100755 --- a/production/form_upload.html +++ b/production/form_upload.html @@ -377,9 +377,8 @@ diff --git a/production/form_validation.html b/production/form_validation.html index 9f5d33ea..8192e27b 100755 --- a/production/form_validation.html +++ b/production/form_validation.html @@ -455,9 +455,8 @@ diff --git a/production/form_wizards.html b/production/form_wizards.html index 2451f98e..274da35f 100755 --- a/production/form_wizards.html +++ b/production/form_wizards.html @@ -631,9 +631,8 @@ diff --git a/production/general_elements.html b/production/general_elements.html index c9597076..4f6dff30 100755 --- a/production/general_elements.html +++ b/production/general_elements.html @@ -1650,9 +1650,8 @@ diff --git a/production/glyphicons.html b/production/glyphicons.html index 9719a056..ef5b0483 100755 --- a/production/glyphicons.html +++ b/production/glyphicons.html @@ -1761,9 +1761,8 @@ diff --git a/production/icons.html b/production/icons.html index 2396a6da..cb4fd488 100755 --- a/production/icons.html +++ b/production/icons.html @@ -2372,9 +2372,8 @@ diff --git a/production/inbox.html b/production/inbox.html index 45597677..168f05d6 100755 --- a/production/inbox.html +++ b/production/inbox.html @@ -567,9 +567,8 @@ diff --git a/production/index.html b/production/index.html index 1830da8d..c2b7cc65 100755 --- a/production/index.html +++ b/production/index.html @@ -1054,32 +1054,19 @@ - - - - - - - - - - - - diff --git a/production/index2.html b/production/index2.html index 2734cc3b..0edd377d 100755 --- a/production/index2.html +++ b/production/index2.html @@ -788,9 +788,8 @@ diff --git a/production/index3.html b/production/index3.html index 703ebecf..8b76b9cf 100755 --- a/production/index3.html +++ b/production/index3.html @@ -896,16 +896,13 @@ - - diff --git a/production/invoice.html b/production/invoice.html index dd076144..b2eec40d 100755 --- a/production/invoice.html +++ b/production/invoice.html @@ -524,9 +524,8 @@ diff --git a/production/media_gallery.html b/production/media_gallery.html index 66dd6337..99da831d 100755 --- a/production/media_gallery.html +++ b/production/media_gallery.html @@ -563,9 +563,8 @@ diff --git a/production/morisjs.html b/production/morisjs.html index 33616a9d..49d1ba1f 100755 --- a/production/morisjs.html +++ b/production/morisjs.html @@ -501,20 +501,17 @@ - - diff --git a/production/other_charts.html b/production/other_charts.html index facc3c47..afb9a291 100755 --- a/production/other_charts.html +++ b/production/other_charts.html @@ -463,25 +463,20 @@ - - - - diff --git a/production/plain_page.html b/production/plain_page.html index 47408439..36d4de39 100755 --- a/production/plain_page.html +++ b/production/plain_page.html @@ -366,14 +366,12 @@ - diff --git a/production/pricing_tables.html b/production/pricing_tables.html index 14a26e43..2fbeb33e 100755 --- a/production/pricing_tables.html +++ b/production/pricing_tables.html @@ -509,17 +509,15 @@ - + - diff --git a/production/profile.html b/production/profile.html index 308ebe00..b449e412 100755 --- a/production/profile.html +++ b/production/profile.html @@ -668,9 +668,8 @@ diff --git a/production/project_detail.html b/production/project_detail.html index 0748059e..26c4f0e1 100755 --- a/production/project_detail.html +++ b/production/project_detail.html @@ -503,9 +503,8 @@ diff --git a/production/projects.html b/production/projects.html index 9906ea1e..42804463 100755 --- a/production/projects.html +++ b/production/projects.html @@ -709,9 +709,8 @@ diff --git a/production/tables.html b/production/tables.html index 52d56794..e52f4bb2 100755 --- a/production/tables.html +++ b/production/tables.html @@ -764,20 +764,17 @@ - - diff --git a/production/tables_dynamic.html b/production/tables_dynamic.html index 77dd5fbb..bb4c03e8 100755 --- a/production/tables_dynamic.html +++ b/production/tables_dynamic.html @@ -3035,11 +3035,11 @@ + diff --git a/production/typography.html b/production/typography.html index 6a509771..1fde9a2a 100755 --- a/production/typography.html +++ b/production/typography.html @@ -405,9 +405,8 @@ diff --git a/production/widgets.html b/production/widgets.html index 4ef93b05..97021000 100755 --- a/production/widgets.html +++ b/production/widgets.html @@ -917,16 +917,7 @@ - - - - - - - - - @@ -935,9 +926,8 @@