Add styling to lists within table cells (fixes #1141) (#1252)

This overrides the Datasette reset (see
d0fd833b8c/datasette/static/app.css (L35-L38)),
to add back the default styling of list items displayed within Datasette
table cells.
This commit is contained in:
Bob Whitelock 2021-03-29 01:14:04 +01:00 committed by GitHub
commit e72397d65b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -452,6 +452,10 @@ table a:link {
margin-left: -10%;
font-size: 0.8em;
}
.rows-and-columns td ol,ul {
list-style: initial;
list-style-position: inside;
}
a.blob-download {
display: inline-block;
}