mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 04:50:36 +03:00
Fix input colors
This commit is contained in:
parent
0ab5622756
commit
7430041f7b
|
@ -17,9 +17,8 @@ function InfoCstClass({ title }: InfoCstClassProps) {
|
|||
return (
|
||||
<p key={`${prefixes.cst_status_list}${index}`}>
|
||||
<span
|
||||
className='px-1 inline-block font-semibold min-w-[7rem] text-center border'
|
||||
className='px-1 inline-block font-semibold min-w-[7rem] text-center border text-sm'
|
||||
style={{backgroundColor: getCstClassColor(cstClass, colors)}}
|
||||
|
||||
>
|
||||
{info.text}
|
||||
</span>
|
||||
|
|
|
@ -17,7 +17,7 @@ function InfoCstStatus({ title }: InfoCstStatusProps) {
|
|||
return (
|
||||
<p key={`${prefixes.cst_status_list}${index}`}>
|
||||
<span
|
||||
className='px-1 inline-block font-semibold min-w-[5rem] text-center border'
|
||||
className='px-1 inline-block font-semibold min-w-[5rem] text-center border text-sm'
|
||||
style={{backgroundColor: getCstStatusColor(status, colors)}}
|
||||
>
|
||||
{info.text}
|
||||
|
|
|
@ -69,7 +69,7 @@ function RSInput({
|
|||
theme: 'light',
|
||||
settings: {
|
||||
fontFamily: 'inherit',
|
||||
background: editable ? colors.bgInput : colors.bgDisabled,
|
||||
background: editable ? colors.bgInput : colors.bgDefault,
|
||||
foreground: colors.fgDefault,
|
||||
selection: colors.bgHover
|
||||
},
|
||||
|
@ -89,7 +89,7 @@ function RSInput({
|
|||
theme: 'dark',
|
||||
settings: {
|
||||
fontFamily: 'inherit',
|
||||
background: editable ? colors.bgInput : colors.bgDisabled,
|
||||
background: editable ? colors.bgInput : colors.bgDefault,
|
||||
foreground: colors.fgDefault,
|
||||
selection: colors.bgHover
|
||||
},
|
||||
|
|
|
@ -114,7 +114,8 @@
|
|||
.clr-footer,
|
||||
.clr-modal-backdrop,
|
||||
.clr-btn-nav,
|
||||
.clr-checkbox
|
||||
.clr-checkbox,
|
||||
.clr-input:disabled
|
||||
) {
|
||||
background-color: var(--cl-bg-100);
|
||||
.dark & {
|
||||
|
@ -162,7 +163,6 @@
|
|||
}
|
||||
|
||||
:is(.clr-disabled,
|
||||
.clr-input,
|
||||
.clr-btn-default,
|
||||
.clr-btn-primary
|
||||
):disabled {
|
||||
|
|
Loading…
Reference in New Issue
Block a user