Skip to content

Commit 2dd3475

Browse files
committed
.
1 parent d15b0af commit 2dd3475

File tree

9 files changed

+85
-9
lines changed

9 files changed

+85
-9
lines changed

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<a href="https://packagist.org/packages/laravel-frontend-presets/light-bootstrap-dashboard"><img src="https://poser.pugx.org/laravel-frontend-presets/light-bootstrap-dashboard/v/stable.svg" alt="Latest Stable Version"></a> ![license](https://img.shields.io/badge/license-MIT-blue.svg) [![GitHub issues open](https://img.shields.io/github/issues/laravel-frontend-presets/light-bootstrap-dashboard.svg?maxAge=2592000)](https://github.com/laravel-frontend-presets/light-bootstrap-dashboard/issues?q=is%3Aopen+is%3Aissue) [![GitHub issues closed](https://img.shields.io/github/issues-closed-raw/laravel-frontend-presets/light-bootstrap-dashboard.svg?maxAge=2592000)](https://github.com/laravel-frontend-presets/light-bootstrap-dashboard/issues?q=is%3Aissue+is%3Aclosed)
44

5-
*Frontend version*: Light Bootstrap Dashboard v2.1.1. More info at https://www.creative-tim.com/product/light-bootstrap-dashboard/?ref=lbdl-readme
5+
*Frontend version*: Light Bootstrap Dashboard v2.1.1. More info at https://www.creative-tim.com/product/light-bootstrap-dashboard
66

77
![Product Image](https://github.com/creativetimofficial/public-assets/raw/master/light-bootstrap-dashboard-laravel/intro.gif)
88

src/light-bootstrap-stubs/resources/assets/css/light-bootstrap-dashboard.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -880,8 +880,7 @@ body>.navbar-collapse[data-color="purple"]:after {
880880
font-weight: 400;
881881
padding: 8px 16px;
882882
border: 1px solid #888888;
883-
color: #FFFFFF;
884-
background-color: #888888;
883+
color: #777777;
885884
cursor: pointer;
886885
margin-bottom: 5px;
887886
font-size: 0.875rem;

src/light-bootstrap-stubs/resources/assets/js/core/popper.min.js

100755100644
File mode changed.

src/light-bootstrap-stubs/resources/assets/js/demo.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ $().ready(function() {
88

99
window_width = $(window).width();
1010

11-
fixed_plugin_open = $('.sidebar .sidebar-wrapper .nav li.active a p').html();
11+
// fixed_plugin_open = $('.sidebar .sidebar-wrapper .nav li.active a p').html();
1212

13-
if (window_width > 767 && fixed_plugin_open == 'Dashboard') {
14-
if ($('.fixed-plugin .dropdown').hasClass('show-dropdown')) {
15-
$('.fixed-plugin .dropdown').addClass('show');
16-
}
13+
// if (window_width > 767 && fixed_plugin_open == 'Dashboard') {
14+
// if ($('.fixed-plugin .dropdown').hasClass('show-dropdown')) {
15+
// $('.fixed-plugin .dropdown').addClass('show');
16+
// }
1717

18-
}
18+
// }
1919

2020
$('.fixed-plugin a').click(function(event) {
2121
// Alex if we click on switch, stop propagation of the event, so the dropdown will not be hide, otherwise we set the section active

src/light-bootstrap-stubs/resources/assets/js/plugins/bootstrap-datepicker.js

100755100644
File mode changed.

src/light-bootstrap-stubs/resources/assets/js/plugins/bootstrap-notify.js

100755100644
File mode changed.

src/light-bootstrap-stubs/resources/assets/js/plugins/chartist.min.js

100755100644
File mode changed.

src/light-bootstrap-stubs/resources/views/layouts/app.blade.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@
113113

114114
@if (auth()->check() && request()->route()->getName() != "")
115115
@include('layouts.navbars.sidebar')
116+
@include('pages/sidebarstyle')
116117
@endif
117118

118119
<div class="@if (auth()->check() && request()->route()->getName() != "") main-panel @endif">
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
<div class="fixed-plugin">
2+
<div class="dropdown show-dropdown">
3+
<a href="#" data-toggle="dropdown">
4+
<i class="fa fa-cog fa-2x"> </i>
5+
</a>
6+
<ul class="dropdown-menu">
7+
<li class="header-title"> {{__('Sidebar Style')}}</li>
8+
<li class="adjustments-line">
9+
<a href="javascript:void(0)" class="switch-trigger">
10+
<p>Background Image</p>
11+
<label class="switch">
12+
<input type="checkbox" data-toggle="switch" checked="" data-on-color="primary" data-off-color="primary">
13+
<span class="toggle"></span>
14+
</label>
15+
<div class="clearfix"></div>
16+
</a>
17+
</li>
18+
<li class="adjustments-line">
19+
<a href="javascript:void(0)" class="switch-trigger background-color">
20+
<p>Filters</p>
21+
<div class="pull-right">
22+
<span class="badge filter badge-black" data-color="black"></span>
23+
<span class="badge filter badge-azure" data-color="azure"></span>
24+
<span class="badge filter badge-green" data-color="green"></span>
25+
<span class="badge filter badge-orange" data-color="orange"></span>
26+
<span class="badge filter badge-red" data-color="red"></span>
27+
<span class="badge filter badge-purple active" data-color="purple"></span>
28+
</div>
29+
<div class="clearfix"></div>
30+
</a>
31+
</li>
32+
<li class="header-title">Sidebar Images</li>
33+
<li class="active">
34+
<a class="img-holder switch-trigger" href="javascript:void(0)">
35+
<img src="{{asset('/light-bootstrap/img/sidebar-1.jpg')}}" alt="" />
36+
</a>
37+
</li>
38+
<li>
39+
<a class="img-holder switch-trigger" href="javascript:void(0)">
40+
<img src="{{asset('light-bootstrap/img/sidebar-3.jpg')}}" alt="" />
41+
</a>
42+
</li>
43+
<li>
44+
<a class="img-holder switch-trigger" href="javascript:void(0)">
45+
<img src="{{asset('light-bootstrap/img/sidebar-4.jpg')}}" alt="" />
46+
</a>
47+
</li>
48+
<li>
49+
<a class="img-holder switch-trigger" href="javascript:void(0)">
50+
<img src="{{asset('light-bootstrap/img/sidebar-5.jpg')}}" alt="" />
51+
</a>
52+
</li>
53+
<li class="button-container">
54+
<div class="">
55+
<a href="https://www.creative-tim.com/product/light-bootstrap-dashboard-laravel" target="_blank" class="btn btn-info btn-block btn-fill">Download, it's free!</a>
56+
</div>
57+
</li>
58+
<li class="button-container">
59+
<div class="">
60+
<a href="https://light-bootrap-dashboard.creative-tim.com/docs/tutorial-components.html" target="_blank" class="btn btn-default btn-block btn-fill">View Documentation</a>
61+
</div>
62+
</li>
63+
<li class="header-title pro-title text-center">Want more components?</li>
64+
<li class="button-container">
65+
<div class="">
66+
<a href="https://www.creative-tim.com/product/light-bootstrap-dashboard-laravel-pro" target="_blank" class="btn btn-warning btn-block btn-fill">Get The PRO Version!</a>
67+
</div>
68+
</li>
69+
<li class="header-title" id="sharrreTitle">Thank you for sharing!</li>
70+
<li class="button-container">
71+
<button id="twitter" class="btn btn-social btn-outline btn-twitter btn-round sharrre twitter-sharrre"><i class="fa fa-twitter"></i><a href="https://twitter.com/updivision?ref=lbdl-readme">· 256</a></button>
72+
<button id="facebook" class="btn btn-social btn-outline btn-facebook btn-round sharrre facebook-sharrre"><i class="fa fa-facebook-square"></i><a href="https://www.facebook.com/updivision?ref=lbdl-readme">· 426</a></button>
73+
</li>
74+
</ul>
75+
</div>
76+
</div>

0 commit comments

Comments
 (0)