Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,9 @@
### Removed
- Travis build system
- Support for PHP 7.2
- Removed info button (not) showing the last update time from settings menu, fixes #279
[#477](https://github.com/nextcloud/cookbook/pull/477/) @seyfeb



## 0.7.7 - 2020-12-10
Expand Down
17 changes: 1 addition & 16 deletions src/components/AppNavi.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,7 @@
<label class="settings-input">
{{ t('cookbook', 'Update interval in minutes') }}
</label>
<div class="update">
<input type="number" class="input settings-input" v-model="updateInterval" placeholder="0">
<button class="icon-info" disabled="disabled" :title="t('cookbook', 'Last update: ')"></button>
</div>
<input type="number" class="input settings-input" v-model="updateInterval" placeholder="0">
</li>
<li>
<input type="checkbox" class="checkbox" v-model="printImage" id="recipe-print-image">
Expand Down Expand Up @@ -370,18 +367,6 @@ export default {
display: block;
}

.update > input {
width: calc(100% - 0.5rem - 34px) !important;
margin-right: 0.5rem;
float: left;
}
.update > button {
margin: 3px 0 !important;
width: 34px !important;
height: 34px !important;
float: left;
}

#hide-navigation {
height: 44px;
display: none;
Expand Down