Fix leaking CSS bug (fix #15) and release 0.6.2

This commit is contained in:
Simon Willison 2018-07-28 17:13:14 -07:00
commit b05dd7792e
3 changed files with 5 additions and 5 deletions

View file

@ -7,7 +7,7 @@
<link rel="stylesheet" href="https://latest.datasette.io/-/static/app.css">
<title>Datasette Vega</title>
</head>
<body>
<body class="datasette-vega-demo">
<h1>Datasette Vega</h1>
<p>Enter the URL of the JSON version of any Datasette table:</p>
<form action="." method="GET" style="margin-bottom: 2em">

View file

@ -4,7 +4,7 @@ from subprocess import check_output
from wheel.bdist_wheel import bdist_wheel
import os
VERSION = '0.6.1'
VERSION = '0.6.2'
ROOT = os.path.dirname(os.path.abspath(__file__))

View file

@ -1,14 +1,14 @@
body {
body.datasette-vega-demo {
margin: 0;
padding: 1em;
font-family: sans-serif;
}
form div {
body.datasette-vega-demo form div {
margin-bottom: 0.5em
}
label {
body.datasette-vega-demo label {
padding-right: 0.5em;
}