Browse Source

Remove tooltip on customize button in dashboard

Signed-off-by: Julius Härtl <jus@bitgrid.net>
tags/v20.0.0beta4
Julius Härtl 3 years ago
parent
commit
b759b40f24
No account linked to committer's email address
3 changed files with 4 additions and 22 deletions
  1. 1
    1
      apps/dashboard/js/dashboard.js
  2. 1
    1
      apps/dashboard/js/dashboard.js.map
  3. 2
    20
      apps/dashboard/src/App.vue

+ 1
- 1
apps/dashboard/js/dashboard.js
File diff suppressed because it is too large
View File


+ 1
- 1
apps/dashboard/js/dashboard.js.map
File diff suppressed because it is too large
View File


+ 2
- 20
apps/dashboard/src/App.vue View File

@@ -25,10 +25,8 @@
</div>
</Draggable>

<div class="footer"
:class="{ firstrun: firstRun }">
<a v-tooltip="tooltip"
class="edit-panels icon-rename"
<div class="footer">
<a class="edit-panels icon-rename"
tabindex="0"
@click="showModal"
@keyup.enter="showModal"
@@ -158,17 +156,6 @@ export default {
backgroundImage: `url(${this.backgroundImage})`,
}
},
tooltip() {
if (!this.firstRun) {
return null
}
return {
content: t('dashboard', 'Adjust the dashboard to your needs'),
placement: 'top',
show: true,
trigger: 'manual',
}
},
greeting() {
const time = this.timer.getHours()
const shouldShowName = this.displayName && this.uid !== this.displayName
@@ -489,11 +476,6 @@ export default {
transition: bottom var(--animation-slow) ease-in-out;
bottom: 0;
padding: 44px 0;

&.firstrun {
position: sticky;
bottom: 10px;
}
}

.edit-panels {

Loading…
Cancel
Save