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