@lucca-front/scss 7.3.0-rc.1 → 7.4.0-rc.1
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/dist/lucca-front.min.css +1 -1
- package/package.json +1 -1
- package/src/components/_breadcrumbs.scss +3 -7
- package/src/components/_button.scss +0 -1
- package/src/components/_form.scss +1 -1
- package/src/components/_menu.scss +4 -0
- package/src/components/_nav-side.scss +9 -3
- package/src/components/inputs/checkbox/_checkboxesfield.scss +5 -1
- package/src/components/inputs/field/_field.framed.scss +1 -1
- package/src/components/inputs/radio/_radiosfield.scss +5 -2
- package/src/components/inputs/textfield/_textfield.framed.scss +1 -1
- package/src/components/inputs/textfield/_textfield.outlined.scss +1 -1
- package/src/utilities/_flex.scss +16 -0
- package/src/utilities/_text.scss +12 -0
package/package.json
CHANGED
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
.breadcrumbs {
|
|
2
|
-
margin-bottom: _theme("spacings.smaller");
|
|
3
|
-
}
|
|
4
|
-
|
|
5
1
|
.breadcrumbs-list {
|
|
6
2
|
display: flex;
|
|
7
3
|
flex-wrap: wrap;
|
|
@@ -11,8 +7,10 @@
|
|
|
11
7
|
}
|
|
12
8
|
|
|
13
9
|
.breadcrumbs-list-item {
|
|
14
|
-
display: flex;
|
|
15
10
|
align-items: center;
|
|
11
|
+
display: flex;
|
|
12
|
+
font-size: _theme("sizes.small.font-size");
|
|
13
|
+
line-height: _theme("sizes.small.line-height");
|
|
16
14
|
|
|
17
15
|
&:not(:first-child) {
|
|
18
16
|
&::before {
|
|
@@ -60,8 +58,6 @@
|
|
|
60
58
|
// ▒▒▒▒
|
|
61
59
|
|
|
62
60
|
.breadcrumbs.mod-compact {
|
|
63
|
-
margin-bottom: 0;
|
|
64
|
-
|
|
65
61
|
.breadcrumbs-list-item {
|
|
66
62
|
// two items
|
|
67
63
|
&:nth-last-child(2):first-child,
|
|
@@ -140,7 +140,7 @@
|
|
|
140
140
|
clear: both;
|
|
141
141
|
}
|
|
142
142
|
|
|
143
|
-
&:not(.is-disabled, :disabled, .is-error, .is-success, .is-valid, .is-warning, .is-invalid
|
|
143
|
+
&:not(.is-disabled, :disabled, .is-error, .is-success, .is-valid, .is-warning, .is-invalid) {
|
|
144
144
|
&:hover,
|
|
145
145
|
&:focus {
|
|
146
146
|
position: relative;
|
|
@@ -108,9 +108,15 @@
|
|
|
108
108
|
.navSide-item-link {
|
|
109
109
|
font-size: _component("navSide.main-font-size");
|
|
110
110
|
font-weight: 600;
|
|
111
|
-
line-height:
|
|
112
|
-
padding:
|
|
111
|
+
line-height: 1rem;
|
|
112
|
+
padding: _theme("spacings.small");
|
|
113
|
+
width: 100%;
|
|
114
|
+
text-align: left;
|
|
115
|
+
border: 0;
|
|
116
|
+
background-color: transparent;
|
|
117
|
+
cursor: pointer;
|
|
113
118
|
|
|
119
|
+
&:focus-visible,
|
|
114
120
|
&:hover {
|
|
115
121
|
background-color: _component("navSide.fullwidth-palette.hovered-bg");
|
|
116
122
|
color: _component("navSide.fullwidth-palette.hovered-text");
|
|
@@ -374,7 +380,7 @@
|
|
|
374
380
|
flex-direction: row;
|
|
375
381
|
|
|
376
382
|
.navSide-item-link-title {
|
|
377
|
-
|
|
383
|
+
@include mask;
|
|
378
384
|
}
|
|
379
385
|
&:hover {
|
|
380
386
|
background-color: _component("navSide.bottom-section-palette.hovered-bg");
|
|
@@ -25,12 +25,16 @@
|
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
.form.mod-framed .checkboxesfield, .checkboxesfield.mod-framed {
|
|
28
|
-
@include field-framed("checkboxesfield");
|
|
29
28
|
display: block;
|
|
30
29
|
|
|
31
30
|
.checkboxesfield-input {
|
|
32
31
|
@extend %checkboxesfield-row;
|
|
33
32
|
}
|
|
33
|
+
|
|
34
|
+
fieldset {
|
|
35
|
+
border: none;
|
|
36
|
+
padding: 0;
|
|
37
|
+
}
|
|
34
38
|
}
|
|
35
39
|
|
|
36
40
|
%checkboxesfield-row {
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
.#{$fieldname}-input {
|
|
38
|
-
&:not(:disabled, .is-error, .is-success, .is-valid, .is-warning, .is-invalid
|
|
38
|
+
&:not(:disabled, .is-error, .is-success, .is-valid, .is-warning, .is-invalid) {
|
|
39
39
|
background-color: _color("white");
|
|
40
40
|
|
|
41
41
|
&:focus, &:hover {
|
|
@@ -31,13 +31,16 @@
|
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
.form.mod-framed .radiosfield, .radiosfield.mod-framed {
|
|
34
|
-
@include field-framed("radiosfield");
|
|
35
|
-
|
|
36
34
|
display: block;
|
|
37
35
|
|
|
38
36
|
.radiosfield-input {
|
|
39
37
|
@extend %radiosfield-row;
|
|
40
38
|
}
|
|
39
|
+
|
|
40
|
+
fieldset {
|
|
41
|
+
border: none;
|
|
42
|
+
padding: 0;
|
|
43
|
+
}
|
|
41
44
|
}
|
|
42
45
|
|
|
43
46
|
%radiosfield-row {
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
padding: _component("field.framed.top-padding") _component("field.framed.side-padding") _component("field.framed.bottom-padding");
|
|
65
65
|
line-height: _theme("sizes.standard.line-height");
|
|
66
66
|
|
|
67
|
-
&:not(:disabled, .is-error, .is-success, .is-valid, .is-warning, .is-invalid
|
|
67
|
+
&:not(:disabled, .is-error, .is-success, .is-valid, .is-warning, .is-invalid) {
|
|
68
68
|
background-color: _color("white");
|
|
69
69
|
|
|
70
70
|
&:hover,
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
.textfield-input:focus {
|
|
18
18
|
&:not([disabled], &[readonly], &.is-disabled, &.is-readonly) {
|
|
19
19
|
background-color: _color("white");
|
|
20
|
-
box-shadow: 0 0 0 4px _color($palette,
|
|
20
|
+
box-shadow: 0 0 0 4px _color($palette, 200), inset 0 0 0 _component("textfield.outlined.border.width") _color($palette, 600);
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
}
|
package/src/utilities/_flex.scss
CHANGED
|
@@ -162,3 +162,19 @@ $suffix: "!important" !default;
|
|
|
162
162
|
.#{$prefix}minWidth0 {
|
|
163
163
|
min-width: 0 #{$suffix};
|
|
164
164
|
}
|
|
165
|
+
|
|
166
|
+
// gap
|
|
167
|
+
|
|
168
|
+
@each $name, $value in $spacings {
|
|
169
|
+
.#{$prefix}gap#{str-capitalize($name)} {
|
|
170
|
+
gap: _theme("spacings." + $name) #{$suffix};
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.#{$prefix}columnGap#{str-capitalize($name)} {
|
|
174
|
+
column-gap: _theme("spacings." + $name) #{$suffix};
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.#{$prefix}rowGap#{str-capitalize($name)} {
|
|
178
|
+
row-gap: _theme("spacings." + $name) #{$suffix};
|
|
179
|
+
}
|
|
180
|
+
}
|
package/src/utilities/_text.scss
CHANGED
|
@@ -62,6 +62,18 @@ $suffix: "!important";
|
|
|
62
62
|
color: _color("text.placeholder") #{$suffix};
|
|
63
63
|
}
|
|
64
64
|
|
|
65
|
+
.u-textGrey900 {
|
|
66
|
+
color: _color("grey", "900");
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.u-textGrey700 {
|
|
70
|
+
color: _color("grey", "700");
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.u-textGrey600 {
|
|
74
|
+
color: _color("grey", "600");
|
|
75
|
+
}
|
|
76
|
+
|
|
65
77
|
// palette
|
|
66
78
|
@each $name, $palette in _getMap("palettes") {
|
|
67
79
|
.u-text#{str-capitalize($name)} {
|