@politicalwatch/tipi-uikit 1.9.22 → 1.9.23
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 +1 -1
- package/src/styles/03_generic/_generic__global.scss +1 -1
- package/src/styles/04_base/_base__forms.scss +5 -6
- package/src/styles/06_components/_components__forms.scss +8 -8
- package/src/styles/06_components/_components__initiative-card.scss +1 -1
- package/src/styles/07_trumps/_trumps__texts.scss +1 -1
- package/src/styles/main.scss +3 -3
package/package.json
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
input {
|
|
2
|
-
|
|
3
|
-
&[type=
|
|
4
|
-
&[type=
|
|
5
|
-
|
|
6
|
-
@include tbody;
|
|
2
|
+
&[type='text'],
|
|
3
|
+
&[type='email'],
|
|
4
|
+
&[type='password'] {
|
|
5
|
+
@include mixins.tbody;
|
|
7
6
|
|
|
8
7
|
display: block;
|
|
9
8
|
width: 100%;
|
|
@@ -17,7 +16,7 @@ input {
|
|
|
17
16
|
}
|
|
18
17
|
|
|
19
18
|
textarea {
|
|
20
|
-
@include tbody;
|
|
19
|
+
@include mixins.tbody;
|
|
21
20
|
|
|
22
21
|
display: block;
|
|
23
22
|
width: 100%;
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
padding: rem($spacer-unit * 2);
|
|
6
6
|
|
|
7
7
|
input {
|
|
8
|
-
@include tbody;
|
|
8
|
+
@include mixins.tbody;
|
|
9
9
|
|
|
10
10
|
outline: none;
|
|
11
11
|
border: none;
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
padding: 0;
|
|
15
15
|
|
|
16
16
|
&::placeholder {
|
|
17
|
-
@include tbody;
|
|
17
|
+
@include mixins.tbody;
|
|
18
18
|
|
|
19
19
|
color: $secondary;
|
|
20
20
|
}
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
}
|
|
81
81
|
|
|
82
82
|
select {
|
|
83
|
-
@include tbody;
|
|
83
|
+
@include mixins.tbody;
|
|
84
84
|
|
|
85
85
|
outline: none;
|
|
86
86
|
border: none;
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
width: 110%;
|
|
92
92
|
|
|
93
93
|
&::placeholder {
|
|
94
|
-
@include tbody;
|
|
94
|
+
@include mixins.tbody;
|
|
95
95
|
|
|
96
96
|
color: $secondary;
|
|
97
97
|
}
|
|
@@ -128,7 +128,7 @@
|
|
|
128
128
|
|
|
129
129
|
&__single,
|
|
130
130
|
&__placeholder {
|
|
131
|
-
@include tbody;
|
|
131
|
+
@include mixins.tbody;
|
|
132
132
|
|
|
133
133
|
margin: 0;
|
|
134
134
|
padding: 0;
|
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
}
|
|
166
166
|
|
|
167
167
|
&__option {
|
|
168
|
-
@include tbody;
|
|
168
|
+
@include mixins.tbody;
|
|
169
169
|
|
|
170
170
|
display: block;
|
|
171
171
|
border: solid 1px $secondary;
|
|
@@ -267,7 +267,7 @@
|
|
|
267
267
|
position: relative;
|
|
268
268
|
|
|
269
269
|
input {
|
|
270
|
-
@include tbody;
|
|
270
|
+
@include mixins.tbody;
|
|
271
271
|
|
|
272
272
|
outline: none;
|
|
273
273
|
border: none;
|
|
@@ -278,7 +278,7 @@
|
|
|
278
278
|
padding: 0;
|
|
279
279
|
|
|
280
280
|
&::placeholder {
|
|
281
|
-
@include tbody;
|
|
281
|
+
@include mixins.tbody;
|
|
282
282
|
|
|
283
283
|
color: $secondary;
|
|
284
284
|
}
|
package/src/styles/main.scss
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
@use '01_settings/settings__variables'
|
|
1
|
+
@use '01_settings/settings__variables';
|
|
2
2
|
@use '01_settings/settings__breakpoints';
|
|
3
3
|
@use '01_settings/settings__colors';
|
|
4
4
|
@use '01_settings/settings__fonts';
|
|
5
5
|
@use '01_settings/settings__icons';
|
|
6
|
-
@use '02_tools/tools__functions'
|
|
7
|
-
@use '02_tools/tools__mixins' as
|
|
6
|
+
@use '02_tools/tools__functions';
|
|
7
|
+
@use '02_tools/tools__mixins' as mixins;
|
|
8
8
|
@use '03_generic/generic__normalize';
|
|
9
9
|
@use '03_generic/generic__box-sizing';
|
|
10
10
|
@use '03_generic/generic__global';
|