diff --git a/resources/assets/sass/_buttons.scss b/resources/assets/sass/_buttons.scss index c07e6a37a..f9c6d9b9a 100644 --- a/resources/assets/sass/_buttons.scss +++ b/resources/assets/sass/_buttons.scss @@ -3,6 +3,8 @@ background-color: $backgroundColor; color: $textColor; text-transform: uppercase; + border: 1px solid $backgroundColor; + vertical-align: top; &:hover { background-color: lighten($backgroundColor, 8%); //box-shadow: $bs-med; @@ -83,6 +85,14 @@ $button-border-radius: 2px; color: #FFF; } } + &.book { + border-color: $color-book; + color: $color-book; + &:hover, &:focus, &:active { + background-color: $color-book; + color: #FFF; + } + } } .text-button { diff --git a/resources/lang/en/entities.php b/resources/lang/en/entities.php index 5b76559ea..76555fee4 100644 --- a/resources/lang/en/entities.php +++ b/resources/lang/en/entities.php @@ -110,8 +110,7 @@ return [ 'chapters_create' => 'Create New Chapter', 'chapters_delete' => 'Delete Chapter', 'chapters_delete_named' => 'Delete Chapter :chapterName', - 'chapters_delete_explain' => 'This will delete the chapter with the name \':chapterName\', All pages will be removed - and added directly to the parent book.', + 'chapters_delete_explain' => 'This will delete the chapter with the name \':chapterName\'. All pages will be removed and added directly to the parent book.', 'chapters_delete_confirm' => 'Are you sure you want to delete this chapter?', 'chapters_edit' => 'Edit Chapter', 'chapters_edit_named' => 'Edit Chapter :chapterName', diff --git a/resources/views/books/restrictions.blade.php b/resources/views/books/restrictions.blade.php index f87625a67..5c7604c86 100644 --- a/resources/views/books/restrictions.blade.php +++ b/resources/views/books/restrictions.blade.php @@ -9,8 +9,9 @@ @section('body')