adminforth 2.4.0-next.203 → 2.4.0-next.205
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
<div class="h-2 bg-lightListSkeletLoader rounded-full dark:bg-darkListSkeletLoader max-w-[360px]"></div>
|
|
15
15
|
</div>
|
|
16
16
|
</div>
|
|
17
|
-
<table v-else class=" w-full text-sm text-left rtl:text-right text-lightListTableText dark:text-darkListTableText rounded-default">
|
|
17
|
+
<table v-else class="h-full w-full text-sm text-left rtl:text-right text-lightListTableText dark:text-darkListTableText rounded-default">
|
|
18
18
|
|
|
19
19
|
<tbody>
|
|
20
20
|
<!-- table header -->
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
:column-widths="columnWidths"
|
|
75
75
|
/>
|
|
76
76
|
|
|
77
|
-
<tr v-else-if="rows.length === 0" class="bg-lightListTable dark:bg-darkListTable dark:border-darkListTableBorder">
|
|
77
|
+
<tr v-else-if="rows.length === 0" class="h-full bg-lightListTable dark:bg-darkListTable dark:border-darkListTableBorder">
|
|
78
78
|
<td :colspan="resource?.columns.length + 2">
|
|
79
79
|
|
|
80
80
|
<div id="toast-simple"
|
|
@@ -193,11 +193,11 @@
|
|
|
193
193
|
overflow: hidden; /* Prevent content from showing during animation */
|
|
194
194
|
will-change: width, transform;
|
|
195
195
|
/* Right-side only shadow */
|
|
196
|
-
box-shadow: 12px 0px
|
|
196
|
+
box-shadow: 12px 0px 18px -8px rgba(0, 0, 0, 0.15);
|
|
197
197
|
}
|
|
198
198
|
:deep(.dark) .sidebar-container {
|
|
199
199
|
/* Slightly stronger in dark mode */
|
|
200
|
-
box-shadow: 12px 0px
|
|
200
|
+
box-shadow: 12px 0px 18px -8px rgba(0, 0, 0, 0.45);
|
|
201
201
|
}
|
|
202
202
|
|
|
203
203
|
.sidebar-collapsed {
|