Laravel-Backpack / theme-tabler

UI for Backpack v6 that uses Tabler and Bootstrap v5.
MIT License
26 stars 14 forks source link

[Bug] Wrong first column height #127

Closed EmanueleCoppola closed 1 year ago

EmanueleCoppola commented 1 year ago

Bug report

What I did

Just upgraded from the 5.x to 6.x and carefully switched to the Tabler theme.

What I expected to happen

The table columns should be working as before.

What happened

The leftmost column should have the same height of the other columns.

The HTML of my columns is:

// column 1
<div>
    <span class="ms-0 fw-bold fs-3" title="Printer #1">Printer #1</span>
    <div>23%</div>
</div>
// column 2
<div>
    <div class="ms-0 fw-bold fs-3" title="Milano">Milano</div>
    <span class="badge bg-azure m-0 mb-1 text-uppercase">etichette totali: 0</span>
</div>
// column 3
<div>
    <div>
        <span class="badge bg-orange m-0 mb-1 text-uppercase">assegnato: 0</span>
    </div>
    <div>
        <span class="badge bg-yellow m-0 mb-1 text-uppercase">in stampa: 0</span>
    </div>
    <div>
        <span class="badge bg-green m-0 mb-1 text-uppercase">stampato: 0</span>
    </div>
</div>

image

What I've already tried to fix it

Removing the display: flex from the first td. I know this is not a definitive solution since it might break something else.

Context to replicate the bug - Backpack, Laravel, PHP, DB version

When I run php artisan backpack:version the output is:

backpack/basset: 1.1.1
backpack/crud: 6.1.5
backpack/generators: v4.0.2
backpack/pro: 2.0.10
backpack/theme-tabler: 1.0.8 (carefully cleaned the basset cache)
EmanueleCoppola commented 1 year ago

Oopsie, I noticed that it belongs to the CRUD repository. I'm opening it there.