Fix FLEXIAPI-336 Fix broken ph icons

This commit is contained in:
Timothée Jaussoin 2025-06-19 11:06:33 +02:00
parent f561a55221
commit 3a7f4486bb
12 changed files with 16 additions and 15 deletions

View file

@ -51,6 +51,7 @@ v2.0
- Fix FLEXIAPI-330 Remove the ConfirmedRegistration email and related code
- Fix FLEXIAPI-324 Add an app setup wizard page
- Fix FLEXIAPI-335 Safari rendering issues with font icons
- Fix FLEXIAPI-336 Fix broken ph icons
v1.6
----

View file

@ -114,7 +114,7 @@
<thead>
<tr>
<th>{{ __('Created') }}</th>
<th>{{ __('Via') }} <i class="ph ph-phone</i>/"><i class="ph ph-envelope</i>"></th>
<th>{{ __('Via') }} <i class="ph ph-phone"></i><i class="ph ph-envelope"></i></th>
<th>{{ __('Used on') }}</th>
</tr>
</thead>

View file

@ -1,5 +1,5 @@
@if ($account->activated)
<span class="badge badge-success" title="{{ __('Activated') }}"><i class="ph ph-check</i>"></span>
<span class="badge badge-success" title="{{ __('Activated') }}"><i class="ph ph-check"></i></span>
@endif
@if ($account->superAdmin)
<span class="badge badge-error" title="{{ __('Super Admin') }}">Super Adm.</span>
@ -7,5 +7,5 @@
<span class="badge badge-primary" title="{{ __('Admin') }}">Adm.</span>
@endif
@if ($account->blocked)
<span class="badge badge-error" title="{{ __('Blocked') }}"><i class="ph ph-prohibit</i>"></span>
<span class="badge badge-error" title="{{ __('Blocked') }}"><i class="ph ph-prohibit"></i></span>
@endif

View file

@ -39,7 +39,7 @@
<small>{{ __('Activity expiration delay') }}: {{ $api_key->expires_after_last_used_minutes ? $api_key->expires_after_last_used_minutes . ' min' : __('Never')}} | {{ __('Last used') }}: {{ $api_key->last_used_at ?? __('Never') }}</small>
</td>
<td>{{ $api_key->created_at }}
<a class="btn secondary small oppose" href="{{ route('admin.api_keys.delete', $api_key->key) }}"><i class="ph ph-trash</i>"></a>
<a class="btn secondary small oppose" href="{{ route('admin.api_keys.delete', $api_key->key) }}"><i class="ph ph-trash"></i></a>
<small>
<a href="{{ route('admin.account.show', $api_key->account->id) }}">
{{ __('By') }}: {{ $api_key->account->identifier }}

View file

@ -29,7 +29,7 @@
</td>
<td>{{ $space->domain }}
<small>
{{ $space->accounts_count }} / @if ($space->max_accounts > 0){{ $space->max_accounts }} @else <i class="ph ph-infinity</i>@endif"><i class="ph ph-user"></i>
{{ $space->accounts_count }} / @if ($space->max_accounts > 0){{ $space->max_accounts }} @else <i class="ph ph-infinity"></i>@endif<i class="ph ph-user"></i>
</small>
</td>
<td>

View file

@ -21,7 +21,7 @@
<div class="grid third">
<div class="card">
<span class="icon"><i class="ph ph-envelope</i>"></span>
<span class="icon"><i class="ph ph-envelope"></i></span>
<h3>{{ __('Email Server') }}</h3>
<p>
@if ($space->emailServer)

View file

@ -30,7 +30,7 @@
<div class="grid third ">
<div class="card">
<span class="icon"><i class="ph ph-users</i>"></span>
<span class="icon"><i class="ph ph-users"></i></span>
<h3>{{ __('Users') }}</h3>
<p>
{{ $space->accounts()->count() }}
@ -43,7 +43,7 @@
@endif
</div>
<div class="card">
<span class="icon"><i class="ph ph-clock</i>"></span>
<span class="icon"><i class="ph ph-clock"></i></span>
<h3>{{ __('Expiration') }}</h3>
@if ($space->isExpired())
<p>Expired</p>

View file

@ -48,7 +48,7 @@
@endif
<a class="oppose" href="{{ route('about') }}">
<i class="ph ph-info</i>"><span class="on_desktop">{{ __('About') }}</span>
<i class="ph ph-info"></i><span class="on_desktop">{{ __('About') }}</span>
</a>
@if (auth()->user())

View file

@ -3,7 +3,7 @@
<tr>
<th>{{ __('From') }}</th>
<th>{{ __('To') }}</th>
<th><i class="ph ph-clock</i>"></th>
<th><i class="ph ph-clock"></i></th>
</tr>
</thead>
<tbody>

View file

@ -1,7 +1,7 @@
<p class="text-center pt-3">
<i class="ph ph-envelope</i>"><a href="{{ route('account.recovery.show.email') }}">{{ __('Recover your account using your email') }}</a><br />
<i class="ph ph-envelope"></i><a href="{{ route('account.recovery.show.email') }}">{{ __('Recover your account using your email') }}</a><br />
@if (space()->phone_registration)
<i class="ph ph-phone"></i>{{ __('Use the mobile app to recover your account using your phone number') }}<br />
@endif
<i class="ph ph-qr-code</i>"><a href="{{ route('account.authenticate.auth_token') }}">{{ __('Login using a QRCode') }}</a>
<i class="ph ph-qr-code"></i><a href="{{ route('account.authenticate.auth_token') }}">{{ __('Login using a QRCode') }}</a>
</p>

View file

@ -18,7 +18,7 @@
@foreach ($items as $route => $value)
<a @if (str_starts_with(url()->current(), route($route)))class="current"@endif href="{{ route($route) }}">
<i class="ph">{{ $value['icon'] }}</i>
<i class="ph ph-{{ $value['icon'] }}"></i>
{{ $value['title'] }}
</a>
@endforeach

View file

@ -3,9 +3,9 @@
<label for="terms"></label>
<div>
<p>
<i class="ph ph-file-text</i>"><a href="{{ config('app.terms_of_use_url') }}">{{ __('I accept the Terms and Conditions') }}</a>
<i class="ph ph-file-text"></i><a href="{{ config('app.terms_of_use_url') }}">{{ __('I accept the Terms and Conditions') }}</a>
@if (config('app.privacy_policy_url', null) != null)
<br /><i class="ph ph-file-lock</i>"><a href="{{ config('app.privacy_policy_url') }}">{{ __('I accept the Privacy policy') }}</a>
<br /><i class="ph ph-file-lock"></i><a href="{{ config('app.privacy_policy_url') }}">{{ __('I accept the Privacy policy') }}</a>
@endif
</p>
@include('parts.errors', ['name' => 'terms'])