@salesforcedevs/dx-components 1.3.147 → 1.3.149
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforcedevs/dx-components",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.149",
|
|
4
4
|
"description": "DX Lightning web components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"engines": {
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"eventsourcemock": "^2.0.0",
|
|
41
41
|
"luxon": "^3.1.0"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "b9b13baff28c71df438686a0b302bcf7636a75f4"
|
|
44
44
|
}
|
|
@@ -132,16 +132,26 @@
|
|
|
132
132
|
border-color: var(--dx-c-button-primary-color-hover);
|
|
133
133
|
}
|
|
134
134
|
|
|
135
|
-
/* secondary */
|
|
135
|
+
/* secondary / quaternary */
|
|
136
136
|
|
|
137
137
|
.button.variant_secondary {
|
|
138
|
-
color: var(--dx-c-button-primary-color);
|
|
139
138
|
background: var(--dx-c-button-background-color);
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.button.variant_quaternary {
|
|
142
|
+
background: white;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.button.variant_secondary,
|
|
146
|
+
.button.variant_quaternary {
|
|
147
|
+
color: var(--dx-c-button-primary-color);
|
|
140
148
|
border: 1px solid var(--dx-c-button-primary-color);
|
|
141
149
|
}
|
|
142
150
|
|
|
143
151
|
.button.variant_secondary:hover,
|
|
144
|
-
|
|
152
|
+
.button.variant_quaternary:hover,
|
|
153
|
+
:host([aria-expanded="true"]) .button.variant_secondary,
|
|
154
|
+
:host([aria-expanded="true"]) .button.variant_quaternary {
|
|
145
155
|
background: var(--dx-c-button-secondary-color-hover);
|
|
146
156
|
}
|
|
147
157
|
|