Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@
[#350](https://github.com/nextcloud/cookbook/pull/350) @maxammann
- Make complete sentence in transifex translation from parts
[#358](https://github.com/nextcloud/cookbook/pull/358) @christianlupus
- Hide tooltips in printouts
[#343](https://github.com/nextcloud/cookbook/pull/343/) @christianlupus

### Removed
- Travis build system
Expand Down
13 changes: 13 additions & 0 deletions src/components/AppControls.vue
Original file line number Diff line number Diff line change
Expand Up @@ -283,3 +283,16 @@ export default {
}

</style>

<style>

@media print {

.vue-tooltip {
display: none !important;
}

}

</style>