Added custom css files
This commit is contained in:
parent
05dbcaf6c4
commit
6d84613158
@ -33,6 +33,7 @@ return [
|
|||||||
'signLinkedin' => 'Sign in using Linkedin',
|
'signLinkedin' => 'Sign in using Linkedin',
|
||||||
'signW3id' => 'Sign in using W3id',
|
'signW3id' => 'Sign in using W3id',
|
||||||
'signIBMid' => 'Sign in using IBMid',
|
'signIBMid' => 'Sign in using IBMid',
|
||||||
|
'signMeetup' => 'Sign in using Meetup',
|
||||||
'sendpassword' => 'Send Password Reset Link',
|
'sendpassword' => 'Send Password Reset Link',
|
||||||
'passwordreset' => 'Reset password',
|
'passwordreset' => 'Reset password',
|
||||||
'pagenotfound' => 'Page not found',
|
'pagenotfound' => 'Page not found',
|
||||||
|
@ -16,8 +16,14 @@
|
|||||||
<link rel="stylesheet" href="/css/adminlte.min.css">
|
<link rel="stylesheet" href="/css/adminlte.min.css">
|
||||||
<!-- Google Font: Source Sans Pro -->
|
<!-- Google Font: Source Sans Pro -->
|
||||||
<link href="//fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
|
<link href="//fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
|
||||||
|
@if(file_exists('css/social.css'))
|
||||||
|
<!-- Social Logins -->
|
||||||
|
<link rel="stylesheet" href="/css/social.css">
|
||||||
|
@endif
|
||||||
|
@if(file_exists('css/print.css'))
|
||||||
<!-- Printing Modifications -->
|
<!-- Printing Modifications -->
|
||||||
<link rel="stylesheet" href="/css/print.css">
|
<link rel="stylesheet" href="/css/print.css">
|
||||||
|
@endif
|
||||||
|
|
||||||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||||
@ -45,4 +51,9 @@
|
|||||||
|
|
||||||
<!-- STYLESHEETS -->
|
<!-- STYLESHEETS -->
|
||||||
{!! Asset::styles() !!}
|
{!! Asset::styles() !!}
|
||||||
|
|
||||||
|
@if(file_exists('css/fixes.css'))
|
||||||
|
<!-- CSS Fixes -->
|
||||||
|
<link rel="stylesheet" href="/css/fixes.css">
|
||||||
|
@endif
|
||||||
</head>
|
</head>
|
@ -5,9 +5,8 @@
|
|||||||
<!-- AdminLTE -->
|
<!-- AdminLTE -->
|
||||||
<script src="/js/adminlte.min.js"></script>
|
<script src="/js/adminlte.min.js"></script>
|
||||||
|
|
||||||
<!-- Our our CSRF token to each interaction -->
|
|
||||||
{{-- @todo Test that we are validating this, also axios should be doing this for us? --}}
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
// Our CSRF token to each interaction
|
||||||
$.ajaxSetup({
|
$.ajaxSetup({
|
||||||
headers: {
|
headers: {
|
||||||
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
|
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
|
||||||
@ -31,6 +30,7 @@
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// @todo this is not firing.
|
||||||
$("body").on("expanded.lte.pushmenu", function(){
|
$("body").on("expanded.lte.pushmenu", function(){
|
||||||
if($.AdminLTESidebarTweak.options.EnableRemember){
|
if($.AdminLTESidebarTweak.options.EnableRemember){
|
||||||
document.cookie = "toggleState=opened";
|
document.cookie = "toggleState=opened";
|
||||||
|
Loading…
Reference in New Issue
Block a user