fix: align list header search and actions on one row with top spacing - #730
Merged
Conversation
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Contributor
Quality Report — ConductionNL/openconnector @
|
| Check | PHP | Vue | Security | License | Tests |
|---|---|---|---|---|---|
| lint | ✅ | ||||
| phpcs | ❌ | ||||
| phpmd | ✅ | ||||
| psalm | ✅ | ||||
| phpstan | ✅ | ||||
| phpmetrics | ✅ | ||||
| eslint | ❌ | ||||
| stylelint | ❌ | ||||
| composer | ✅ | ✅ 148/148 | |||
| npm | ❌ | ❌ 1/573 denied | |||
| PHPUnit | ⏭️ | ||||
| Newman | ⏭️ | ||||
| Playwright | ⏭️ |
❌ Denied npm licenses
| Package | Version | License |
|---|---|---|
| @fortawesome/free-solid-svg-icons | 6.7.2 | (CC-BY-4.0 AND MIT) |
Quality workflow — 2026-04-24 15:02 UTC
Download the full PDF report from the workflow artifacts.
SudoThijn
approved these changes
Apr 28, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
.listHeaderwas missingdisplay: flex, causing the search field and...actions menu to stack vertically instead of appearing side by sidepadding-block-start: 8pxfor top spacing between the Nextcloud header bar and the search rowflex: 1; min-width: 0on.searchFieldso it expands to fill remaining width without overflowingflex-shrink: 0on.listHeaderActionsso the dots button stays at its natural sizeApplies to all 8 list sidebars at once (Endpoints, Synchronizations, Jobs, Mappings, Consumers, Webhooks, Rules, Events) via the shared CSS classes.
The flex layout is defined in
src/assets/app.css(compiled via webpack, always cache-busted on build). Theborder-bottomandpadding-inline-start: 65px(toggle button clearance) remain incss/main.csswhere they were already correctly defined.Test plan
...menu appear on the same horizontal row🤖 Generated with Claude Code