diff options
author | Richard Wall <richard@largo> | 2011-01-15 15:34:41 +0000 |
---|---|---|
committer | Richard Wall <richard@largo> | 2011-01-15 15:34:41 +0000 |
commit | 841d30bf4eda7a8658433d97b9c9a686c85b6e5a (patch) | |
tree | d241b26c88b1ddc2de3316d4ca5e026418f16647 /docs | |
parent | 28c1497d0d027765020d3fc33170a934041de5b9 (diff) |
decouple the chart coordinator html from the charts under its control. Also lighten the border of input text boxes.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/examples/assets/css/style.css | 5 | ||||
-rw-r--r-- | docs/examples/index.html | 15 |
2 files changed, 12 insertions, 8 deletions
diff --git a/docs/examples/assets/css/style.css b/docs/examples/assets/css/style.css index 561b11e..10ecda9 100644 --- a/docs/examples/assets/css/style.css +++ b/docs/examples/assets/css/style.css @@ -75,6 +75,11 @@ input[type=checkbox] { border: none; } +input[type=text] { + padding: 3px; + border: 1px solid #EEE; +} + .notice { border: 1px solid Green; background: #FFDDFF; diff --git a/docs/examples/index.html b/docs/examples/index.html index e561b9e..6acf2b8 100644 --- a/docs/examples/index.html +++ b/docs/examples/index.html @@ -58,14 +58,13 @@ <div class="range-preview" title="Time range preview - click and drag to select a custom timerange" ></div> </form> - <div class="tabbed-chart-interface"></div> - <div class="chart-container"> - <h2 class="title"></h2> - <div class="error"></div> - <div class="chart"></div> - <div class="graph-legend"></div> - </div> </div> - + <div class="tabbed-chart-interface"></div> + <div class="chart-container"> + <h2 class="title"></h2> + <div class="error"></div> + <div class="chart"></div> + <div class="graph-legend"></div> + </div> </body> </html> |