@indico-data/design-system 1.0.33 → 1.0.35
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/lib/index.esm.js +1 -7
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +1 -7
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
- package/src/styles/globals/forms.ts +0 -3
package/lib/index.js
CHANGED
|
@@ -7159,12 +7159,9 @@ const Forms = styled.createGlobalStyle `
|
|
|
7159
7159
|
input:not([type]),
|
|
7160
7160
|
textarea {
|
|
7161
7161
|
appearance: none;
|
|
7162
|
-
background-color: ${allColors.clay};
|
|
7163
|
-
border: ${allColors.clay};
|
|
7164
7162
|
border-radius: 2px;
|
|
7165
7163
|
box-shadow: ${formBoxShadow};
|
|
7166
7164
|
box-sizing: border-box;
|
|
7167
|
-
color: ${allColors.defaultFontColor};
|
|
7168
7165
|
margin-bottom: ${typography.spacing.half};
|
|
7169
7166
|
padding: ${typography.spacing.third};
|
|
7170
7167
|
transition: border-color ${animation.duration} ${animation.timing};
|
|
@@ -12088,8 +12085,6 @@ function EditableInput(props) {
|
|
|
12088
12085
|
|
|
12089
12086
|
const inputCommon = styled.css `
|
|
12090
12087
|
background-color: transparent;
|
|
12091
|
-
color: ${allColors.defaultFontColor};
|
|
12092
|
-
|
|
12093
12088
|
border-radius: 0;
|
|
12094
12089
|
border: 0 solid currentColor;
|
|
12095
12090
|
border-bottom-width: 1px;
|
|
@@ -12097,7 +12092,7 @@ const inputCommon = styled.css `
|
|
|
12097
12092
|
&:focus,
|
|
12098
12093
|
&:hover,
|
|
12099
12094
|
&.filled {
|
|
12100
|
-
border-color: ${allColors.lightFontColor};
|
|
12095
|
+
// border-color: ${allColors.lightFontColor};
|
|
12101
12096
|
}
|
|
12102
12097
|
|
|
12103
12098
|
&:required {
|
|
@@ -12121,7 +12116,6 @@ const inputCommon = styled.css `
|
|
|
12121
12116
|
const labelCommon = styled.css `
|
|
12122
12117
|
font-size: ${typography.fontSize.base};
|
|
12123
12118
|
font-weight: bold;
|
|
12124
|
-
color: ${allColors.lightFontColor};
|
|
12125
12119
|
`;
|
|
12126
12120
|
const inputInfoCommon = styled.css `
|
|
12127
12121
|
margin-top: 13px;
|