mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-05-24 13:44:42 +00:00
- favicon fix
- checkout fix - stripe prefered locales - color theme - stripe card info box in dev version - upload fix
This commit is contained in:
@@ -25,7 +25,7 @@
|
||||
|
||||
{{--Icons--}}
|
||||
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="{{ asset('assets/images/app-icon.png') }}">
|
||||
<link rel="icon" href="{{ $settings->app_favicon ?? asset('favicon.png') }}?v={{ get_version() }}">
|
||||
<link rel="icon" href="{{ $settings->app_favicon ? url($settings->app_favicon) : asset('favicon.png') }}?v={{ get_version() }}">
|
||||
|
||||
{{--Format Detection--}}
|
||||
<meta name="format-detection" content="telephone=no">
|
||||
@@ -64,6 +64,8 @@
|
||||
|
||||
isAuthenticated: {{ auth()->check() ? 1 : 0 }},
|
||||
isSaaS: {{ $settings && $settings->license === 'Extended' ? 1 : 0 }},
|
||||
|
||||
isDev: {{ is_dev() ? 1 : 0 }},
|
||||
isDemo: {{ config('vuefilemanager.is_demo') ? 1 : 0 }},
|
||||
|
||||
legal: {!! $legal ?? 'undefined' !!},
|
||||
|
||||
@@ -65,6 +65,12 @@
|
||||
|
||||
{{-- ButtonBase --}}
|
||||
.button-base.theme-solid {background: {{ $settings->app_color }}}
|
||||
.button-base.theme-solid polyline,
|
||||
.button-base.theme-solid path {
|
||||
color: white;
|
||||
}
|
||||
|
||||
|
||||
.button-base.theme {background: {{ $settings->app_color }}10}
|
||||
.button-base.theme {color: {{ $settings->app_color }}}
|
||||
.button-base.theme .content {color: {{ $settings->app_color }}}
|
||||
@@ -82,6 +88,9 @@
|
||||
.folder-item.is-dragenter {border-color: {{ $settings->app_color }} !important;}
|
||||
.favourites.is-dragenter .menu-list {border-color: {{ $settings->app_color }} !important;}
|
||||
|
||||
{{-- Stripe --}}
|
||||
.StripeElement--focus {border-color: {{ $settings->app_color }} !important;}
|
||||
|
||||
{{-- Dark mode --}}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
.dark-text-theme {color: {{ $settings->app_color }}}
|
||||
|
||||
Reference in New Issue
Block a user