@onsvisual/svelte-components 1.1.20 → 1.1.21

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.
@@ -300,10 +300,6 @@
300
300
  {/if}
301
301
 
302
302
  <style>
303
- .ons-cookies-banner {
304
- /* padding: 0; */
305
- background: var(--pale, #f0f0f0) !important;
306
- }
307
303
  .ons-cookies-banner__full :global(.ons-page__container) {
308
304
  padding: 0 12px;
309
305
  }
@@ -332,7 +332,7 @@
332
332
  }
333
333
 
334
334
  :global([slot="foreground"] section > div:before) {
335
- background-color: var(--background, white);
335
+ background-color: var(--ons-color-page-light);
336
336
  opacity: 80%;
337
337
  }
338
338
 
@@ -362,7 +362,7 @@
362
362
  width: 480px;
363
363
  max-width: 35%;
364
364
  margin: 0 auto 0 0;
365
- background-color: var(--background, white);
365
+ background-color: var(--ons-color-page-light);
366
366
  }
367
367
  }
368
368
  </style>
@@ -102,7 +102,7 @@
102
102
 
103
103
  <style>
104
104
  .ons-input--textarea {
105
- background: var(--background, white);
105
+ background: var(--ons-color-page-light);
106
106
  border-color: currentColor;
107
107
  }
108
108
  .ons-input--textarea:focus {
@@ -208,7 +208,7 @@
208
208
 
209
209
  button.btn-link {
210
210
  line-height: 1.3;
211
- color: var(--link, #206095);
211
+ color: var(--ons-color-text-link, #206095);
212
212
  background: none;
213
213
  margin: 0;
214
214
  padding: 0;
@@ -218,7 +218,7 @@
218
218
  text-underline-position: under;
219
219
  }
220
220
  button.btn-link:hover {
221
- color: var(--link-hover, #003c57) !important;
221
+ color: var(--ons-color-text-link-hover, #003c57) !important;
222
222
  text-decoration-thickness: 2px;
223
223
  }
224
224
  button.btn-link:focus {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onsvisual/svelte-components",
3
- "version": "1.1.20",
3
+ "version": "1.1.21",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "npm run build:package && npm run build:docs",