Skip to content

Commit

Permalink
Using dash - instead of _ on filename, making input form-control white
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Mar 6, 2016
1 parent 9855a60 commit c0e4aca
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion panoramix/assets/javascripts/dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var ace = require('brace');
require('brace/mode/css');
require('brace/theme/crimson_editor');

require('./panoramix_select2.js');
require('./panoramix-select2.js');
require('../node_modules/gridster/dist/jquery.gridster.min.js');

var Dashboard = function (dashboardData) {
Expand Down
3 changes: 1 addition & 2 deletions panoramix/assets/javascripts/explore.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ require('jquery-ui');
$.widget.bridge('uitooltip', $.ui.tooltip); // Shutting down jq-ui tooltips
require('bootstrap');

require('./panoramix_select2.js');

require('./panoramix-select2.js');

require('../node_modules/bootstrap-toggle/js/bootstrap-toggle.min.js');
require('../vendor/select2.sortable.js');
Expand Down
4 changes: 4 additions & 0 deletions panoramix/assets/stylesheets/panoramix.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ body {
margin: 0px !important;
}

input.form-control {
background-color: white;
}

.col-left-fixed {
width:350px;
position: absolute;
Expand Down
2 changes: 1 addition & 1 deletion panoramix/assets/visualizations/filter_box.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var d3 = window.d3 || require('d3');

// CSS
require('./filter_box.css');
require('../javascripts/panoramix_select2.js')
require('../javascripts/panoramix-select2.js')


function filterBox(slice) {
Expand Down

0 comments on commit c0e4aca

Please sign in to comment.