@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 +8 -7
- package/NavBar.svelte +8 -8
- package/package.json +1 -1
- package/scss/button.scss +8 -8
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
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
|
+
}
|