diff --git a/public/css/app.css b/public/css/app.css index b1338d29e..1d98bee48 100644 --- a/public/css/app.css +++ b/public/css/app.css @@ -53470,6 +53470,27 @@ table thead a:hover{ visibility: visible; opacity: 1; } +.notifications-menu ul li a { + border-bottom: 1px solid; + } +.avatar-attachment{ + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity)); + background-color: #adb5bd; + border-radius: .375rem; + font-size: 1rem; + height: 45px; + width: 45px; +} /* index */ diff --git a/resources/assets/js/components/AkauntingDropzoneFileUpload.vue b/resources/assets/js/components/AkauntingDropzoneFileUpload.vue index 27128d909..3c7d6b76f 100644 --- a/resources/assets/js/components/AkauntingDropzoneFileUpload.vue +++ b/resources/assets/js/components/AkauntingDropzoneFileUpload.vue @@ -20,7 +20,7 @@
@@ -45,12 +45,12 @@ -
+
diff --git a/resources/assets/sass/app.css b/resources/assets/sass/app.css index 5951c3f43..e4afcb3c3 100644 --- a/resources/assets/sass/app.css +++ b/resources/assets/sass/app.css @@ -46,6 +46,19 @@ .tabs-link:hover::before { @apply opacity-100 visible; } + + .notifications-menu ul li a { + border-bottom: 1px solid; + } + + .avatar-attachment { + @apply text-white inline-flex items-center justify-center; + background-color: #adb5bd; + border-radius: .375rem; + font-size: 1rem; + height: 45px; + width: 45px; + } /* index */ } diff --git a/resources/views/components/media/file.blade.php b/resources/views/components/media/file.blade.php index a6d9ddbde..1b66e36c9 100644 --- a/resources/views/components/media/file.blade.php +++ b/resources/views/components/media/file.blade.php @@ -1,37 +1,43 @@ -
-
- @if ($file->aggregate_type == 'image') - image - @else - attach_file - @endif - -
- - {{ $file->basename }} - - - - {{ $file->readableSize() }} - -
-
- -
- @can('delete-common-uploads') - - delete - - - @if ($options) - - - +
+
+
+ @if ($file->aggregate_type == 'image') +
+ {{ $file->basename }} +
+ @else +
+ attach_file +
@endif - @endcan - - download - +
+ + {{ $file->basename }} + + + + {{ $file->readableSize() }} + +
+
+ +
+ @can('delete-common-uploads') + + delete + + + @if ($options) + + + + @endif + @endcan + + + download + +