Andrew Wallo 2 个月前
父节点
当前提交
e7a037c6eb

+ 6
- 4
resources/views/filament/company/pages/reports/balance-sheet.blade.php 查看文件

@@ -1,14 +1,16 @@
1 1
 <x-filament-panels::page>
2 2
     <x-filament::section>
3
-        <div class="flex flex-col lg:flex-row items-start lg:items-end justify-between gap-4">
3
+        <div class="flex flex-col lg:flex-row items-start lg:items-end gap-4">
4 4
             <!-- Form Container -->
5 5
             @if(method_exists($this, 'filtersForm'))
6
-                {{ $this->filtersForm }}
6
+                <div class="flex-1 min-w-0">
7
+                    {{ $this->filtersForm }}
8
+                </div>
7 9
             @endif
8 10
 
9 11
             <!-- Grouping Button and Column Toggle -->
10 12
             @if($this->hasToggleableColumns())
11
-                <div class="lg:mb-1">
13
+                <div class="flex-shrink-0 lg:mb-1 mr-4">
12 14
                     <x-filament-tables::column-toggle.dropdown
13 15
                         :form="$this->getTableColumnToggleForm()"
14 16
                         :trigger-action="$this->getToggleColumnsTriggerAction()"
@@ -16,7 +18,7 @@
16 18
                 </div>
17 19
             @endif
18 20
 
19
-            <div class="inline-flex items-center min-w-0 lg:min-w-[9.5rem] justify-end">
21
+            <div class="flex-shrink-0 w-[9.5rem] flex justify-end">
20 22
                 {{ $this->applyFiltersAction }}
21 23
             </div>
22 24
         </div>

+ 11
- 7
resources/views/filament/company/pages/reports/cash-flow-statement.blade.php 查看文件

@@ -1,20 +1,24 @@
1 1
 <x-filament-panels::page>
2 2
     <x-filament::section>
3
-        <div class="flex flex-col md:flex-row items-start md:items-center justify-between gap-4">
3
+        <div class="flex flex-col md:flex-row items-start md:items-center gap-4">
4 4
             <!-- Form Container -->
5 5
             @if(method_exists($this, 'filtersForm'))
6
-                {{ $this->filtersForm }}
6
+                <div class="flex-1 min-w-0">
7
+                    {{ $this->filtersForm }}
8
+                </div>
7 9
             @endif
8 10
 
9 11
             <!-- Grouping Button and Column Toggle -->
10 12
             @if($this->hasToggleableColumns())
11
-                <x-filament-tables::column-toggle.dropdown
12
-                    :form="$this->getTableColumnToggleForm()"
13
-                    :trigger-action="$this->getToggleColumnsTriggerAction()"
14
-                />
13
+                <div class="flex-shrink-0 mr-4">
14
+                    <x-filament-tables::column-toggle.dropdown
15
+                        :form="$this->getTableColumnToggleForm()"
16
+                        :trigger-action="$this->getToggleColumnsTriggerAction()"
17
+                    />
18
+                </div>
15 19
             @endif
16 20
 
17
-            <div class="inline-flex items-center min-w-0 md:min-w-[9.5rem] justify-end">
21
+            <div class="flex-shrink-0 w-[9.5rem] flex justify-end">
18 22
                 {{ $this->applyFiltersAction }}
19 23
             </div>
20 24
         </div>

+ 11
- 7
resources/views/filament/company/pages/reports/detailed-report.blade.php 查看文件

@@ -1,20 +1,24 @@
1 1
 <x-filament-panels::page>
2 2
     <x-filament::section>
3
-        <div class="flex flex-col md:flex-row items-start md:items-center justify-between gap-4">
3
+        <div class="flex flex-col md:flex-row items-start md:items-center gap-4">
4 4
             <!-- Form Container -->
5 5
             @if(method_exists($this, 'filtersForm'))
6
-                {{ $this->filtersForm }}
6
+                <div class="flex-1 min-w-0">
7
+                    {{ $this->filtersForm }}
8
+                </div>
7 9
             @endif
8 10
 
9 11
             <!-- Grouping Button and Column Toggle -->
10 12
             @if($this->hasToggleableColumns())
