@indico-data/design-system 1.0.32 → 1.0.33
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
|
@@ -4,8 +4,6 @@ import { COLORS, TYPOGRAPHY } from '@/tokens';
|
|
|
4
4
|
|
|
5
5
|
export const inputCommon = css`
|
|
6
6
|
background-color: transparent;
|
|
7
|
-
color: ${COLORS.defaultFontColor};
|
|
8
|
-
|
|
9
7
|
border-radius: 0;
|
|
10
8
|
border: 0 solid currentColor;
|
|
11
9
|
border-bottom-width: 1px;
|
|
@@ -13,7 +11,7 @@ export const inputCommon = css`
|
|
|
13
11
|
&:focus,
|
|
14
12
|
&:hover,
|
|
15
13
|
&.filled {
|
|
16
|
-
border-color: ${COLORS.lightFontColor};
|
|
14
|
+
// border-color: ${COLORS.lightFontColor};
|
|
17
15
|
}
|
|
18
16
|
|
|
19
17
|
&:required {
|
|
@@ -38,7 +36,6 @@ export const inputCommon = css`
|
|
|
38
36
|
export const labelCommon = css`
|
|
39
37
|
font-size: ${TYPOGRAPHY.fontSize.base};
|
|
40
38
|
font-weight: bold;
|
|
41
|
-
color: ${COLORS.lightFontColor};
|
|
42
39
|
`;
|
|
43
40
|
|
|
44
41
|
export const inputInfoCommon = css`
|