datasette / datasette-write-ui

A Datasette plugin that adds UI elements to edit, insert, or delete rows in SQLite tables
Apache License 2.0
15 stars 2 forks source link

Suggestion: move row edit icons to the left #12

Closed simonw closed 11 months ago

simonw commented 11 months ago

They currently look like this:

CleanShot 2023-08-09 at 12 47 53@2x

They are jagged because different IDs have different lengths.

Here's what they look like on the left instead:

image
simonw commented 11 months ago

I prototyped that by adding this to the .row-icon CSS:

padding-right: 0.25rem;
position: relative;
top: -0.1rem;

Then running this JavaScript in the console:

document.querySelectorAll('.row-icon').forEach(el => {
  el.parentNode.insertBefore(el, el.parentNode.firstChild)
})