11
-                <x-filament-tables::column-toggle.dropdown
12
-                    :form="$this->getTableColumnToggleForm()"
13
-                    :trigger-action="$this->getToggleColumnsTriggerAction()"
14
-                />
13
+                <div class="flex-shrink-0 mr-4">
14
+                    <x-filament-tables::column-toggle.dropdown
15
+                        :form="$this->getTableColumnToggleForm()"
16
+                        :trigger-action="$this->getToggleColumnsTriggerAction()"
17
+                    />
18
+                </div>
15 19
             @endif
16 20
 
17
-            <div class="inline-flex items-center min-w-0 md:min-w-[9.5rem] justify-end">
21
+            <div class="flex-shrink-0 w-[9.5rem] flex justify-end">
18 22
                 {{ $this->applyFiltersAction }}
19 23
             </div>
20 24
         </div>

+ 11
- 7
resources/views/filament/company/pages/reports/income-statement.blade.php 查看文件

@@ -1,20 +1,24 @@
1 1
 <x-filament-panels::page>
2 2
     <x-filament::section>
3
-        <div class="flex flex-col md:flex-row items-start md:items-center justify-between gap-4">
3
+        <div class="flex flex-col md:flex-row items-start md:items-center gap-4">
4 4
             <!-- Form Container -->
5 5
             @if(method_exists($this, 'filtersForm'))
6
-                {{ $this->filtersForm }}
6
+                <div class="flex-1 min-w-0">
7
+                    {{ $this->filtersForm }}
8
+                </div>
7 9
             @endif
8 10
 
9 11
             <!-- Grouping Button and Column Toggle -->
10 12
             @if($this->hasToggleableColumns())
11
-                <x-filament-tables::column-toggle.dropdown
12
-                    :form="$this->getTableColumnToggleForm()"
13
-                    :trigger-action="$this->getToggleColumnsTriggerAction()"
14
-                />
13
+                <div class="flex-shrink-0 mr-4">
14
+                    <x-filament-tables::column-toggle.dropdown
15
+                        :form="$this->getTableColumnToggleForm()"
16
+                        :trigger-action="$this->getToggleColumnsTriggerAction()"
17
+                    />
18
+                </div>
15 19
             @endif
16 20
 
17
-            <div class="inline-flex items-center min-w-0 md:min-w-[9.5rem] justify-end">
21
+            <div class="flex-shrink-0 w-[9.5rem] flex justify-end">
18 22
                 {{ $this->applyFiltersAction }}
19 23
             </div>
20 24
         </div>

+ 6
- 4
resources/views/filament/company/pages/reports/trial-balance.blade.php 查看文件

@@ -1,14 +1,16 @@
1 1
 <x-filament-panels::page>
2 2
     <x-filament::section>
3
-        <div class="flex flex-col lg:flex-row items-start lg:items-end justify-between gap-4">
3
+        <div class="flex flex-col lg:flex-row items-start lg:items-end gap-4">
4 4
             <!-- Form Container -->
5 5
             @if(method_exists($this, 'filtersForm'))
6
-                {{ $this->filtersForm }}
6
+                <div class="flex-1 min-w-0">
7
+                    {{ $this->filtersForm }}
8
+                </div>
7 9
             @endif
8 10
 
9 11
             <!-- Grouping Button and Column Toggle -->
10 12
             @if($this->hasToggleableColumns())
11
-                <div class="lg:mb-1">
13
+                <div class="flex-shrink-0 lg:mb-1 mr-4">
12 14
                     <x-filament-tables::column-toggle.dropdown
13 15
                         :form="$this->getTableColumnToggleForm()"
14 16
                         :trigger-action="$this->getToggleColumnsTriggerAction()"
@@ -16,7 +18,7 @@
16 18
                 </div>
17 19
             @endif
18 20
 
19
-            <div class="inline-flex items-center min-w-0 lg:min-w-[9.5rem] justify-end">
21
+            <div class="flex-shrink-0 w-[9.5rem] flex justify-end">
20 22
                 {{ $this->applyFiltersAction }}
21 23
             </div>
22 24
         </div>

正在加载...
取消
保存