From 11b8929b8bb4d374512375a24667b44e1bef6ebd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Duli=C3=A7i?= Date: Thu, 4 Jun 2020 19:57:15 +0300 Subject: [PATCH] missing avatar styling --- public/css/custom.css | 7 +++++++ resources/views/auth/users/index.blade.php | 8 ++++---- resources/views/partials/admin/navbar.blade.php | 6 +++++- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/public/css/custom.css b/public/css/custom.css index a5350ff4f..8491b2c9d 100644 --- a/public/css/custom.css +++ b/public/css/custom.css @@ -275,6 +275,13 @@ tbody .row { } /*--------Item Column Image Finish--------*/ +/*--------User Column Image--------*/ +.user-img { + width: 36px; + height: 36px; +} +/*--------User Column Image Finish--------*/ + /*--------Border--------*/ .border-1 { border: 1px solid #e5e5e5 !important; diff --git a/resources/views/auth/users/index.blade.php b/resources/views/auth/users/index.blade.php index 7267a4c65..615afd749 100644 --- a/resources/views/auth/users/index.blade.php +++ b/resources/views/auth/users/index.blade.php @@ -54,11 +54,11 @@ @if (setting('default.use_gravatar', '0') == '1') - {{ $item->name }} + {{ $item->name }} + @elseif ($item->picture) + {{ $item->name }} @else - @if ($item->picture) - {{ $item->name }} - @endif + {{ $item->name }} @endif {{ $item->name }} diff --git a/resources/views/partials/admin/navbar.blade.php b/resources/views/partials/admin/navbar.blade.php index 7ff7e5e7b..81f3cffba 100644 --- a/resources/views/partials/admin/navbar.blade.php +++ b/resources/views/partials/admin/navbar.blade.php @@ -211,7 +211,11 @@