@7365admin1/layer-common 3.2.2-staging.145 → 3.2.2-staging.146

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -219,9 +219,16 @@ const selectItem = (value: string) => {
219
219
  }
220
220
 
221
221
  /* The profile menu's row, to the pixel - same padding, same radius, same
222
- weight - because it is the same control one panel over. */
222
+ weight - because it is the same control one panel over.
223
+ `!important` ONLY on the radius, and it is not optional: a `v-list` with no
224
+ `rounded` prop stamps Vuetify's own `rounded-0` utility onto every
225
+ `v-list-item` inside it, and that utility IS `!important`. So this rule was
226
+ losing silently - measured `0px`, not the 9px it asks for - and the hover
227
+ painted a square block inside a 14px-rounded panel. The header's rows escape
228
+ it only because they are plain `<button>`s, which is why the two menus did
229
+ not match despite the same value. */
223
230
  .switch-context__row {
224
- border-radius: var(--r-inner-sm);
231
+ border-radius: var(--r-inner-sm) !important;
225
232
  font-size: var(--fs-btn);
226
233
  font-weight: var(--fw-btn);
227
234
  color: var(--text2);
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@7365admin1/layer-common",
3
3
  "license": "MIT",
4
4
  "type": "module",
5
- "version": "3.2.2-staging.145",
5
+ "version": "3.2.2-staging.146",
6
6
  "author": "7365admin1",
7
7
  "main": "./nuxt.config.ts",
8
8
  "//files": "What a consumer extending this layer actually loads. Without this npm ships the whole working tree - the changesets, the CI workflows, the render harness in tools/ and any scratch directory that happened to exist at publish time. Nuxt resolves a layer by directory, so every runtime directory below has to stay listed; adding a new top-level runtime directory means adding it here too.",