Skip to content

Commit 9094046

Browse files
committed
small improvements
1 parent 10b6d9a commit 9094046

File tree

3 files changed

+18
-14
lines changed

3 files changed

+18
-14
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "iyp-browser",
3-
"version": "0.3.6",
3+
"version": "0.3.7",
44
"private": true,
55
"type": "module",
66
"scripts": {

src/components/output/GraphOutput.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -483,6 +483,7 @@ onUnmounted(() => {
483483
@change="nodeColorChange(selectedElement)"
484484
no-header-tabs
485485
no-footer
486+
flat
486487
/>
487488
<q-select
488489
v-model="selectedElement.captionKey"

src/views/BrowserView.vue

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -61,19 +61,19 @@ watch(
6161
</script>
6262

6363
<template>
64-
<q-banner dense inline-actions class="banner">
65-
You are using IHR's custom IYP Browser!
66-
<template v-slot:action>
67-
<q-btn
68-
outline
69-
dense
70-
label="Go back to Neo4J Browser"
71-
size="sm"
72-
href="https://iyp.iijlab.net/iyp/browser/?dbms=iyp-bolt.iijlab.net:443"
73-
/>
74-
</template>
75-
</q-banner>
7664
<div class="container">
65+
<q-banner dense inline-actions class="neo4j-browser-banner">
66+
You are using IHR's custom IYP Browser!
67+
<template v-slot:action>
68+
<q-btn
69+
outline
70+
dense
71+
label="Go back to Neo4J Browser"
72+
size="sm"
73+
href="https://iyp.iijlab.net/iyp/browser/?dbms=iyp-bolt.iijlab.net:443"
74+
/>
75+
</template>
76+
</q-banner>
7777
<div class="browser-input-container">
7878
<InputPanel @run="runQuery" />
7979
</div>
@@ -117,8 +117,11 @@ watch(
117117
.output-panel {
118118
height: v-bind('outputPanelHeight');
119119
}
120-
.banner {
120+
.neo4j-browser-banner {
121121
background-color: #263238;
122122
color: #ffffff;
123+
margin-top: -16px;
124+
margin-left: -16px;
125+
margin-right: -16px;
123126
}
124127
</style>

0 commit comments

Comments
 (0)