Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions resources/views/common_scripts.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
@endif

{{-- jQuery UI and Smoothness theme --}}
@basset('https://raw.githubusercontent.com/jquery/jquery-ui/refs/tags/1.13.2/dist/jquery-ui.min.js', true, [
'integrity' => 'sha384-4D3G3GikQs6hLlLZGdz5wLFzuqE9v4yVGAcOH86y23JqBDPzj9viv0EqyfIa6YUL',
@basset('https://cdn.jsdelivr.net/npm/jquery-ui@1.14.2/dist/jquery-ui.min.js', true, [
'integrity' => 'sha384-tBcEcHGtNy7/Mx08+YxuvQ6v6s0N2jgehtFiT+bLtGwTj/txXtB/L5GqXfggm5sS',
'crossorigin' => 'anonymous'
])

Expand Down
18 changes: 18 additions & 0 deletions resources/views/common_styles.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
@basset(base_path('vendor/studio-42/elfinder/img/icons-big.svg'))
@basset(base_path('vendor/studio-42/elfinder/img/logo.png'))
@basset(base_path('vendor/studio-42/elfinder/css/elfinder.min.css'))
@basset('https://cdn.jsdelivr.net/npm/jquery-ui@1.14.2/dist/themes/smoothness/jquery-ui.min.css', true, [
'integrity' => 'sha384-e4Bm/JKXqLbEnnDNLZIbB0u9VBy3H9D+TNdLb22ybxTLsmtWgRhQ3/BKEgJ13zU2',
'crossorigin' => 'anonymous',
])
@basset('https://cdn.jsdelivr.net/gh/RobiNN1/elFinder-Material-Theme@3.0.0/Material/css/theme.min.css')
@basset('https://cdn.jsdelivr.net/gh/RobiNN1/elFinder-Material-Theme@3.0.0/Material/images/loading.svg', false)
@basset('https://cdn.jsdelivr.net/gh/RobiNN1/elFinder-Material-Theme@3.0.0/Material/font/material.eot', false)
Expand All @@ -14,6 +18,20 @@
@basset('https://cdn.jsdelivr.net/gh/RobiNN1/elFinder-Material-Theme@3.0.0/Material/font/material.ttf', false)
@basset('https://cdn.jsdelivr.net/gh/RobiNN1/elFinder-Material-Theme@3.0.0/Material/font/material.woff2', false)
@basset('https://cdn.jsdelivr.net/gh/RobiNN1/elFinder-Material-Theme@3.0.0/Material/css/theme-gray.min.css', false)
@bassetBlock('elfinderCommonStyles.css')
<style>
.elfinder .elfinder-toolbar .elfinder-button,
.elfinder .elfinder-toolbar .elfinder-button.ui-state-default,
.elfinder .elfinder-toolbar .elfinder-button.ui-state-hover,
.elfinder .elfinder-toolbar .elfinder-button.ui-state-active,
.elfinder .elfinder-toolbar .elfinder-button.ui-state-focus {
border: none !important;
background: transparent !important;
box-shadow: none !important;
outline: none !important;
}
</style>
@endBassetBlock
<span data-elfinder-light-theme-url="{{ Basset::getUrl('https://cdn.jsdelivr.net/gh/RobiNN1/elFinder-Material-Theme@3.0.0/Material/css/theme-gray.min.css') }}" style="display:none"></span>
@bassetBlock('elfinderThemeSwitcherScript.js')
<script type="text/javascript">
Expand Down