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