mirror of
https://github.com/simonw/datasette-vega.git
synced 2026-09-16 21:44:12 +02:00
Fix leaking CSS bug (fix #15) and release 0.6.2
This commit is contained in:
parent
5cc4e521ea
commit
b05dd7792e
3 changed files with 5 additions and 5 deletions
|
|
@ -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">
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -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__))
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue