najm-kit 2.1.5 → 2.1.6

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.
Files changed (2) hide show
  1. package/dist/theme.css +14 -0
  2. package/package.json +1 -1
package/dist/theme.css CHANGED
@@ -231,6 +231,20 @@
231
231
  --radius: 0.5rem;
232
232
  }
233
233
 
234
+ /* Browsers paint saved credentials with their own light autofill surface.
235
+ Keep it aligned with Najm's card-backed inputs; BaseInput owns the visible
236
+ radius, so flatten the nested native input to avoid a second inner outline. */
237
+ input:-webkit-autofill,
238
+ input:-webkit-autofill:hover,
239
+ input:-webkit-autofill:focus,
240
+ input:autofill {
241
+ -webkit-text-fill-color: var(--foreground);
242
+ caret-color: var(--foreground);
243
+ border-radius: 0;
244
+ -webkit-box-shadow: 0 0 0 1000px var(--card) inset;
245
+ box-shadow: 0 0 0 1000px var(--card) inset;
246
+ }
247
+
234
248
  .najm-border {
235
249
  border-style: solid;
236
250
  border-width: var(--border-width);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "najm-kit",
3
- "version": "2.1.5",
3
+ "version": "2.1.6",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "description": "Reusable React UI component package for Najm framework",