@simplybusiness/theme-core 7.10.3 → 7.10.5
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/CHANGELOG.md +17 -0
- package/dist/index.css +25 -23
- package/package.json +2 -2
- package/src/variables.css +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 7.10.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [b1e7459]
|
|
8
|
+
- Updated dependencies [d65deec]
|
|
9
|
+
- Updated dependencies [220f943]
|
|
10
|
+
- @simplybusiness/mobius@5.32.4
|
|
11
|
+
|
|
12
|
+
## 7.10.4
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 5b28c9f: Add Westhill Global Theme
|
|
17
|
+
- Updated dependencies [5b28c9f]
|
|
18
|
+
- @simplybusiness/mobius@5.32.3
|
|
19
|
+
|
|
3
20
|
## 7.10.3
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -185,7 +185,7 @@ h6.mobius-accordion__link-text,
|
|
|
185
185
|
border-style:solid;
|
|
186
186
|
position:relative;
|
|
187
187
|
margin:0;
|
|
188
|
-
transition:color var(--transition-standard), background
|
|
188
|
+
transition:color var(--transition-standard), background var(--transition-standard);
|
|
189
189
|
}
|
|
190
190
|
|
|
191
191
|
.mobius-button:where(.--has-icon){
|
|
@@ -213,12 +213,12 @@ h6.mobius-accordion__link-text,
|
|
|
213
213
|
|
|
214
214
|
.mobius-button:where(.--variant-primary){
|
|
215
215
|
--button-content-color:var(--button-primary-content-color);
|
|
216
|
-
background
|
|
216
|
+
background:var(--button-primary-color);
|
|
217
217
|
font-variation-settings:var(--button-primary-font-variation);
|
|
218
218
|
}
|
|
219
219
|
|
|
220
220
|
.mobius-button:where(.--variant-primary):where(:active),.mobius-button:where(.--variant-primary):where(:hover){
|
|
221
|
-
background
|
|
221
|
+
background:var(--button-primary-hover-color);
|
|
222
222
|
}
|
|
223
223
|
|
|
224
224
|
.mobius-button:where(.--variant-primary):where(:focus-visible){
|
|
@@ -227,19 +227,19 @@ h6.mobius-accordion__link-text,
|
|
|
227
227
|
|
|
228
228
|
.mobius-button:where(.--variant-primary):where(.--is-disabled){
|
|
229
229
|
--button-content-color:var(--color-text-light);
|
|
230
|
-
background
|
|
230
|
+
background:var(--color-background-medium);
|
|
231
231
|
cursor:not-allowed;
|
|
232
232
|
}
|
|
233
233
|
|
|
234
234
|
.mobius-button:where(.--variant-secondary){
|
|
235
235
|
--button-content-color:var(--button-secondary-color);
|
|
236
|
-
background
|
|
236
|
+
background:transparent;
|
|
237
237
|
border-color:var(--button-secondary-color);
|
|
238
238
|
}
|
|
239
239
|
|
|
240
240
|
.mobius-button:where(.--variant-secondary):where(:active),.mobius-button:where(.--variant-secondary):where(:hover){
|
|
241
241
|
--button-content-color:var(--color-text-inverted);
|
|
242
|
-
background
|
|
242
|
+
background:var(--button-secondary-hover-color);
|
|
243
243
|
border-color:var(--button-secondary-hover-color);
|
|
244
244
|
}
|
|
245
245
|
|
|
@@ -250,25 +250,25 @@ h6.mobius-accordion__link-text,
|
|
|
250
250
|
.mobius-button:where(.--variant-secondary):where(.--is-disabled){
|
|
251
251
|
--button-content-color:var(--color-text-light);
|
|
252
252
|
border-color:transparent;
|
|
253
|
-
background
|
|
253
|
+
background:var(--color-background-medium);
|
|
254
254
|
cursor:not-allowed;
|
|
255
255
|
}
|
|
256
256
|
|
|
257
257
|
.mobius-button:where(.--variant-ghost){
|
|
258
258
|
--button-content-color:var(--color-secondary);
|
|
259
|
-
background
|
|
259
|
+
background:var(--color-background-highlight);
|
|
260
260
|
border:var(--border-default);
|
|
261
261
|
border-color:transparent;
|
|
262
262
|
}
|
|
263
263
|
|
|
264
264
|
.mobius-button:where(.--variant-ghost):where(:active){
|
|
265
|
-
background
|
|
265
|
+
background:var(--color-secondary-hover);
|
|
266
266
|
}
|
|
267
267
|
|
|
268
268
|
.mobius-button:where(.--variant-ghost):where(:hover){
|
|
269
269
|
--button-content-color:var(--color-text-inverted);
|
|
270
270
|
border-color:transparent;
|
|
271
|
-
background
|
|
271
|
+
background:var(--color-secondary-hover);
|
|
272
272
|
}
|
|
273
273
|
|
|
274
274
|
.mobius-button:where(.--variant-ghost):where(:focus-visible){
|
|
@@ -278,32 +278,32 @@ h6.mobius-accordion__link-text,
|
|
|
278
278
|
.mobius-button:where(.--variant-ghost):where(.--is-disabled){
|
|
279
279
|
--button-content-color:var(--color-text-light);
|
|
280
280
|
border-color:transparent;
|
|
281
|
-
background
|
|
281
|
+
background:var(--color-background-medium);
|
|
282
282
|
cursor:not-allowed;
|
|
283
283
|
}
|
|
284
284
|
|
|
285
285
|
.mobius-button:where(.--variant-basic){
|
|
286
286
|
--button-content-color:var(--color-text);
|
|
287
287
|
border-color:transparent;
|
|
288
|
-
background
|
|
288
|
+
background:transparent;
|
|
289
289
|
}
|
|
290
290
|
|
|
291
291
|
.mobius-button:where(.--variant-basic):where(:active){
|
|
292
|
-
background
|
|
292
|
+
background:var(--color-background-light);
|
|
293
293
|
}
|
|
294
294
|
|
|
295
295
|
.mobius-button:where(.--variant-basic):where(:hover){
|
|
296
|
-
background
|
|
296
|
+
background:var(--color-background-light);
|
|
297
297
|
}
|
|
298
298
|
|
|
299
299
|
.mobius-button:where(.--variant-basic):where(.--is-disabled){
|
|
300
300
|
--button-content-color:var(--color-text-light);
|
|
301
|
-
background
|
|
301
|
+
background:var(--color-background-medium);
|
|
302
302
|
cursor:not-allowed;
|
|
303
303
|
}
|
|
304
304
|
|
|
305
305
|
.mobius-button:where(.--is-success){
|
|
306
|
-
background
|
|
306
|
+
background:var(--color-valid);
|
|
307
307
|
border-color:var(--color-valid);
|
|
308
308
|
color:transparent;
|
|
309
309
|
}
|
|
@@ -322,18 +322,18 @@ h6.mobius-accordion__link-text,
|
|
|
322
322
|
}
|
|
323
323
|
|
|
324
324
|
.mobius-button:where(.--is-success):where(:hover){
|
|
325
|
-
background
|
|
325
|
+
background:var(--color-valid-hover);
|
|
326
326
|
border-color:var(--color-valid-hover);
|
|
327
327
|
}
|
|
328
328
|
|
|
329
329
|
.mobius-button:where(.--is-success):where(:active){
|
|
330
|
-
background
|
|
330
|
+
background:var(--color-valid);
|
|
331
331
|
}
|
|
332
332
|
|
|
333
333
|
.mobius-button:where(.--is-success):where(.--is-disabled){
|
|
334
334
|
border-color:transparent;
|
|
335
335
|
color:transparent;
|
|
336
|
-
background
|
|
336
|
+
background:var(--color-background-medium);
|
|
337
337
|
cursor:not-allowed;
|
|
338
338
|
}
|
|
339
339
|
|
|
@@ -354,7 +354,7 @@ h6.mobius-accordion__link-text,
|
|
|
354
354
|
--button-content-color:var(--color-secondary);
|
|
355
355
|
appearance:none;
|
|
356
356
|
padding:var(--size-xxs);
|
|
357
|
-
background
|
|
357
|
+
background:transparent;
|
|
358
358
|
font-weight:normal;
|
|
359
359
|
}
|
|
360
360
|
|
|
@@ -1025,7 +1025,7 @@ a.mobius-button:focus-visible,
|
|
|
1025
1025
|
-webkit-text-decoration:underline;
|
|
1026
1026
|
text-decoration:underline;
|
|
1027
1027
|
cursor:pointer;
|
|
1028
|
-
color:var(--color-
|
|
1028
|
+
color:var(--color-link-hover);
|
|
1029
1029
|
}
|
|
1030
1030
|
|
|
1031
1031
|
.mobius-link:focus-visible{
|
|
@@ -1044,7 +1044,7 @@ a.mobius-button:focus-visible,
|
|
|
1044
1044
|
}
|
|
1045
1045
|
|
|
1046
1046
|
.mobius-link--secondary:hover,.mobius-link--secondary:active{
|
|
1047
|
-
color:var(--color-link-secondary);
|
|
1047
|
+
color:var(--color-link-secondary-hover);
|
|
1048
1048
|
}
|
|
1049
1049
|
|
|
1050
1050
|
.mobius-list{
|
|
@@ -2329,7 +2329,7 @@ a.mobius-button:focus-visible,
|
|
|
2329
2329
|
}
|
|
2330
2330
|
|
|
2331
2331
|
:is(.mobius-text-field__prefix-inside,.mobius-text-field__suffix-inside):not(.--is-invalid):not(.--is-disabled){
|
|
2332
|
-
color:var(--color-primary
|
|
2332
|
+
color:var(--color-primary);
|
|
2333
2333
|
}
|
|
2334
2334
|
|
|
2335
2335
|
.mobius-button:is(.mobius-text-field__prefix-inside,.mobius-text-field__suffix-inside){
|
|
@@ -3049,7 +3049,9 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3049
3049
|
--table-border-width:1px;
|
|
3050
3050
|
--title-decorator-width:8px;
|
|
3051
3051
|
--color-link:var(--color-secondary);
|
|
3052
|
+
--color-link-hover:var(--color-secondary-hover);
|
|
3052
3053
|
--color-link-secondary:var(--color-link);
|
|
3054
|
+
--color-link-secondary-hover:var(--color-link-hover);
|
|
3053
3055
|
}
|
|
3054
3056
|
|
|
3055
3057
|
:root{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-core",
|
|
3
|
-
"version": "7.10.
|
|
3
|
+
"version": "7.10.5",
|
|
4
4
|
"main": "dist/index.css",
|
|
5
5
|
"simplyBusiness": {
|
|
6
6
|
"publishToPublicNpm": true
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"./fonts": "./dist/fonts.css"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@simplybusiness/mobius": "^5.32.
|
|
29
|
+
"@simplybusiness/mobius": "^5.32.4"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"build-scripts": "^1.0.1"
|
package/src/variables.css
CHANGED