@enderfall/ui 0.2.24 → 0.2.25

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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@enderfall/ui",
3
3
  "private": false,
4
- "version": "0.2.24",
4
+ "version": "0.2.25",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",
@@ -18,13 +18,13 @@
18
18
  }
19
19
 
20
20
  .ef-button:not(:disabled):hover {
21
- box-shadow: var(--ef-button-hover-shadow, var(--shadow));
22
- transform: var(--ef-button-hover-transform, translateY(-1px));
21
+ box-shadow: var(--ef-button-current-hover-shadow, var(--ef-button-hover-shadow, var(--shadow)));
22
+ transform: none;
23
23
  }
24
24
 
25
25
  .ef-button:focus-visible {
26
- box-shadow: var(--ef-button-focus-shadow, var(--shadow));
27
- transform: var(--ef-button-hover-transform, translateY(-1px));
26
+ box-shadow: var(--ef-button-current-focus-shadow, var(--ef-button-focus-shadow, var(--shadow)));
27
+ transform: none;
28
28
  }
29
29
 
30
30
  .ef-button--glow {
@@ -34,17 +34,20 @@
34
34
  .ef-button--glow:not(:disabled):hover {
35
35
  box-shadow: var(--ef-button-current-glow-shadow, var(--ef-button-glow-shadow, 0 0 24px rgba(124, 77, 255, 0.45)));
36
36
  animation: none;
37
+ transform: none;
37
38
  }
38
39
 
39
40
  .ef-button--glow:focus-visible {
40
41
  box-shadow: var(--ef-button-current-glow-shadow, var(--ef-button-glow-shadow, 0 0 24px rgba(124, 77, 255, 0.45)));
41
42
  animation: none;
43
+ transform: none;
42
44
  }
43
45
 
44
46
  .ef-button--hover-glow:not(:disabled):hover,
45
47
  .ef-button--hover-glow:focus-visible {
46
48
  box-shadow: var(--ef-button-current-glow-shadow, var(--ef-button-glow-shadow, 0 0 24px rgba(124, 77, 255, 0.45)));
47
49
  animation: none;
50
+ transform: none;
48
51
  }
49
52
 
50
53
  .ef-button:disabled {
@@ -190,11 +193,13 @@
190
193
  .ef-button.tab.ef-button--glow:not(:disabled):hover,
191
194
  .ef-button.tab.ef-button--hover-glow:not(:disabled):hover {
192
195
  box-shadow: var(--ef-button-current-glow-shadow, var(--ef-button-glow-shadow, 0 0 24px rgba(124, 77, 255, 0.45)));
196
+ transform: none;
193
197
  }
194
198
 
195
199
  .ef-button.tab.ef-button--glow:focus-visible,
196
200
  .ef-button.tab.ef-button--hover-glow:focus-visible {
197
201
  box-shadow: var(--ef-button-current-glow-shadow, var(--ef-button-glow-shadow, 0 0 24px rgba(124, 77, 255, 0.45)));
202
+ transform: none;
198
203
  }
199
204
 
200
205
  .theme-preview {