Fixed focus visual on InputChips
parent
00b90f8d7d
commit
64fe013436
|
@ -58,6 +58,12 @@ const theme = ({ dt }) => `
|
||||||
padding-top: calc(${dt('inputchips.padding.y')} / 2);
|
padding-top: calc(${dt('inputchips.padding.y')} / 2);
|
||||||
padding-bottom: calc(${dt('inputchips.padding.y')} / 2);
|
padding-bottom: calc(${dt('inputchips.padding.y')} / 2);
|
||||||
border-radius: ${dt('inputchips.chip.border.radius')};
|
border-radius: ${dt('inputchips.chip.border.radius')};
|
||||||
|
transition: background ${dt('transition.duration')}, color ${dt('transition.duration')};
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-inputchips-chip.p-focus .p-chip {
|
||||||
|
background: ${dt('inputchips.chip.focus.background')};
|
||||||
|
color: ${dt('inputchips.chip.focus.color')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-inputchips-input:has(.p-chip) {
|
.p-inputchips-input:has(.p-chip) {
|
||||||
|
|
|
@ -36,7 +36,7 @@ export default {
|
||||||
},
|
},
|
||||||
dark: {
|
dark: {
|
||||||
root: {
|
root: {
|
||||||
background: '{surface.700}',
|
background: '{surface.800}',
|
||||||
color: '{surface.0}'
|
color: '{surface.0}'
|
||||||
},
|
},
|
||||||
icon: {
|
icon: {
|
||||||
|
|
|
@ -25,5 +25,19 @@ export default {
|
||||||
},
|
},
|
||||||
chip: {
|
chip: {
|
||||||
borderRadius: '{border.radius.sm}'
|
borderRadius: '{border.radius.sm}'
|
||||||
|
},
|
||||||
|
colorScheme: {
|
||||||
|
light: {
|
||||||
|
chip: {
|
||||||
|
focusBackground: '{surface.200}',
|
||||||
|
color: '{surface.800}'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
dark: {
|
||||||
|
chip: {
|
||||||
|
focusBackground: '{surface.700}',
|
||||||
|
color: '{surface.0}'
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -36,7 +36,7 @@ export default {
|
||||||
},
|
},
|
||||||
dark: {
|
dark: {
|
||||||
root: {
|
root: {
|
||||||
background: '{surface.700}',
|
background: '{surface.800}',
|
||||||
color: '{surface.0}'
|
color: '{surface.0}'
|
||||||
},
|
},
|
||||||
icon: {
|
icon: {
|
||||||
|
|
|
@ -25,5 +25,19 @@ export default {
|
||||||
},
|
},
|
||||||
chip: {
|
chip: {
|
||||||
borderRadius: '{border.radius.xs}'
|
borderRadius: '{border.radius.xs}'
|
||||||
|
},
|
||||||
|
colorScheme: {
|
||||||
|
light: {
|
||||||
|
chip: {
|
||||||
|
focusBackground: '{surface.200}',
|
||||||
|
color: '{surface.800}'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
dark: {
|
||||||
|
chip: {
|
||||||
|
focusBackground: '{surface.700}',
|
||||||
|
color: '{surface.0}'
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -36,7 +36,7 @@ export default {
|
||||||
},
|
},
|
||||||
dark: {
|
dark: {
|
||||||
root: {
|
root: {
|
||||||
background: '{surface.700}',
|
background: '{surface.800}',
|
||||||
color: '{surface.0}'
|
color: '{surface.0}'
|
||||||
},
|
},
|
||||||
icon: {
|
icon: {
|
||||||
|
|
|
@ -25,5 +25,19 @@ export default {
|
||||||
},
|
},
|
||||||
chip: {
|
chip: {
|
||||||
borderRadius: '{border.radius.sm}'
|
borderRadius: '{border.radius.sm}'
|
||||||
|
},
|
||||||
|
colorScheme: {
|
||||||
|
light: {
|
||||||
|
chip: {
|
||||||
|
focusBackground: '{surface.200}',
|
||||||
|
color: '{surface.800}'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
dark: {
|
||||||
|
chip: {
|
||||||
|
focusBackground: '{surface.700}',
|
||||||
|
color: '{surface.0}'
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue