Andrew Wallo 2 kuukautta sitten
vanhempi
commit
e7a037c6eb

+ 6
- 4
resources/views/filament/company/pages/reports/balance-sheet.blade.php Näytä tiedosto

1
 <x-filament-panels::page>
1
 <x-filament-panels::page>
2
     <x-filament::section>
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
             <!-- Form Container -->
4
             <!-- Form Container -->
5
             @if(method_exists($this, 'filtersForm'))
5
             @if(method_exists($this, 'filtersForm'))
6
-                {{ $this->filtersForm }}
6
+                <div class="flex-1 min-w-0">
7
+                    {{ $this->filtersForm }}
8
+                </div>
7
             @endif
9
             @endif
8
 
10
 
9
             <!-- Grouping Button and Column Toggle -->
11
             <!-- Grouping Button and Column Toggle -->
10
             @if($this->hasToggleableColumns())
12
             @if($this->hasToggleableColumns())
11
-                <div class="lg:mb-1">
13
+                <div class="flex-shrink-0 lg:mb-1 mr-4">
12
                     <x-filament-tables::column-toggle.dropdown
14
                     <x-filament-tables::column-toggle.dropdown
13
                         :form="$this->getTableColumnToggleForm()"
15
                         :form="$this->getTableColumnToggleForm()"
14
                         :trigger-action="$this->getToggleColumnsTriggerAction()"
16
                         :trigger-action="$this->getToggleColumnsTriggerAction()"
16
                 </div>
18
                 </div>
17
             @endif
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
                 {{ $this->applyFiltersAction }}
22
                 {{ $this->applyFiltersAction }}
21
             </div>
23
             </div>
22
         </div>
24
         </div>

+ 11
- 7
resources/views/filament/company/pages/reports/cash-flow-statement.blade.php Näytä tiedosto

1
 <x-filament-panels::page>
1
 <x-filament-panels::page>
2
     <x-filament::section>
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
             <!-- Form Container -->
4
             <!-- Form Container -->
5
             @if(method_exists($this, 'filtersForm'))
5
             @if(method_exists($this, 'filtersForm'))
6
-                {{ $this->filtersForm }}
6
+                <div class="flex-1 min-w-0">
7
+                    {{ $this->filtersForm }}
8
+                </div>
7
             @endif
9
             @endif
8
 
10
 
9
             <!-- Grouping Button and Column Toggle -->
11
             <!-- Grouping Button and Column Toggle -->
10
             @if($this->hasToggleableColumns())
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
             @endif
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
                 {{ $this->applyFiltersAction }}
22
                 {{ $this->applyFiltersAction }}
19
             </div>
23
             </div>
20
         </div>
24
         </div>

+ 11
- 7
resources/views/filament/company/pages/reports/detailed-report.blade.php Näytä tiedosto

1
 <x-filament-panels::page>
1
 <x-filament-panels::page>
2
     <x-filament::section>
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
             <!-- Form Container -->
4
             <!-- Form Container -->
5
             @if(method_exists($this, 'filtersForm'))
5
             @if(method_exists($this, 'filtersForm'))
6
-                {{ $this->filtersForm }}
6
+                <div class="flex-1 min-w-0">
7
+                    {{ $this->filtersForm }}
8
+                </div>
7
             @endif
9
             @endif
8
 
10
 
9
             <!-- Grouping Button and Column Toggle -->
11
             <!-- Grouping Button and Column Toggle -->
10
             @if($this->hasToggleableColumns())
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
             @endif
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
                 {{ $this->applyFiltersAction }}
22
                 {{ $this->applyFiltersAction }}
19
             </div>
23
             </div>
20
         </div>
24
         </div>

+ 11
- 7
resources/views/filament/company/pages/reports/income-statement.blade.php Näytä tiedosto

1
 <x-filament-panels::page>
1
 <x-filament-panels::page>
2
     <x-filament::section>
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
             <!-- Form Container -->
4
             <!-- Form Container -->
5
             @if(method_exists($this, 'filtersForm'))
5
             @if(method_exists($this, 'filtersForm'))
6
-                {{ $this->filtersForm }}
6
+                <div class="flex-1 min-w-0">
7
+                    {{ $this->filtersForm }}
8
+                </div>
7
             @endif
9
             @endif
8
 
10
 
9
             <!-- Grouping Button and Column Toggle -->
11
             <!-- Grouping Button and Column Toggle -->
10
             @if($this->hasToggleableColumns())
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
             @endif
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
                 {{ $this->applyFiltersAction }}
22
                 {{ $this->applyFiltersAction }}
19
             </div>
23
             </div>
20
         </div>
24
         </div>

+ 6
- 4
resources/views/filament/company/pages/reports/trial-balance.blade.php Näytä tiedosto

1
 <x-filament-panels::page>
1
 <x-filament-panels::page>
2
     <x-filament::section>
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
             <!-- Form Container -->
4
             <!-- Form Container -->
5
             @if(method_exists($this, 'filtersForm'))
5
             @if(method_exists($this, 'filtersForm'))
6
-                {{ $this->filtersForm }}
6
+                <div class="flex-1 min-w-0">
7
+                    {{ $this->filtersForm }}
8
+                </div>
7
             @endif
9
             @endif
8
 
10
 
9
             <!-- Grouping Button and Column Toggle -->
11
             <!-- Grouping Button and Column Toggle -->
10
             @if($this->hasToggleableColumns())
12
             @if($this->hasToggleableColumns())
11
-                <div class="lg:mb-1">
13
+                <div class="flex-shrink-0 lg:mb-1 mr-4">
12
                     <x-filament-tables::column-toggle.dropdown
14
                     <x-filament-tables::column-toggle.dropdown
13
                         :form="$this->getTableColumnToggleForm()"
15
                         :form="$this->getTableColumnToggleForm()"
14
                         :trigger-action="$this->getToggleColumnsTriggerAction()"
16
                         :trigger-action="$this->getToggleColumnsTriggerAction()"
16
                 </div>
18
                 </div>
17
             @endif
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
                 {{ $this->applyFiltersAction }}
22
                 {{ $this->applyFiltersAction }}
21
             </div>
23
             </div>
22
         </div>
24
         </div>

Loading…
Peruuta
Tallenna