Skip to content

Commit 87c8d74

Browse files
rubenvdlindeConduction Release Bot
andauthored
Takes nextcloud-vue 2.31.1 so a hovered KPI tile stops drawing a card inside (#931)
its own card. ⚠️ THE CAUSE IS AN INSET, NOT A COMPONENT. A card widget renders `flush` and then has its padding put BACK by the card-fit rule (`padding: 8px 14px`), so the KPI sits inside the wrapper while the WRAPPER draws the border, radius and background the user reads as "the card". The library's `--clickable:hover` rule then drew a 2px border and a drop shadow on the KPI itself, 8-14px in from the edge being hovered. Measured live on dossiq, while genuinely hovered: the tile carried a 2px rgb(0,103,158) border and its own shadow, inset 9px from the wrapper's top and 15px from its left. A non-card-fit tile sits at 1px, so its border lands on the wrapper's own edge and reads as one card. That inset is the whole difference, which is why it looked app-specific and was not. nextcloud-vue#932 moves the affordance to the wrapper. No layout change: nothing moves, one card outlines. Verified in the browser with a real pointer hover: before inner 2px rgb(0,103,158) + shadow wrapper grey, no shadow after inner transparent, no shadow wrapper rgb(0,103,158) + shadow Every app with clickable stat, gauge or delta tiles had this. This bump is one of the fleet sweep that clears it. Dependency change only: package.json and the nextcloud-vue entry in package-lock.json. Co-authored-by: Conduction Release Bot <release-bot@conduction.nl>
1 parent 833037f commit 87c8d74

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"dependencies": {
4343
"@babel/core": "^7.22.9",
4444
"@codemirror/lang-json": "^6.0.0",
45-
"@conduction/nextcloud-vue": "^2.24.3",
45+
"@conduction/nextcloud-vue": "^2.31.1",
4646
"@nextcloud/auth": "^2.6.0",
4747
"@nextcloud/axios": "^2.5.0",
4848
"@nextcloud/capabilities": "^1.2.1",

0 commit comments

Comments
 (0)