Skip to content

Commit b2328b5

Browse files
committed
Fix checkbox design in file manager
1 parent 4719124 commit b2328b5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

resources/scripts/components/elements/Input.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const light = css<Props>`
1616
`;
1717

1818
const checkboxStyle = css<Props>`
19-
${tw`cursor-pointer appearance-none inline-block align-middle select-none flex-shrink-0 w-4 h-4 text-primary-400 border border-neutral-300 rounded-sm`};
19+
${tw`bg-neutral-500 cursor-pointer appearance-none inline-block align-middle select-none flex-shrink-0 w-4 h-4 text-primary-400 border border-neutral-300 rounded-sm`};
2020
color-adjust: exact;
2121
background-origin: border-box;
2222
transition: all 75ms linear, box-shadow 25ms linear;

resources/scripts/components/server/files/SelectFileCheckbox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import Input from '@/components/elements/Input';
66

77
export const FileActionCheckbox = styled(Input)`
88
&& {
9-
${tw`border-neutral-500`};
9+
${tw`border-neutral-500 bg-transparent`};
1010
1111
&:not(:checked) {
1212
${tw`hover:border-neutral-300`};

0 commit comments

Comments
 (0)