]> BookStack Code Mirror - bookstack/blobdiff - resources/views/form/entity-permissions-row.blade.php
Lexical: Updated tests for node changes
[bookstack] / resources / views / form / entity-permissions-row.blade.php
index d4c6c4ac12216c4df9c7cb596e50042a7e105dfa..a47027d795e42d592529979d495f674245f5f310 100644 (file)
@@ -16,7 +16,7 @@ $inheriting - Boolean if the current row should be marked as inheriting default
         </span>
         @if($role->id !== 0)
             <button type="button"
-                class="ml-auto flex-none text-small text-primary text-button hover-underline item-list-row-toggle-all hide-under-s"
+                class="ml-auto flex-none text-small text-link text-button hover-underline item-list-row-toggle-all hide-under-s"
                 refs="permissions-table@toggle-all"
                 ><strong>{{ trans('common.toggle_all') }}</strong></button>
         @endif
@@ -25,7 +25,7 @@ $inheriting - Boolean if the current row should be marked as inheriting default
         <div class="px-l flex-container-row items-center" refs="entity-permissions@everyone-inherit">
             @include('form.custom-checkbox', [
                 'name' => 'entity-permissions-inherit',
-                'label' => 'Inherit defaults',
+                'label' => trans('entities.permissions_inherit_defaults'),
                 'value' => 'true',
                 'checked' => $inheriting
             ])
@@ -48,7 +48,7 @@ $inheriting - Boolean if the current row should be marked as inheriting default
             <div class="px-l">
                 @include('form.custom-checkbox', [
                     'name' =>  'permissions[' . $role->id . '][create]',
-                    'label' => trans('common.create'),
+                    'label' => trans('common.create') . ($entityType === 'bookshelf' ? ' *'  : ''),
                     'value' => 'true',
                     'checked' => $permission->create,
                     'disabled' => $inheriting