diff --git a/ui/index.html b/ui/index.html index 3516490aea..e9699772ec 100644 --- a/ui/index.html +++ b/ui/index.html @@ -115,7 +115,7 @@
-
+

{{model.key}} @@ -123,7 +123,14 @@

- {{ textarea value=model.value class="form-control"}} +
+
+ {{ textarea value=model.value class="form-control"}} +
+
+ +
+
diff --git a/ui/javascripts/app/controllers.js b/ui/javascripts/app/controllers.js index 1cb348c7db..63fd0d3fc3 100644 --- a/ui/javascripts/app/controllers.js +++ b/ui/javascripts/app/controllers.js @@ -70,3 +70,21 @@ App.ServicesController = Ember.ArrayController.extend({ App.ServicesShowController = Ember.Controller.extend({ needs: ['services'] }); + + +App.KvEditController = Ember.Controller.extend({ + isLoading: false, + + actions: { + updateKey: function() { + var key = this.get("model"); + this.set('isLoading', true); + + Ember.run.later(this, function() { + this.set('isLoading', false) + }, 500); + + } + } + +}); diff --git a/ui/styles/_lists.scss b/ui/styles/_lists.scss index 6587813efa..a55275e59e 100644 --- a/ui/styles/_lists.scss +++ b/ui/styles/_lists.scss @@ -42,7 +42,10 @@ } &.active { - border-color: $gray; + border-color: $purple; + .list-bar { + background-color: $purple; + } } }