diff --git a/css/flot.css b/css/flot.css index cf203cda..57adc9f0 100644 --- a/css/flot.css +++ b/css/flot.css @@ -19,8 +19,8 @@ #recline-flot-tooltip { position: absolute; - background-color: #FEE !important; - color: #000000 !important; - opacity: 0.8 !important; - border: 1px solid #fdd !important; + background-color: #FEE; + color: #000000; + opacity: 0.8; + border: 1px solid #fdd; } diff --git a/css/multiview.css b/css/multiview.css index 6837e7c2..02c4b704 100644 --- a/css/multiview.css +++ b/css/multiview.css @@ -67,6 +67,10 @@ vertical-align: top; } +.header .recline-query-editor label { + display:none; +} + /********************************************************** * Pager *********************************************************/ @@ -78,6 +82,10 @@ margin-left: 20px; } +.header .recline-pager .pagination label { + display:none; +} + .header .recline-pager .pagination input { width: 30px; height: 18px; diff --git a/src/view.multiview.js b/src/view.multiview.js index 918f0e16..6d7e754a 100644 --- a/src/view.multiview.js +++ b/src/view.multiview.js @@ -248,6 +248,9 @@ my.MultiView = Backbone.View.extend({ // the main views _.each(this.pageViews, function(view, pageName) { view.view.render(); + if (view.view.redraw) { + view.view.redraw(); + } $dataViewContainer.append(view.view.el); if (view.view.elSidebar) { $dataSidebar.append(view.view.elSidebar); diff --git a/src/widget.pager.js b/src/widget.pager.js index fa112f4a..e5d81283 100644 --- a/src/widget.pager.js +++ b/src/widget.pager.js @@ -12,7 +12,7 @@ my.Pager = Backbone.View.extend({ \ diff --git a/src/widget.queryeditor.js b/src/widget.queryeditor.js index 87defe0d..d6566566 100644 --- a/src/widget.queryeditor.js +++ b/src/widget.queryeditor.js @@ -12,7 +12,7 @@ my.QueryEditor = Backbone.View.extend({
\
\ \ - \ + \
\ \
\