mirror of
https://github.com/strapi/strapi.git
synced 2025-08-16 20:57:34 +00:00

Move click action to wrapper (parent) to allow clicks on whole area of checkbox. Also update the highlighting and visibility on hover of configuration wheel for better usability. This way the user learns that clicking on the item or wheel opens the configuration and clicking on the text or checkbox toggles the checkbox. Signed-off-by: Christos Malliaridis <c.malliaridis@gmail.com>
90 lines
1.5 KiB
JavaScript
90 lines
1.5 KiB
JavaScript
import styled, { css } from 'styled-components';
|
|
|
|
const Wrapper = styled.div`
|
|
margin-bottom: 0.5rem;
|
|
padding-left: 0;
|
|
font-size: 13px;
|
|
div {
|
|
height: 26px;
|
|
padding-left: 15px;
|
|
line-height: 26px;
|
|
i,
|
|
svg {
|
|
display: none;
|
|
position: absolute;
|
|
top: 8px;
|
|
right: 10px;
|
|
color: #787e8f;
|
|
cursor: pointer;
|
|
}
|
|
${({ value }) => {
|
|
if (value) {
|
|
return css`
|
|
&:hover {
|
|
> i,
|
|
> svg {
|
|
display: block;
|
|
}
|
|
}
|
|
`;
|
|
}
|
|
}}
|
|
|
|
&:hover {
|
|
background-color: #e9eaeb;
|
|
}
|
|
&.highlighted {
|
|
border-radius: 3px;
|
|
background-color: #e9eaeb;
|
|
font-weight: 600;
|
|
}
|
|
&.highlighted,
|
|
&:hover {
|
|
> i,
|
|
> svg {
|
|
display: block;
|
|
}
|
|
}
|
|
}
|
|
`;
|
|
|
|
const Label = styled.label`
|
|
margin-left: 9px;
|
|
cursor: pointer;
|
|
> input {
|
|
display: none;
|
|
margin-right: 9px;
|
|
}
|
|
&:before {
|
|
content: '';
|
|
position: absolute;
|
|
left: 15px;
|
|
top: 6px;
|
|
width: 14px;
|
|
height: 14px;
|
|
border: 1px solid rgba(16, 22, 34, 0.15);
|
|
background-color: #fdfdfd;
|
|
border-radius: 3px;
|
|
}
|
|
&.checked {
|
|
&:after {
|
|
content: '\f00c';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 17px;
|
|
font-size: 10px;
|
|
font-family: 'FontAwesome';
|
|
color: #1c5de7;
|
|
transition: all 0.2s;
|
|
}
|
|
&:hover {
|
|
& + i,
|
|
& + svg {
|
|
display: block;
|
|
}
|
|
}
|
|
}
|
|
`;
|
|
|
|
export { Label, Wrapper };
|