# HG changeset patch # User Markus Kottlaender # Date 1542809109 -3600 # Node ID 29036b3916ab0a9fccc87291d70cb127850c42bc # Parent c7db47e5f71d5ab59099afd2a018193a73422bff several UI improvements changed accent color (active buttons, etc... now same as in administration) colored box headers (for better look n feel and to reduce header size even more -> color contrast instead of big font-size) button colors changed from black to dark grey added transparency to boxes and buttons diff -r c7db47e5f71d -r 29036b3916ab client/src/application/Contextbox.vue --- a/client/src/application/Contextbox.vue Wed Nov 21 13:53:38 2018 +0100 +++ b/client/src/application/Contextbox.vue Wed Nov 21 15:05:09 2018 +0100 @@ -37,10 +37,12 @@ ...mapState("application", ["showSearchbarLastState", "showInContextBox"]), style() { return [ - "ui-element shadow-xs contextbox pt-3 ml-3 rounded-bottom border-top", + "ui-element shadow-xs contextbox ml-3", { contextboxcollapsed: !this.showInContextBox, - contextboxextended: this.showInContextBox + contextboxextended: this.showInContextBox, + "rounded-bottom": this.showInContextBox !== "imports", + rounded: this.showInContextBox === "imports" } ]; } @@ -82,6 +84,7 @@ height: $icon-width width: $icon-height display: none + color: #fff .contextboxextended .close-contextbox display: block diff -r c7db47e5f71d -r 29036b3916ab client/src/application/Search.vue --- a/client/src/application/Search.vue Wed Nov 21 13:53:38 2018 +0100 +++ b/client/src/application/Search.vue Wed Nov 21 15:05:09 2018 +0100 @@ -26,6 +26,7 @@ diff -r c7db47e5f71d -r 29036b3916ab client/src/zoom/zoom.vue --- a/client/src/zoom/zoom.vue Wed Nov 21 13:53:38 2018 +0100 +++ b/client/src/zoom/zoom.vue Wed Nov 21 15:05:09 2018 +0100 @@ -20,6 +20,7 @@ min-width: $icon-width z-index: 2 outline: none + color: #666