holygrail2 1.0.93 → 1.0.95
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
|
@@ -569,7 +569,7 @@ button {
|
|
|
569
569
|
.btn-tertiary {
|
|
570
570
|
color: $c-primary;
|
|
571
571
|
background-color: transparent;
|
|
572
|
-
border:
|
|
572
|
+
border: 0 solid transparent;
|
|
573
573
|
height: auto;
|
|
574
574
|
svg {
|
|
575
575
|
g {
|
|
@@ -588,7 +588,7 @@ button {
|
|
|
588
588
|
&.active {
|
|
589
589
|
opacity: 1;
|
|
590
590
|
color: $c-dark-grey;
|
|
591
|
-
border:
|
|
591
|
+
border: 0 solid transparent;
|
|
592
592
|
background-color: transparent;
|
|
593
593
|
cursor: pointer;
|
|
594
594
|
}
|
|
@@ -597,14 +597,14 @@ button {
|
|
|
597
597
|
&.disabled {
|
|
598
598
|
pointer-events: none;
|
|
599
599
|
cursor: default;
|
|
600
|
-
border:
|
|
600
|
+
border: 0 solid transparent !important;
|
|
601
601
|
color: $c-dark-grey !important;
|
|
602
602
|
background-color: transparent !important;
|
|
603
603
|
filter: none;
|
|
604
604
|
opacity: 1;
|
|
605
605
|
svg-icon {
|
|
606
606
|
background-color: transparent !important;
|
|
607
|
-
border:
|
|
607
|
+
border: 0 solid transparent !important;
|
|
608
608
|
}
|
|
609
609
|
}
|
|
610
610
|
.has-light & {
|
package/scss/elements/_tabs.scss
CHANGED
|
@@ -28,14 +28,13 @@
|
|
|
28
28
|
align-items: center;
|
|
29
29
|
vertical-align: top;
|
|
30
30
|
|
|
31
|
-
font-size: 12px;
|
|
32
31
|
cursor: pointer;
|
|
33
32
|
padding: 0 20px 8px;
|
|
34
33
|
}
|
|
35
34
|
|
|
36
35
|
&.is-active a,
|
|
37
36
|
&.is-active span,
|
|
38
|
-
&.is-active
|
|
37
|
+
&.is-active .tab {
|
|
39
38
|
position: relative;
|
|
40
39
|
|
|
41
40
|
&::after {
|
|
@@ -107,13 +106,12 @@
|
|
|
107
106
|
align-items: center;
|
|
108
107
|
vertical-align: top;
|
|
109
108
|
|
|
110
|
-
font-size: 12px;
|
|
111
109
|
cursor: pointer;
|
|
112
110
|
}
|
|
113
111
|
|
|
114
112
|
&.is-active a,
|
|
115
113
|
&.is-active span,
|
|
116
|
-
&.is-active
|
|
114
|
+
&.is-active .tab {
|
|
117
115
|
position: relative;
|
|
118
116
|
|
|
119
117
|
&::after {
|