From: Nilesh Deepak Date: Thu, 13 Jul 2017 09:50:53 +0000 (+0530) Subject: Removed avatar class from form.blade.php X-Git-Tag: v0.19.0~1^2~15^2~27^2 X-Git-Url: http://source.bookstackapp.com/bookstack/commitdiff_plain/7f8351e044879749fad083e028a2f93ae89ad3ef?ds=inline Removed avatar class from form.blade.php --- diff --git a/resources/assets/sass/styles.scss b/resources/assets/sass/styles.scss index 6eb24b8c1..e95e571b5 100644 --- a/resources/assets/sass/styles.scss +++ b/resources/assets/sass/styles.scss @@ -63,11 +63,6 @@ body.dragging, body.dragging * { &.square { border-radius: 3px; } - &.cover { - height: 192px; - width: 120px; - border-radius: 3px; - } } // System wide notifications @@ -306,4 +301,10 @@ $btt-size: 40px; img { border-radius: 3px; } -} \ No newline at end of file +} + +.cover { + height: 192px; + width: 120px; + border-radius: 3px; + } \ No newline at end of file diff --git a/resources/views/books/form.blade.php b/resources/views/books/form.blade.php index 34f5fd842..e26edac4b 100644 --- a/resources/views/books/form.blade.php +++ b/resources/views/books/form.blade.php @@ -21,7 +21,7 @@ 'currentImage' => @isset($model) ? $model->getBookCover(80) : baseUrl('/default.png') , 'currentId' => @isset($model) ? $model->image : 0, 'name' => 'image', - 'imageClass' => 'avatar cover' + 'imageClass' => 'cover' ])