@linzjs/lui 22.10.1 → 22.10.3-0
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/CHANGELOG.md +7 -0
- package/dist/components/LuiButton/LuiButton.d.ts +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/lui.css +58 -24
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +3 -1
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/Footer/footer.scss +1 -2
- package/dist/scss/Elements/Buttons/buttons.scss +15 -1
- package/package.json +1 -1
|
@@ -122,8 +122,6 @@
|
|
|
122
122
|
}
|
|
123
123
|
}
|
|
124
124
|
|
|
125
|
-
|
|
126
|
-
|
|
127
125
|
.lui-footer-nz-govt-logo,
|
|
128
126
|
.lui-footer-copyright {
|
|
129
127
|
text-align: left;
|
|
@@ -189,6 +187,7 @@ $FooterCopyWriteForceLineBreak: toRem(250px);
|
|
|
189
187
|
}
|
|
190
188
|
|
|
191
189
|
.luiAppFooter-columnOne {
|
|
190
|
+
//comment to commit old changes under fix prefix - works in Storybook, not in prod
|
|
192
191
|
display: grid;
|
|
193
192
|
grid-template-columns: 1fr;
|
|
194
193
|
column-gap: lui.$unit-md;
|
|
@@ -176,7 +176,8 @@ a.lui-button {
|
|
|
176
176
|
);
|
|
177
177
|
}
|
|
178
178
|
|
|
179
|
-
&-secondary
|
|
179
|
+
&-secondary,
|
|
180
|
+
&-warning {
|
|
180
181
|
// var $btnTxtCol, $btnBgCol, $borderCol, $myStrokeWeight : 2px, $myBtnLineHeight : 40px
|
|
181
182
|
@include button-builder(colors.$sea, #fff, colors.$sea);
|
|
182
183
|
// var $btnTxtColHover, $btnBgColHover, $borderColHover, $btnTxtColActive, $btnBgColActive, $borderColActive
|
|
@@ -199,6 +200,19 @@ a.lui-button {
|
|
|
199
200
|
}
|
|
200
201
|
}
|
|
201
202
|
|
|
203
|
+
&-warning {
|
|
204
|
+
i,
|
|
205
|
+
svg * {
|
|
206
|
+
fill: colors.$warning;
|
|
207
|
+
color: colors.$warning;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
&:hover i {
|
|
211
|
+
fill: colors.$warning-focus;
|
|
212
|
+
color: colors.$warning-focus;
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
202
216
|
&-tertiary {
|
|
203
217
|
@include button-builder(
|
|
204
218
|
colors.$sea,
|
package/package.json
CHANGED