contributte / datagrid

:muscle: DataGrid for Nette Framework: filtering, sorting, pagination, tree view, table view, translator, etc
https://contributte.org/packages/contributte/datagrid/
MIT License
285 stars 189 forks source link

Fix for wrong display of toolbar & export buttons #1102

Closed elring closed 8 months ago

elring commented 8 months ago

See issue #1101

Summary

After commit 55fd8b4 the toolbar looks wrong:

image

  1. The buttons are without any space between - this is because of wrong CSS selector in datagrid.css - extra div is now needed - fixed by modifying CSS selector
  2. The export buttons are on new line - this is because of the new snippet div (the export toolbar is outside of it) - fixed by CSS property display of new div set to inline-block

After these changes, toolbar looks better:

image

paveljanda commented 8 months ago

Thanks