diff --git a/public/v2/css/adminlte.css b/public/v2/css/old-adminlte.css similarity index 100% rename from public/v2/css/adminlte.css rename to public/v2/css/old-adminlte.css diff --git a/public/v2/css/adminlte.css.map b/public/v2/css/old-adminlte.css.map similarity index 100% rename from public/v2/css/adminlte.css.map rename to public/v2/css/old-adminlte.css.map diff --git a/public/v2/css/adminlte.min.css b/public/v2/css/old-adminlte.min.css similarity index 100% rename from public/v2/css/adminlte.min.css rename to public/v2/css/old-adminlte.min.css diff --git a/public/v2/css/adminlte.min.css.map b/public/v2/css/old-adminlte.min.css.map similarity index 100% rename from public/v2/css/adminlte.min.css.map rename to public/v2/css/old-adminlte.min.css.map diff --git a/public/v2/js/adminlte.js b/public/v2/js/old-adminlte.js similarity index 100% rename from public/v2/js/adminlte.js rename to public/v2/js/old-adminlte.js diff --git a/public/v2/js/adminlte.js.map b/public/v2/js/old-adminlte.js.map similarity index 100% rename from public/v2/js/adminlte.js.map rename to public/v2/js/old-adminlte.js.map diff --git a/public/v2/js/adminlte.min.js b/public/v2/js/old-adminlte.min.js similarity index 100% rename from public/v2/js/adminlte.min.js rename to public/v2/js/old-adminlte.min.js diff --git a/public/v2/js/adminlte.min.js.map b/public/v2/js/old-adminlte.min.js.map similarity index 100% rename from public/v2/js/adminlte.min.js.map rename to public/v2/js/old-adminlte.min.js.map diff --git a/resources/assets/v2/sass/app.scss b/resources/assets/v2/sass/app.scss index be59088937..e943c7bbf7 100644 --- a/resources/assets/v2/sass/app.scss +++ b/resources/assets/v2/sass/app.scss @@ -19,9 +19,27 @@ */ $color-mode-type: media-query; +$link-decoration: none !default; + +.balance-box { + container: sidebar / inline-size; +} + +.form-control { + appearance: auto; +} // Bootstrap -//@import "~bootstrap-sass/assets/stylesheets/bootstrap"; +// @import "bootstrap/scss/bootstrap"; + +// admin LTE +@import "admin-lte/src/scss/adminlte"; + +// @import "~bootstrap-sass/assets/stylesheets/bootstrap"; + + + + // Font awesome //@import "~font-awesome/css/font-awesome"; diff --git a/resources/views/auth/login.blade.php b/resources/views/auth/login.blade.php index 902af7da00..589d2ae31b 100644 --- a/resources/views/auth/login.blade.php +++ b/resources/views/auth/login.blade.php @@ -48,11 +48,11 @@
@if(config('firefly.authentication_guard') === 'web') -
+
@else -
+
@endif diff --git a/resources/views/errors/FireflyException.blade.php b/resources/views/errors/FireflyException.blade.php index 51502d253a..d03b123958 100644 --- a/resources/views/errors/FireflyException.blade.php +++ b/resources/views/errors/FireflyException.blade.php @@ -1,108 +1,81 @@ @extends('layout.v2.error') @section('content') -
- -
- - -@endsection - - - - - - + - {# favicons #} - {% include('partials.favicons') %} - - -
-
-

FireflyIII

xxxxxx +
+
-
-
-
-

{{ trans('errors.error_occurred') }}

+
+
+

{{ trans('errors.error_occurred') }}

+
-
-
-
-

- {{ trans('errors.error_not_recoverable') }} -

-

- {{ exception.getMessage |default('General unknown errror') }} -

-

- {{ trans('errors.error_location', {file: exception.getFile, line: exception.getLine, code: exception.getCode })|raw }} -

+ +
+
+

+ {{ trans('errors.error_not_recoverable') }} +

+

+ {{ $exception->getMessage() ?? 'General unknown error' }} +

+

+ {!! trans('errors.error_location', ['file' => $exception->getFile(), 'line' => $exception->getLine(), 'code' => $exception->getCode() ]) !!} +

+
-
-{% if not debug %} + + @if(!$debug)

{{ trans('errors.more_info') }}

- {{ trans('errors.collect_info')|raw }} - {{ trans('errors.collect_info_more')|raw }} + {!! trans('errors.collect_info') !!} + {!! trans('errors.collect_info_more') !!}

{{ trans('errors.github_help') }}

- {{ trans('errors.github_instructions')|raw }} + {{ trans('errors.github_instructions') }} |raw

  1. {{ trans('errors.use_search') }}
  2. -
  3. {{ trans('errors.include_info', { link: route('debug') })|raw }}
  4. +
  5. {{ trans('errors.include_info', ['link' => route('debug') ]) }}
  6. |raw
  7. {{ trans('errors.tell_more') }}
  8. {{ trans('errors.include_logs') }}
  9. {{ trans('errors.what_did_you_do') }}
-{% endif %} - -{% if debug %} -
-
-

{{ trans('errors.error') }}

-

- {{ trans('errors.error_location', {file: exception.getFile, line: exception.getLine, code: exception.getCode })|raw }} -

-

- {{ trans('errors.stacktrace') }} -

-
- {{ exception.getTraceAsString|nl2br }} + @endif + @if($debug) +
+
+

{{ trans('errors.error') }}

+

+ {!! trans('errors.error_location', ['file' => $exception->getFile(), 'line' => $exception->getLine(), 'code' => $exception->getCode() ]) !!} +

+

+ {{ trans('errors.stacktrace') }} +

+
+ {!! nl2br($exception->getTraceAsString()) !!} +
-
-{% endif %} + @endif + +@endsection + - - diff --git a/resources/views/v2/partials/layout/head.blade.php b/resources/views/v2/partials/layout/head.blade.php index beedf5fbbe..dac01efd19 100644 --- a/resources/views/v2/partials/layout/head.blade.php +++ b/resources/views/v2/partials/layout/head.blade.php @@ -66,16 +66,11 @@ Firefly III - - - + - - - + --> @yield('vite')