beercss / beercss

Build material design interfaces in record time... without stress for devs... πŸΊπŸ’›
https://www.beercss.com
MIT License
940 stars 47 forks source link

Release v3.4.8 #248

Closed leonardorafael closed 5 months ago

leonardorafael commented 5 months ago

CHANGELOG 3.4.8

Size

πŸš€ Added

🩹 Fixed

// Added stripes helper for table element
// Added min helper for th and td elements

<table class="stripes">
  <thead>
    <tr>
      <th class="min">Header</th>
      <th>Header</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td class="min">Cell</td>
      <td>Cell</td>
    </tr>
    <tr>
      <td class="min">Cell</td>
      <td>Cell</td>
    </tr>
    <tr>
      <td class="min">Cell</td>
      <td>Cell</td>
    </tr>
  </tbody>
  <tfoot>
    <tr>
      <th class="min">Footer</th>
      <th>Footer</th>
    </tr>
  </tfoot>
</table>
// Added scrollable table using fixed helper for thead and tfoot elements

<div class="small-height scroll">
  <table>
    <thead class="fixed">
      <tr>
        <th>Header</th>
        <th>Header</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>Cell</td>
        <td>Cell</td>
      </tr>
      <tr>
        <td>Cell</td>
        <td>Cell</td>
      </tr>
      <tr>
        <td>Cell</td>
        <td>Cell</td>
      </tr>
      <tr>
        <td>Cell</td>
        <td>Cell</td>
      </tr>
      <tr>
        <td>Cell</td>
        <td>Cell</td>
      </tr>
      <tr>
        <td>Cell</td>
        <td>Cell</td>
      </tr>
    </tbody>
    <tfoot class="fixed">
      <tr>
        <th>Footer</th>
        <th>Footer</th>
      </tr>
    </tfoot>
  </table>
</div>