@iroco/ui 0.51.1 → 0.51.2

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/Button.svelte CHANGED
@@ -266,17 +266,18 @@ export let node;
266
266
  .iroco-ui-button:active {
267
267
  box-shadow: none;
268
268
  }
269
- .iroco-ui-button .iroco-ui-link {
270
- background: none;
271
- border: none;
272
- font-family: "Arial";
273
- color: #f2ebe3;
274
- cursor: pointer;
275
- }
276
269
  .iroco-ui-button.disabled {
277
270
  background-color: #f5f5f5;
278
271
  cursor: default;
279
272
  }
280
273
  .iroco-ui-button.disabled:hover {
281
274
  box-shadow: none;
275
+ }
276
+
277
+ .iroco-ui-link {
278
+ background: none;
279
+ border: none;
280
+ font-family: "Arial";
281
+ color: #f2ebe3;
282
+ cursor: pointer;
282
283
  }</style>
package/NavBar.svelte CHANGED
@@ -559,14 +559,6 @@ $:
559
559
  box-shadow: none;
560
560
  }
561
561
 
562
- .iroco-ui-button .iroco-ui-link {
563
- background: none;
564
- border: none;
565
- font-family: "Arial";
566
- color: #f2ebe3;
567
- cursor: pointer;
568
- }
569
-
570
562
  .iroco-ui-button.disabled {
571
563
  background-color: #f5f5f5;
572
564
  cursor: default;
@@ -576,6 +568,14 @@ $:
576
568
  box-shadow: none;
577
569
  }
578
570
 
571
+ .iroco-ui-link {
572
+ background: none;
573
+ border: none;
574
+ font-family: "Arial";
575
+ color: #f2ebe3;
576
+ cursor: pointer;
577
+ }
578
+
579
579
  .nav__sidebar__item, .nav__topbar__item {
580
580
  text-decoration: none;
581
581
  display: block;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iroco/ui",
3
- "version": "0.51.1",
3
+ "version": "0.51.2",
4
4
  "description": "Iroco design system based on Svelte",
5
5
  "main": "lib/index.ts",
6
6
  "svelte": "index.js",
package/scss/button.scss CHANGED
@@ -53,14 +53,6 @@
53
53
  box-shadow: none;
54
54
  }
55
55
 
56
- .iroco-ui-link {
57
- background: none;
58
- border: none;
59
- font-family: fonts.$arial;
60
- color: colors.$beige;
61
- cursor: pointer;
62
- }
63
-
64
56
  &.disabled {
65
57
  background-color: colors.$lightGrey;
66
58
  cursor: default;
@@ -69,3 +61,11 @@
69
61
  }
70
62
  }
71
63
  }
64
+
65
+ .iroco-ui-link {
66
+ background: none;
67
+ border: none;
68
+ font-family: fonts.$arial;
69
+ color: colors.$beige;
70
+ cursor: pointer;
71
+ }