diff --git a/public/css/app.css b/public/css/app.css index 7382abd97..25b5300d6 100644 --- a/public/css/app.css +++ b/public/css/app.css @@ -1451,10 +1451,16 @@ html[dir='rtl'] .index-actions:nth-child(3){ } table thead a{ - border-bottom-width: 1px; - border-color: transparent; - -webkit-transition-property: all; - transition-property: all; + background-image: -webkit-gradient(linear, left top, left bottom, from(var(--tw-gradient-stops))); + background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(0 0 0 / 0)); + --tw-gradient-to: #424242; + background-size: 0 2px; + background-position: 0 100%; + background-repeat: no-repeat; + -webkit-transition-property: background-size; + transition-property: background-size; -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); -webkit-transition-duration: 150ms; @@ -1462,6 +1468,7 @@ table thead a{ } table thead a:hover{ + background-size: 100% 2px; --tw-border-opacity: 1; border-color: rgb(66 66 66 / var(--tw-border-opacity)); } @@ -47436,26 +47443,6 @@ body{ border-color: rgb(66 66 66 / var(--tw-border-opacity)); } -.hover\:border-white:hover{ - --tw-border-opacity: 1; - border-color: rgb(255 255 255 / var(--tw-border-opacity)); -} - -.hover\:border-purple:hover{ - --tw-border-opacity: 1; - border-color: rgb(85 88 139 / var(--tw-border-opacity)); -} - -.hover\:border-black-400:hover{ - --tw-border-opacity: 1; - border-color: rgb(123 123 123 / var(--tw-border-opacity)); -} - -.hover\:border-green-700:hover{ - --tw-border-opacity: 1; - border-color: rgb(83 121 62 / var(--tw-border-opacity)); -} - .hover\:bg-gray-100:hover{ --tw-bg-opacity: 1; background-color: rgb(243 244 246 / var(--tw-bg-opacity)); @@ -47560,11 +47547,6 @@ body{ color: rgb(66 66 66 / var(--tw-text-opacity)); } -.hover\:text-purple:hover{ - --tw-text-opacity: 1; - color: rgb(85 88 139 / var(--tw-text-opacity)); -} - .hover\:text-gray-500:hover{ --tw-text-opacity: 1; color: rgb(107 114 128 / var(--tw-text-opacity)); @@ -47575,16 +47557,16 @@ body{ color: rgb(156 163 175 / var(--tw-text-opacity)); } +.hover\:text-purple:hover{ + --tw-text-opacity: 1; + color: rgb(85 88 139 / var(--tw-text-opacity)); +} + .hover\:text-gray-700:hover{ --tw-text-opacity: 1; color: rgb(55 65 81 / var(--tw-text-opacity)); } -.hover\:text-green-700:hover{ - --tw-text-opacity: 1; - color: rgb(83 121 62 / var(--tw-text-opacity)); -} - .hover\:underline:hover{ -webkit-text-decoration-line: underline; text-decoration-line: underline; @@ -47695,16 +47677,6 @@ body{ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } -.group:hover .group-hover\:border-black-400{ - --tw-border-opacity: 1; - border-color: rgb(123 123 123 / var(--tw-border-opacity)); -} - -.group:hover .group-hover\:border-black{ - --tw-border-opacity: 1; - border-color: rgb(66 66 66 / var(--tw-border-opacity)); -} - .group:hover .group-hover\:bg-gray-900{ --tw-bg-opacity: 1; background-color: rgb(17 24 39 / var(--tw-bg-opacity)); diff --git a/resources/assets/js/views/wizard/Currencies.vue b/resources/assets/js/views/wizard/Currencies.vue index 96d66966e..6c909b892 100644 --- a/resources/assets/js/views/wizard/Currencies.vue +++ b/resources/assets/js/views/wizard/Currencies.vue @@ -121,7 +121,7 @@
diff --git a/resources/assets/sass/app.css b/resources/assets/sass/app.css index 610fd9e42..10404cf74 100644 --- a/resources/assets/sass/app.css +++ b/resources/assets/sass/app.css @@ -93,7 +93,7 @@ } table thead a { - @apply border-b border-transparent transition-all; + @apply bg-no-repeat bg-0-2 bg-0-full hover:bg-full-2 bg-gradient-to-b from-transparent to-black transition-backgroundSize; } table thead a:hover { diff --git a/resources/views/common/dashboards/show.blade.php b/resources/views/common/dashboards/show.blade.php index b80f6b9d7..6a80ec40c 100644 --- a/resources/views/common/dashboards/show.blade.php +++ b/resources/views/common/dashboards/show.blade.php @@ -8,8 +8,8 @@
- - {{ $dashboard->name }} + +

- - {{ $report->name }} - +

{{ $report->description }} diff --git a/resources/views/components/documents/show/get-paid.blade.php b/resources/views/components/documents/show/get-paid.blade.php index 4f8491287..09969157e 100644 --- a/resources/views/components/documents/show/get-paid.blade.php +++ b/resources/views/components/documents/show/get-paid.blade.php @@ -35,9 +35,7 @@ override="class" class="py-1.5 mb-3 sm:mb-0 text-xs bg-transparent hover:bg-transparent font-medium leading-6" > - - {{ trans('documents.accept_payment_online') }} - + @endif
diff --git a/resources/views/components/index/bulkaction/index.blade.php b/resources/views/components/index/bulkaction/index.blade.php index 9ea8f8261..0bb06b13f 100644 --- a/resources/views/components/index/bulkaction/index.blade.php +++ b/resources/views/components/index/bulkaction/index.blade.php @@ -56,8 +56,8 @@
-
diff --git a/resources/views/components/layouts/admin/menu.blade.php b/resources/views/components/layouts/admin/menu.blade.php index 1efa0dbc8..88fe2db00 100644 --- a/resources/views/components/layouts/admin/menu.blade.php +++ b/resources/views/components/layouts/admin/menu.blade.php @@ -113,9 +113,7 @@
- - {{ Str::limit(setting('company.name'), 22) }} - + @can('read-common-companies') diff --git a/resources/views/components/layouts/modules/bar.blade.php b/resources/views/components/layouts/modules/bar.blade.php index 1925f4d00..1431d0b81 100644 --- a/resources/views/components/layouts/modules/bar.blade.php +++ b/resources/views/components/layouts/modules/bar.blade.php @@ -14,9 +14,7 @@
@foreach ($categories as $slug => $category) - - {{ $category }} - + @endforeach
@@ -80,27 +78,19 @@
- - {{ trans('modules.home') }} - + - - {{ trans('modules.new') }} - + - - {{ trans('modules.top_paid') }} - + - - {{ trans('modules.top_free') }} - +
diff --git a/resources/views/components/layouts/portal/menu.blade.php b/resources/views/components/layouts/portal/menu.blade.php index db8201d5d..f414f8721 100644 --- a/resources/views/components/layouts/portal/menu.blade.php +++ b/resources/views/components/layouts/portal/menu.blade.php @@ -84,9 +84,7 @@
- - {{ Str::limit(setting('company.name'), 22) }} - + @can('read-common-companies') diff --git a/resources/views/components/modules/items.blade.php b/resources/views/components/modules/items.blade.php index 47b82f5bb..7111f83ae 100644 --- a/resources/views/components/modules/items.blade.php +++ b/resources/views/components/modules/items.blade.php @@ -11,9 +11,7 @@ @if ($attributes->has('route'))
- - {{ trans('modules.see_all_type', ['type' => $attributes->get('title')]) }} - + arrow_forward diff --git a/resources/views/components/show/accordion/head.blade.php b/resources/views/components/show/accordion/head.blade.php index f9bbd9957..f57f07da2 100644 --- a/resources/views/components/show/accordion/head.blade.php +++ b/resources/views/components/show/accordion/head.blade.php @@ -1,8 +1,6 @@

- - {{ $title }} - +

@if (! empty($description)) diff --git a/resources/views/components/show/no-records.blade.php b/resources/views/components/show/no-records.blade.php index 2e28ac52b..db45d95c3 100644 --- a/resources/views/components/show/no-records.blade.php +++ b/resources/views/components/show/no-records.blade.php @@ -22,8 +22,8 @@ @if (! empty($button) && $button->isNotEmpty()) {!! $button !!} @else - - {{ $textAction }} + + @endif
diff --git a/resources/views/components/tips/fixed.blade.php b/resources/views/components/tips/fixed.blade.php index 657d89b58..4f1ca39b9 100644 --- a/resources/views/components/tips/fixed.blade.php +++ b/resources/views/components/tips/fixed.blade.php @@ -14,8 +14,8 @@ {!! $item->description !!}

- - {{ $item->learn_more }} + +
diff --git a/resources/views/components/tips/relative.blade.php b/resources/views/components/tips/relative.blade.php index f1b1bde6f..f976a3f8b 100644 --- a/resources/views/components/tips/relative.blade.php +++ b/resources/views/components/tips/relative.blade.php @@ -14,8 +14,8 @@ {!! $item->description !!}

- - {{ $item->learn_more }} + +
diff --git a/resources/views/components/transactions/show/attachment.blade.php b/resources/views/components/transactions/show/attachment.blade.php index 3e2e88a94..cc2f470a9 100644 --- a/resources/views/components/transactions/show/attachment.blade.php +++ b/resources/views/components/transactions/show/attachment.blade.php @@ -5,8 +5,8 @@
- - {{ trans_choice('general.attachments', 2) }} + +
diff --git a/resources/views/components/transactions/show/children.blade.php b/resources/views/components/transactions/show/children.blade.php index 77741c3c4..c4e981a5f 100644 --- a/resources/views/components/transactions/show/children.blade.php +++ b/resources/views/components/transactions/show/children.blade.php @@ -2,8 +2,8 @@