@indico-data/design-system 1.0.32 → 1.0.34
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
CHANGED
|
@@ -12086,8 +12086,6 @@ function EditableInput(props) {
|
|
|
12086
12086
|
|
|
12087
12087
|
const inputCommon = css `
|
|
12088
12088
|
background-color: transparent;
|
|
12089
|
-
color: ${allColors.defaultFontColor};
|
|
12090
|
-
|
|
12091
12089
|
border-radius: 0;
|
|
12092
12090
|
border: 0 solid currentColor;
|
|
12093
12091
|
border-bottom-width: 1px;
|
|
@@ -12095,7 +12093,7 @@ const inputCommon = css `
|
|
|
12095
12093
|
&:focus,
|
|
12096
12094
|
&:hover,
|
|
12097
12095
|
&.filled {
|
|
12098
|
-
border-color: ${allColors.lightFontColor};
|
|
12096
|
+
// border-color: ${allColors.lightFontColor};
|
|
12099
12097
|
}
|
|
12100
12098
|
|
|
12101
12099
|
&:required {
|
|
@@ -12119,7 +12117,6 @@ const inputCommon = css `
|
|
|
12119
12117
|
const labelCommon = css `
|
|
12120
12118
|
font-size: ${typography.fontSize.base};
|
|
12121
12119
|
font-weight: bold;
|
|
12122
|
-
color: ${allColors.lightFontColor};
|
|
12123
12120
|
`;
|
|
12124
12121
|
const inputInfoCommon = css `
|
|
12125
12122
|
margin-top: 13px;
|