Adjust scatterplot interface style

This commit is contained in:
guerler
2018-10-22 14:08:11 -04:00
parent 99bc4b33d2
commit 77f742d7ff
4 changed files with 58 additions and 50 deletions
@@ -23,5 +23,8 @@
"jquery-ui-bundle": "^1.12.1-migrate",
"parcel-bundler": "^1.6.2",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel-core": "^6.26.3"
}
}
@@ -674,24 +674,24 @@ ScatterplotConfigEditor.templates = {
// tab buttons/headers using Bootstrap
'<ul class="nav nav-tabs">',
// start with the data controls as the displayed tab
'<li class="active">',
'<a title="Use this tab to change which data are used"',
'<li class="nav-item active">',
'<a class="nav-link" title="Use this tab to change which data are used"',
'href="#data-control" data-toggle="tab">Data Controls</a>',
"</li>",
"<li>",
'<a title="Use this tab to change how the chart is drawn"',
'</li>',
'<li class="nav-item">',
'<a class="nav-link" title="Use this tab to change how the chart is drawn"',
'href="#chart-control" data-toggle="tab" >Chart Controls</a>',
"</li>",
'</li>',
// chart starts as disabled since there's no info yet
'<li class="disabled">',
'<a title="This tab will display the chart"',
'<li class="nav-item disabled">',
'<a class="nav-link" title="This tab will display the chart"',
'href="#chart-display" data-toggle="tab">Chart</a>',
"</li>",
'</li>',
// button for saving the visualization config on the server
'<li class="file-controls">',
'<button class="save-btn btn btn-default">Save</button>',
"</li>",
"</ul>",
'<li class="nav-item">',
'<a class="save-btn nav-link">Save</a>',
'</li>',
'</ul>',
// data form, chart config form, chart all get their own tab
'<div class="tab-content">',
@@ -4,8 +4,6 @@
.chart-header {
margin-bottom: 16px;
overflow: auto;
background-color: #ebd9b2;
padding : 12px 12px 4px 12px;
}
.chart-header h2 {
File diff suppressed because one or more lines are too long