Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
4472202afb | ||
|
2040266ab2 | ||
|
1774987dea | ||
|
6c60298e8f | ||
|
41b320a5b9 | ||
|
1096f0e28d |
@@ -14,12 +14,6 @@
|
|||||||
"creativeorange/gravatar": "^1.0",
|
"creativeorange/gravatar": "^1.0",
|
||||||
"orchestra/asset": "^4.0"
|
"orchestra/asset": "^4.0"
|
||||||
},
|
},
|
||||||
"repositories": [
|
|
||||||
{
|
|
||||||
"type": "vcs",
|
|
||||||
"url": "https://github.com/leenooks/laravel-theme"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
|
@@ -5,7 +5,16 @@
|
|||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
<div class="login-box">
|
@if(isset($login_note) AND $login_note)
|
||||||
|
<div class="alert alert-info alert-dismissible m-auto">
|
||||||
|
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
||||||
|
<h5><i class="icon fa fa-info"></i> NOTE!</h5>
|
||||||
|
{!! $login_note !!}
|
||||||
|
</div>
|
||||||
|
<br>
|
||||||
|
@endisset
|
||||||
|
|
||||||
|
<div class="login-box m-auto">
|
||||||
<div class="login-logo">
|
<div class="login-logo">
|
||||||
<a>{!! config('app.name_html_long') !!}</a>
|
<a>{!! config('app.name_html_long') !!}</a>
|
||||||
</div>
|
</div>
|
||||||
|
@@ -39,7 +39,12 @@
|
|||||||
<link rel="stylesheet" href="{{ asset('/css/adminlte.min.css') }}">
|
<link rel="stylesheet" href="{{ asset('/css/adminlte.min.css') }}">
|
||||||
|
|
||||||
@if(file_exists('css/fixes.css'))
|
@if(file_exists('css/fixes.css'))
|
||||||
<!-- CSS Fixes -->
|
<!-- CSS Fixes -->
|
||||||
<link rel="stylesheet" href="{{ asset('/css/fixes.css') }}">
|
<link rel="stylesheet" href="{{ asset('/css/fixes.css') }}">
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
|
@if(file_exists('css/custom.css'))
|
||||||
|
<!-- Custom CSS -->
|
||||||
|
<link rel="stylesheet" href="{{ asset('/css/custom.css') }}">
|
||||||
|
@endif
|
||||||
</head>
|
</head>
|
@@ -11,7 +11,7 @@
|
|||||||
<!-- SEARCH FORM -->
|
<!-- SEARCH FORM -->
|
||||||
<form class="form-inline ml-3">
|
<form class="form-inline ml-3">
|
||||||
<div class="input-group input-group-sm">
|
<div class="input-group input-group-sm">
|
||||||
<input class="form-control form-control-navbar" name="q" type="search" placeholder="Search" aria-label="Search">
|
<input class="form-control form-control-navbar" name="q" type="search" placeholder="Search" aria-label="Search" autocomplete="off">
|
||||||
<div class="input-group-append">
|
<div class="input-group-append">
|
||||||
<button class="btn btn-navbar" type="submit">
|
<button class="btn btn-navbar" type="submit">
|
||||||
<i class="fa fa-search"></i>
|
<i class="fa fa-search"></i>
|
||||||
|
@@ -60,7 +60,12 @@
|
|||||||
$(this).removeClass('hold-transition');
|
$(this).removeClass('hold-transition');
|
||||||
});
|
});
|
||||||
}else{
|
}else{
|
||||||
$("body").addClass('sidebar-collapse');
|
$("body")
|
||||||
|
.addClass('sidebar-collapse')
|
||||||
|
.delay(500).queue(function () {
|
||||||
|
window.dispatchEvent(new Event('resize'));
|
||||||
|
$(this).dequeue();
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user