diff --git a/common/css/main.css b/common/css/main.css index 3b87881013a..d67137e6c59 100644 --- a/common/css/main.css +++ b/common/css/main.css @@ -38,6 +38,10 @@ display: none; } +.panel i.editlink span { + font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; +} + .pointer:hover { color: #0088CC; } diff --git a/js/directives.js b/js/directives.js index f4c0fd76b1a..973b406a6dc 100644 --- a/js/directives.js +++ b/js/directives.js @@ -7,7 +7,7 @@ angular.module('kibana.directives', []) return { restrict: 'E', link: function(scope, elem, attrs) { - var template = ' '+ + var template = ' {{panel.type}}'+ '

{{panel.title}}

'; elem.prepend($compile(angular.element(template))(scope)); } diff --git a/panels/dashcontrol/editor.html b/panels/dashcontrol/editor.html index ad304bc15a9..996c580c13e 100644 --- a/panels/dashcontrol/editor.html +++ b/panels/dashcontrol/editor.html @@ -32,4 +32,13 @@ +
Sharing
+
+
+ +
+
+ +
+
\ No newline at end of file diff --git a/panels/dashcontrol/module.html b/panels/dashcontrol/module.html index fe2faf2faa8..ab7f74025e0 100644 --- a/panels/dashcontrol/module.html +++ b/panels/dashcontrol/module.html @@ -2,5 +2,5 @@ - + \ No newline at end of file diff --git a/panels/dashcontrol/module.js b/panels/dashcontrol/module.js index 71b3d075ea8..19d4c70f475 100644 --- a/panels/dashcontrol/module.js +++ b/panels/dashcontrol/module.js @@ -17,6 +17,7 @@ angular.module('kibana.dashcontrol', []) }, elasticsearch_size: 20, elasticsearch_saveto: $scope.config.kibana_index, + temp: true, temp_ttl: '30d', } _.defaults($scope.panel,_d); diff --git a/panels/stringquery/module.html b/panels/stringquery/module.html index 344e6691e15..651b3986884 100644 --- a/panels/stringquery/module.html +++ b/panels/stringquery/module.html @@ -35,7 +35,8 @@
- +
+ diff --git a/panels/table/editor.html b/panels/table/editor.html index 7b48a1fa493..4da04eb7852 100644 --- a/panels/table/editor.html +++ b/panels/table/editor.html @@ -27,8 +27,10 @@ -
+
Length
+
Font Size
+
\ No newline at end of file diff --git a/panels/timepicker/module.js b/panels/timepicker/module.js index d00a3867751..5185f7fa7b4 100644 --- a/panels/timepicker/module.js +++ b/panels/timepicker/module.js @@ -83,6 +83,9 @@ angular.module('kibana.timepicker', []) eventBus.register($scope,"get_time", function(event,id) { eventBus.broadcast($scope.$id,id,'time',$scope.time) }); + $scope.$on('render', function (){ + $scope.time_apply(); + }); } $scope.set_interval = function (refresh_interval) {
Queries