@lucca-front/scss 21.1.0-split.0 → 21.1.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/dist/lucca-front.min.css +1 -1
- package/package.json +3 -3
- package/src/commons/core.scss +24 -6
- package/src/commons/utils/media.scss +12 -1
- package/src/components/_sample/index.scss +0 -2
- package/src/components/appLayout/component.scss +1 -0
- package/src/components/appLayout/index.scss +5 -0
- package/src/components/appLayout/mods.scss +4 -0
- package/src/components/bubbleIcon/vars.scss +1 -1
- package/src/components/callout/component.scss +0 -1
- package/src/components/clear/index.scss +1 -2
- package/src/components/dataTable/index.scss +1 -1
- package/src/components/dialog/component.scss +1 -1
- package/src/components/dialog/index.scss +4 -0
- package/src/components/dialog/mods.scss +5 -0
- package/src/components/dialog/vars.scss +2 -2
- package/src/components/dropdown/index.scss +5 -5
- package/src/components/errorPage/component.scss +42 -58
- package/src/components/errorPage/index.scss +4 -0
- package/src/components/errorPage/mods.scss +38 -0
- package/src/components/fieldset/component.scss +5 -0
- package/src/components/fieldset/index.scss +7 -0
- package/src/components/fieldset/mods.scss +4 -0
- package/src/components/fieldset/vars.scss +1 -0
- package/src/components/filterPill/component.scss +12 -1
- package/src/components/form/component.scss +1 -1
- package/src/components/form/index.scss +6 -3
- package/src/components/highlightData/component.scss +2 -0
- package/src/components/highlightData/mods.scss +3 -2
- package/src/components/highlightData/vars.scss +3 -2
- package/src/components/index.scss +2 -0
- package/src/components/inputFramed/component.scss +16 -11
- package/src/components/inputFramed/mods.scss +0 -1
- package/src/components/inputFramed/vars.scss +0 -1
- package/src/components/mainLayout/component.scss +2 -2
- package/src/components/multiSelect/mods.scss +1 -1
- package/src/components/navside/component.scss +4 -0
- package/src/components/pageHeader/component.scss +1 -1
- package/src/components/presentation/component.scss +53 -0
- package/src/components/presentation/exports.scss +4 -0
- package/src/components/presentation/index.scss +12 -0
- package/src/components/presentation/mods.scss +0 -0
- package/src/components/presentation/states.scss +0 -0
- package/src/components/presentation/vars.scss +4 -0
- package/src/components/simpleSelect/component.scss +2 -0
- package/src/components/simpleSelect/mods.scss +1 -1
- package/src/components/simpleSelect/states.scss +2 -2
- package/src/components/softwareIcon/component.scss +18 -0
- package/src/components/softwareIcon/exports.scss +4 -0
- package/src/components/softwareIcon/index.scss +30 -0
- package/src/components/softwareIcon/mods.scss +15 -0
- package/src/components/softwareIcon/states.scss +8 -0
- package/src/components/softwareIcon/vars.scss +3 -0
- package/src/components/timepicker/component.scss +8 -6
- package/src/components/timepicker/mods.scss +4 -3
- package/src/components/timepicker/vars.scss +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lucca-front/scss",
|
|
3
|
-
"version": "21.1.0
|
|
3
|
+
"version": "21.1.0",
|
|
4
4
|
"description": "A Sass framework for Lucca products.",
|
|
5
5
|
"main": "src/main.scss",
|
|
6
6
|
"scripts": {},
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"normalize.css": "^8.0.0"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
|
-
"@lucca-front/icons": "21.1.0
|
|
27
|
-
"@lucca/prisme": "21.1.0
|
|
26
|
+
"@lucca-front/icons": "21.1.0",
|
|
27
|
+
"@lucca/prisme": "21.1.0"
|
|
28
28
|
}
|
|
29
29
|
}
|
package/src/commons/core.scss
CHANGED
|
@@ -34,9 +34,15 @@ $cursor: 'pointer', 'auto', 'default', 'text';
|
|
|
34
34
|
// Tokens
|
|
35
35
|
|
|
36
36
|
@mixin spacing($boxModel, $boxDirection, $key, $value, $suffix: '!important') {
|
|
37
|
+
$boxDirectionString: '-';
|
|
38
|
+
|
|
39
|
+
@if $boxDirection == '' {
|
|
40
|
+
$boxDirectionString: '';
|
|
41
|
+
}
|
|
42
|
+
|
|
37
43
|
@if $boxModel != 'inset' or ($boxDirection != 'top' and $boxDirection != 'bottom' and $boxDirection != 'left' and $boxDirection != 'right') {
|
|
38
44
|
.pr-u-#{transform.camelize($boxModel)}#{transform.capitalize(transform.camelize($boxDirection))}#{transform.capitalize($key)} {
|
|
39
|
-
#{$boxModel}#{
|
|
45
|
+
#{$boxModel}#{$boxDirectionString}#{$boxDirection}: var(--pr-t-spacings-#{$key}) #{$suffix};
|
|
40
46
|
}
|
|
41
47
|
}
|
|
42
48
|
}
|
|
@@ -75,31 +81,43 @@ $cursor: 'pointer', 'auto', 'default', 'text';
|
|
|
75
81
|
|
|
76
82
|
@mixin cssvars($name, $properties, $after: '') {
|
|
77
83
|
@each $key, $value in $properties {
|
|
78
|
-
|
|
84
|
+
$keyString: '-';
|
|
85
|
+
|
|
86
|
+
@if $key == '' {
|
|
87
|
+
$keyString: '';
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
--#{$name}#{$keyString}#{$key}#{$after}: #{$value};
|
|
79
91
|
}
|
|
80
92
|
}
|
|
81
93
|
|
|
82
94
|
@mixin classes($name, $properties, $suffix: '!important', $prefix: '') {
|
|
83
95
|
@each $property in $properties {
|
|
96
|
+
$minusString: '';
|
|
97
|
+
|
|
98
|
+
@if string.slice($property, 1, 1) == '-' {
|
|
99
|
+
$minusString: 'Minus';
|
|
100
|
+
}
|
|
101
|
+
|
|
84
102
|
@if $prefix == '' {
|
|
85
|
-
.pr-u-#{transform.camelize($name)}#{
|
|
103
|
+
.pr-u-#{transform.camelize($name)}#{$minusString}#{transform.capitalize(transform.camelize($property))} {
|
|
86
104
|
#{$name}: #{transform.replace($property, '\\', '')} #{$suffix};
|
|
87
105
|
}
|
|
88
106
|
|
|
89
107
|
// Deprecated .u- utilities
|
|
90
108
|
@if config.$deprecatedUtilityPrefix {
|
|
91
|
-
.u-#{transform.camelize($name)}#{
|
|
109
|
+
.u-#{transform.camelize($name)}#{$minusString}#{transform.capitalize(transform.camelize($property))} {
|
|
92
110
|
#{$name}: #{transform.replace($property, '\\', '')} #{$suffix};
|
|
93
111
|
}
|
|
94
112
|
}
|
|
95
113
|
} @else {
|
|
96
|
-
.pr-u-#{$prefix}#{transform.capitalize(transform.camelize($name))}#{
|
|
114
|
+
.pr-u-#{$prefix}#{transform.capitalize(transform.camelize($name))}#{$minusString}#{transform.capitalize(transform.camelize($property))} {
|
|
97
115
|
#{$name}: #{transform.replace($property, '\\', '')} #{$suffix};
|
|
98
116
|
}
|
|
99
117
|
|
|
100
118
|
// Deprecated .u- utilities
|
|
101
119
|
@if config.$deprecatedUtilityPrefix {
|
|
102
|
-
.u-#{$prefix}#{transform.capitalize(transform.camelize($name))}#{
|
|
120
|
+
.u-#{$prefix}#{transform.capitalize(transform.camelize($name))}#{$minusString}#{transform.capitalize(transform.camelize($property))} {
|
|
103
121
|
#{$name}: #{transform.replace($property, '\\', '')} #{$suffix};
|
|
104
122
|
}
|
|
105
123
|
}
|
|
@@ -126,8 +126,19 @@
|
|
|
126
126
|
}
|
|
127
127
|
|
|
128
128
|
@mixin pointer($query, $any: false, $reversed: false) {
|
|
129
|
+
$mediaString: 'media';
|
|
130
|
+
$anyString: '';
|
|
131
|
+
|
|
132
|
+
@if $reversed {
|
|
133
|
+
$mediaString: 'media not';
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
@if $any {
|
|
137
|
+
$anyString: 'any-';
|
|
138
|
+
}
|
|
139
|
+
|
|
129
140
|
// stylelint-disable-next-line scss/at-rule-no-unknown
|
|
130
|
-
@#{
|
|
141
|
+
@#{$mediaString} (#{$anyString}pointer: #{$query}) {
|
|
131
142
|
@content;
|
|
132
143
|
}
|
|
133
144
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@mixin vars {
|
|
2
2
|
--components-bubbleIcon-size: var(--pr-t-spacings-500);
|
|
3
|
-
--components-bubbleIcon-color: var(--palettes-
|
|
3
|
+
--components-bubbleIcon-color: var(--palettes-700, var(--palettes-product-700));
|
|
4
4
|
--components-bubbleIcon-bubble-path-fill: var(--palettes-100, var(--palettes-product-100));
|
|
5
5
|
--components-bubbleIcon-bubble-pathBlock-display: none;
|
|
6
6
|
--components-bubbleIcon-bubble-pathInline-display: inherit;
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
box-shadow: var(--pr-t-elevation-shadow-overlay);
|
|
16
16
|
margin: auto;
|
|
17
17
|
flex-direction: column;
|
|
18
|
-
display: flex
|
|
18
|
+
display: flex;
|
|
19
19
|
position: fixed !important;
|
|
20
20
|
max-inline-size: var(--components-dialog-maxWidth) !important;
|
|
21
21
|
max-block-size: var(--components-dialog-maxHeight) !important;
|
|
@@ -8,12 +8,12 @@
|
|
|
8
8
|
--components-dialog-borderRadius: var(--pr-t-border-radius-structure);
|
|
9
9
|
--components-dialog-inset: 0;
|
|
10
10
|
--components-dialog-animationOpening: scaleIn;
|
|
11
|
-
--components-dialog-insideHeaderAreas: 'container
|
|
11
|
+
--components-dialog-insideHeaderAreas: 'container close';
|
|
12
12
|
--components-dialog-insideHeaderTitleAlign: left;
|
|
13
13
|
--components-dialog-insideHeaderTitlePadding: calc(var(--pr-t-spacings-50) / 2) 0;
|
|
14
14
|
--components-dialog-insideHeaderButtonDisplay: flex;
|
|
15
15
|
--components-dialog-insideHeaderLinkDisplay: none;
|
|
16
|
-
--components-dialog-insideHeaderColumns: 1fr auto
|
|
16
|
+
--components-dialog-insideHeaderColumns: 1fr auto;
|
|
17
17
|
--components-dialog-insideContent-background: transparent;
|
|
18
18
|
--components-dialog-level: 0;
|
|
19
19
|
--components-dialog-translate-spacing: var(--pr-t-spacings-500);
|
|
@@ -13,14 +13,14 @@
|
|
|
13
13
|
.dropdown-list-option-action,
|
|
14
14
|
.lu-dropdown-options-item-action {
|
|
15
15
|
@layer mods {
|
|
16
|
-
&[disabled],
|
|
17
|
-
&.is-disabled {
|
|
18
|
-
@include disabled;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
16
|
&.mod-critical,
|
|
22
17
|
&.mod-delete {
|
|
23
18
|
@include critical;
|
|
24
19
|
}
|
|
20
|
+
|
|
21
|
+
&[disabled],
|
|
22
|
+
&.is-disabled {
|
|
23
|
+
@include disabled;
|
|
24
|
+
}
|
|
25
25
|
}
|
|
26
26
|
}
|
|
@@ -1,66 +1,50 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use '@lucca-front/scss/src/commons/utils/namespace';
|
|
2
|
+
|
|
3
|
+
@mixin component($atRoot: namespace.$defaultAtRoot) {
|
|
2
4
|
background-color: var(--components-errorPage-background);
|
|
3
5
|
block-size: 100vh;
|
|
4
6
|
inline-size: 100vw;
|
|
5
7
|
line-height: 1.2;
|
|
6
8
|
overflow: hidden;
|
|
7
9
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
@mixin compact {
|
|
49
|
-
overflow-y: auto;
|
|
50
|
-
|
|
51
|
-
.errorPage-section {
|
|
52
|
-
flex-direction: column;
|
|
53
|
-
justify-content: center;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.errorPage-section-info {
|
|
57
|
-
margin-block: var(--pr-t-spacings-400);
|
|
58
|
-
order: 1;
|
|
59
|
-
padding: 0;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.errorPage-section-image {
|
|
63
|
-
margin-block-start: var(--pr-t-spacings-400);
|
|
64
|
-
order: 0;
|
|
10
|
+
@at-root ($atRoot) {
|
|
11
|
+
.errorPage-section {
|
|
12
|
+
block-size: 100%;
|
|
13
|
+
max-inline-size: 1200px;
|
|
14
|
+
padding-block: 0;
|
|
15
|
+
padding-inline: var(--pr-t-spacings-400);
|
|
16
|
+
inline-size: 100vw;
|
|
17
|
+
margin-block: 0;
|
|
18
|
+
margin-inline: auto;
|
|
19
|
+
display: flex;
|
|
20
|
+
justify-content: space-between;
|
|
21
|
+
align-items: center;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.errorPage-section-info {
|
|
25
|
+
margin-block-start: 10vh;
|
|
26
|
+
max-inline-size: 90vw;
|
|
27
|
+
inline-size: 450px;
|
|
28
|
+
padding-inline-end: var(--pr-t-spacings-400);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.errorPage-section-info-title {
|
|
32
|
+
font: var(--pr-t-font-heading-1);
|
|
33
|
+
margin-block-end: var(--pr-t-spacings-50);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.errorPage-section-info-text {
|
|
37
|
+
font-size: var(--pr-t-font-body-1-fontSize);
|
|
38
|
+
line-height: var(--pr-t-font-body-1-lineHeight);
|
|
39
|
+
margin-block-end: var(--pr-t-spacings-150);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.errorPage-section-image {
|
|
43
|
+
margin-block-start: 10vh;
|
|
44
|
+
inline-size: 50%;
|
|
45
|
+
max-inline-size: 580px;
|
|
46
|
+
min-inline-size: 350px;
|
|
47
|
+
block-size: auto;
|
|
48
|
+
}
|
|
65
49
|
}
|
|
66
50
|
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
@mixin compact {
|
|
2
|
+
overflow-y: auto;
|
|
3
|
+
|
|
4
|
+
.errorPage-section {
|
|
5
|
+
flex-direction: column;
|
|
6
|
+
justify-content: center;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.errorPage-section-info {
|
|
10
|
+
margin-block: var(--pr-t-spacings-400);
|
|
11
|
+
order: 1;
|
|
12
|
+
padding: 0;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.errorPage-section-image {
|
|
16
|
+
margin-block-start: var(--pr-t-spacings-400);
|
|
17
|
+
order: 0;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
@mixin inAppLayout {
|
|
22
|
+
&,
|
|
23
|
+
.errorPage-section {
|
|
24
|
+
block-size: 100%;
|
|
25
|
+
inline-size: 100%;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.errorPage-section {
|
|
29
|
+
gap: var(--pr-t-spacings-400);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.errorPage-section-image,
|
|
33
|
+
.errorPage-section-info {
|
|
34
|
+
margin-block-start: 0;
|
|
35
|
+
padding: 0;
|
|
36
|
+
max-inline-size: 100%;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -17,6 +17,10 @@
|
|
|
17
17
|
inline-size: 100%;
|
|
18
18
|
min-block-size: var(--pr-t-spacings-300);
|
|
19
19
|
display: contents;
|
|
20
|
+
|
|
21
|
+
&:has(.fieldset-title-content-text:empty) {
|
|
22
|
+
display: none;
|
|
23
|
+
}
|
|
20
24
|
}
|
|
21
25
|
|
|
22
26
|
.fieldset-title-content {
|
|
@@ -27,6 +31,7 @@
|
|
|
27
31
|
background-color: transparent;
|
|
28
32
|
text-align: start;
|
|
29
33
|
display: flex;
|
|
34
|
+
flex-wrap: var(--components-fieldset-title-content-flexWrap);
|
|
30
35
|
align-items: flex-start;
|
|
31
36
|
justify-content: space-between;
|
|
32
37
|
gap: var(--components-fieldset-gap);
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
@use '@lucca-front/scss/src/commons/utils/media';
|
|
2
|
+
|
|
1
3
|
@use 'exports' as *;
|
|
2
4
|
|
|
3
5
|
.fieldset {
|
|
@@ -26,5 +28,10 @@
|
|
|
26
28
|
&:has(.fieldset-title-content-action:not(:empty)) {
|
|
27
29
|
@include withAction;
|
|
28
30
|
}
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
@include media.max('XXS') {
|
|
34
|
+
@include narrow;
|
|
35
|
+
}
|
|
29
36
|
}
|
|
30
37
|
}
|
|
@@ -40,7 +40,18 @@
|
|
|
40
40
|
|
|
41
41
|
.filterPill_popover-content-option {
|
|
42
42
|
padding: var(--pr-t-spacings-50) var(--pr-t-spacings-100);
|
|
43
|
-
border-radius: var(--pr-t-border-radius-
|
|
43
|
+
border-radius: var(--pr-t-border-radius-default);
|
|
44
|
+
position: relative;
|
|
45
|
+
|
|
46
|
+
.formLabel {
|
|
47
|
+
position: static;
|
|
48
|
+
|
|
49
|
+
&::before {
|
|
50
|
+
content: '';
|
|
51
|
+
position: absolute;
|
|
52
|
+
inset: 0;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
44
55
|
|
|
45
56
|
&:hover {
|
|
46
57
|
background-color: var(--palettes-neutral-50);
|
|
@@ -102,9 +102,12 @@
|
|
|
102
102
|
}
|
|
103
103
|
}
|
|
104
104
|
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
105
|
+
// no gap for checkboxes in tables in particular
|
|
106
|
+
&:has(.checkboxField-input) {
|
|
107
|
+
&:has(.formLabel.pr-u-mask) {
|
|
108
|
+
&:not(:has(.inlineMessage)) {
|
|
109
|
+
@include hiddenLabel;
|
|
110
|
+
}
|
|
108
111
|
}
|
|
109
112
|
}
|
|
110
113
|
}
|
|
@@ -32,9 +32,11 @@
|
|
|
32
32
|
grid-area: value;
|
|
33
33
|
font: var(--components-highlightData-value-font);
|
|
34
34
|
order: var(--components-highlightData-value-order);
|
|
35
|
+
color: var(--pr-t-color-text-heading);
|
|
35
36
|
}
|
|
36
37
|
|
|
37
38
|
.highlightData-content-subText {
|
|
39
|
+
grid-area: subtext;
|
|
38
40
|
font: var(--pr-t-font-body-XS);
|
|
39
41
|
color: var(--pr-t-color-text-subtle);
|
|
40
42
|
margin-block-start: var(--pr-t-spacings-100) !important; // Override list reset
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
@mixin vars {
|
|
2
2
|
--components-highlightData-display: grid;
|
|
3
|
-
--components-highlightData-grid: 'title
|
|
4
|
-
|
|
3
|
+
--components-highlightData-grid: 'title action'
|
|
4
|
+
'value action'
|
|
5
|
+
'subtext action';
|
|
5
6
|
--components-highlightData-alignItem: center;
|
|
6
7
|
--components-highlightData-background: var(--pr-t-elevation-surface-raised);
|
|
7
8
|
--components-highlightData-padding-inline: var(--pr-t-spacings-200);
|
|
@@ -110,9 +110,11 @@
|
|
|
110
110
|
@forward 'listboxOption';
|
|
111
111
|
@forward 'suggestion';
|
|
112
112
|
@forward 'resourceCard';
|
|
113
|
+
@forward 'presentation';
|
|
113
114
|
@forward 'color';
|
|
114
115
|
@forward 'bubbleIllustration';
|
|
115
116
|
@forward 'bubbleIcon';
|
|
117
|
+
@forward 'softwareIcon';
|
|
116
118
|
|
|
117
119
|
@forward 'filterBarDeprecated';
|
|
118
120
|
@forward 'tableFixedDeprecated';
|
|
@@ -13,18 +13,12 @@
|
|
|
13
13
|
display: flex;
|
|
14
14
|
flex-direction: column;
|
|
15
15
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
&::after {
|
|
22
|
-
content: '';
|
|
23
|
-
position: absolute;
|
|
24
|
-
inset: calc(var(--pr-t-spacings-50) * -1);
|
|
25
|
-
}
|
|
26
|
-
}
|
|
16
|
+
.formLabel-info {
|
|
17
|
+
position: relative;
|
|
18
|
+
z-index: 1;
|
|
19
|
+
}
|
|
27
20
|
|
|
21
|
+
@at-root ($atRoot) {
|
|
28
22
|
.inputFramed-header-field {
|
|
29
23
|
flex: 1;
|
|
30
24
|
|
|
@@ -48,6 +42,17 @@
|
|
|
48
42
|
align-content: flex-start;
|
|
49
43
|
gap: var(--pr-t-spacings-100);
|
|
50
44
|
align-items: var(--components-inputFramed-header-alignItems);
|
|
45
|
+
|
|
46
|
+
.inputFramed-header-label.formLabel {
|
|
47
|
+
position: static;
|
|
48
|
+
font-weight: var(--pr-t-font-fontWeight-semibold);
|
|
49
|
+
|
|
50
|
+
&::after {
|
|
51
|
+
content: '';
|
|
52
|
+
position: absolute;
|
|
53
|
+
inset: calc(var(--pr-t-spacings-50) * -1);
|
|
54
|
+
}
|
|
55
|
+
}
|
|
51
56
|
}
|
|
52
57
|
|
|
53
58
|
.inputFramed-header-illustration {
|
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
@mixin L {
|
|
6
|
-
--components-inputFramed-header-label-fontWeight: var(--pr-t-font-fontWeight-semibold);
|
|
7
6
|
--components-inputFramed-padding: var(--pr-t-spacings-50);
|
|
8
7
|
--components-inputFramed-header-padding: var(--pr-t-spacings-150);
|
|
9
8
|
--components-inputFramed-content-padding: var(--pr-t-spacings-150);
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
--components-inputFramed-content-marginBlockStart: var(--pr-t-spacings-25);
|
|
10
10
|
--components-inputFramed-header-backgroundColor: transparent;
|
|
11
11
|
--components-inputFramed-header-alignItems: normal;
|
|
12
|
-
--components-inputFramed-header-label-fontWeight: var(--pr-t-font-fontWeight-regular);
|
|
13
12
|
--components-inputFramed-header-info-color: inherit;
|
|
14
13
|
--components-inputFramed-header-info-marginBlockStart: 0;
|
|
15
14
|
--components-inputFramed-header-info-paddingBlockStart: var(--pr-t-spacings-100);
|
|
@@ -75,11 +75,11 @@
|
|
|
75
75
|
--components-mainLayout-content-inside-block-firstLastOfType-marginBlock: var(--pr-t-spacings-300);
|
|
76
76
|
}
|
|
77
77
|
|
|
78
|
-
&:
|
|
78
|
+
&:not(& + &) {
|
|
79
79
|
margin-block-start: var(--components-mainLayout-content-inside-block-firstLastOfType-marginBlock);
|
|
80
80
|
}
|
|
81
81
|
|
|
82
|
-
&:
|
|
82
|
+
&:not(:has(+ &)) {
|
|
83
83
|
margin-block-end: var(--components-mainLayout-content-inside-block-firstLastOfType-marginBlock);
|
|
84
84
|
}
|
|
85
85
|
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
border-radius: 0;
|
|
62
62
|
background-color: transparent;
|
|
63
63
|
padding: var(--pr-t-spacings-50);
|
|
64
|
-
margin: var(--pr-t-spacings-
|
|
64
|
+
margin: var(--pr-t-spacings-75) calc(var(--pr-t-spacings-100) * -1) calc(var(--pr-t-spacings-100) * -1);
|
|
65
65
|
|
|
66
66
|
lu-simple-select-default-option.pr-u-ellipsis {
|
|
67
67
|
white-space: normal !important;
|