1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-11-22 00:52:43 +01:00

ui: add read-only styling to Input element

This commit is contained in:
Matthew Penner 2023-01-13 11:59:11 -07:00
parent e88197c4b1
commit f6cf4a1236
No known key found for this signature in database

View File

@ -62,7 +62,14 @@ const inputStyle = css<Props>`
${tw`opacity-75`};
}
${props => props.isLight && light};
${props =>
props.isLight
? light
: css`
&:not(.ignoreReadOnly):read-only {
${tw`border-neutral-800 bg-neutral-900`};
}
`};
${props => props.hasError && tw`text-red-100 border-red-400 hover:border-red-300`};
`;