1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-08-10 21:23:07 +03:00

Rolled out use of seperate link color style

This commit is contained in:
Dan Brown
2023-01-28 16:06:11 +00:00
parent 65ebdb7234
commit c337439370
41 changed files with 71 additions and 64 deletions

View File

@@ -11,7 +11,7 @@
@section('right')
<div class="actions mb-xl">
<h5>{{ trans('common.actions') }}</h5>
<div class="icon-list text-primary">
<div class="icon-list text-link">
@if(user()->can('book-create-all'))
<a href="{{ url("/create-book") }}" class="icon-list-item">
<span>@icon('add')</span>
@@ -19,8 +19,8 @@
</a>
@endif
@include('entities.view-toggle', ['view' => $view, 'type' => 'books'])
@include('home.parts.expand-toggle', ['classes' => 'text-primary', 'target' => '.entity-list.compact .entity-item-snippet', 'key' => 'home-details'])
@include('common.dark-mode-toggle', ['classes' => 'icon-list-item text-primary'])
@include('home.parts.expand-toggle', ['classes' => 'text-link', 'target' => '.entity-list.compact .entity-item-snippet', 'key' => 'home-details'])
@include('common.dark-mode-toggle', ['classes' => 'icon-list-item text-link'])
</div>
</div>
@stop