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 @@ -9,11 +9,14 @@
[#880](https://github.com/nextcloud/cookbook/pull/880) @christianlupus
- Usage of caches for NPM speedup
[#883](https://github.com/nextcloud/cookbook/pull/883) @christianlupus
- Make the controls sticky on top
[#888](https://github.com/nextcloud/cookbook/pull/888) @MarcelRobitaille

### Documentation
- Added clarification between categories and keywords for users
[#889](https://github.com/nextcloud/cookbook/pull/889) @MarcelRobitaille


## 0.9.9 - 2022-01-13

### Fixed
Expand Down
11 changes: 11 additions & 0 deletions src/components/AppControls.vue
Original file line number Diff line number Diff line change
Expand Up @@ -344,8 +344,19 @@ export default {

<style scoped>
.wrapper {
/* Sticky is better than fixed because fixed takes the element out of flow,
which breaks the height, putting elements underneath */
position: sticky;

/* This is competing with the recipe instructions which have z-index: 1 */
z-index: 2;

/* The height of the nextcloud header */
top: 50px;
width: 100%;
padding-left: 4px;
border-bottom: 1px solid var(--color-border);
background-color: var(--color-main-background);
}

.active {
Expand Down