diff --git a/public/res/html/bodyEditor.html b/public/res/html/bodyEditor.html
index ec971711..555ff517 100644
--- a/public/res/html/bodyEditor.html
+++ b/public/res/html/bodyEditor.html
@@ -563,10 +563,10 @@
-
-
+ Add
+
+ Remove
+
diff --git a/public/res/providers/couchdbProvider.js b/public/res/providers/couchdbProvider.js
index f0b59faf..cf5fd62f 100644
--- a/public/res/providers/couchdbProvider.js
+++ b/public/res/providers/couchdbProvider.js
@@ -312,7 +312,7 @@ define([
setMode('byid');
})
.on('click', '.action-add-tag', function() {
- alertify.prompt("Enter a tag:", function (e, tag) {
+ alertify.prompt("Enter a tag (case sensitive):", function (e, tag) {
if(!e || !tag) {
return;
}
diff --git a/public/res/styles/alertify.less b/public/res/styles/alertify.less
index dd5d22a2..d0c1c821 100644
--- a/public/res/styles/alertify.less
+++ b/public/res/styles/alertify.less
@@ -164,6 +164,7 @@
border: 1px solid @input-border;
border-radius: @input-border-radius;
.box-shadow(~"@{form-control-inset-shadow}");
+ .transition(~"border-color ease-in-out .15s, box-shadow ease-in-out .15s");
}
.alertify-text:focus {
.form-control-focus();
@@ -174,6 +175,7 @@
background:@secondary-bg-light;
border-top: 1px solid @secondary-border-color-light;
text-align: right;
+ border-radius: 0 0 6px 6px;
}
.alertify-button {
margin-left: 10px;
diff --git a/public/res/styles/main.less b/public/res/styles/main.less
index 325443bd..55edb03d 100644
--- a/public/res/styles/main.less
+++ b/public/res/styles/main.less
@@ -362,6 +362,10 @@ a {
}
}
+.btn-link:hover {
+ text-decoration: none;
+}
+
.btn-group {
.btn + .btn,
.btn + .btn-group,