@@ -208,6 +215,9 @@
}
return normalizedAnnotations;
+ },
+ showOverlay: function() {
+ return this.annotation && !this.annotation.annotation_guid
}
},
watch: {
@@ -633,7 +643,11 @@
Cookies.set('__iconolab_onboarding', 'true', { expires: 365 });
})
intro.start()
- }
+ },
+
+ addAnnotationWithoutFragment: function() {
+ this.$emit('add:annotation')
+ },
}
}
@@ -698,10 +712,14 @@
border-radius: 4px;
padding: 8px;
}
- .controls .controls-right {
+ .controls .controls-zoom {
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
}
+ .controls .controls-right {
+ margin-left: 5px;
+ border-radius: 4px;
+ }
.help {
position: absolute;
@@ -709,4 +727,14 @@
right: 10px;
}
+.overlay {
+ position: absolute;
+ background-color: #c5f2ff;
+ opacity: 0.25;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+}
+