mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
ae93a6ed07
- Removed all existing SCSS usage of primary color. - Cut down custom styles injection to just be css vars. - Reduced button styles so default button is primary. - Updated button styles to lighten/brighten on hover & active states even when a custom color is set. - Removed unused scss color vars. - Updated default BookStack blue to achieve better accessibility.
46 lines
1.7 KiB
PHP
46 lines
1.7 KiB
PHP
@extends('simple-layout')
|
|
|
|
@section('body')
|
|
<div class="container small">
|
|
|
|
<div class="py-m">
|
|
@include('settings.navbar', ['selected' => 'roles'])
|
|
</div>
|
|
|
|
<div class="card content-wrap auto-height">
|
|
<h1 class="list-heading"> {{ trans('settings.role_delete') }}</h1>
|
|
|
|
<p>{{ trans('settings.role_delete_confirm', ['roleName' => $role->display_name]) }}</p>
|
|
|
|
<form action="{{ url("/settings/roles/delete/{$role->id}") }}" method="POST">
|
|
{!! csrf_field() !!}
|
|
<input type="hidden" name="_method" value="DELETE">
|
|
|
|
@if($role->users->count() > 0)
|
|
<div class="form-group">
|
|
<p>{{ trans('settings.role_delete_users_assigned', ['userCount' => $role->users->count()]) }}</p>
|
|
@include('form.role-select', ['options' => $roles, 'name' => 'migration_role_id'])
|
|
</div>
|
|
@endif
|
|
|
|
<div class="grid half v-center">
|
|
<div>
|
|
<p class="text-neg">
|
|
<strong>{{ trans('settings.role_delete_sure') }}</strong>
|
|
</p>
|
|
</div>
|
|
<div>
|
|
<div class="form-group text-right">
|
|
<a href="{{ url("/settings/roles/{$role->id}") }}" class="button outline">{{ trans('common.cancel') }}</a>
|
|
<button type="submit" class="button">{{ trans('common.confirm') }}</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</form>
|
|
</div>
|
|
|
|
</div>
|
|
@stop
|