2024-03-20 14:51:59 +00:00
|
|
|
import {colors, mediaXSmall, vars} from 'app/client/ui2018/cssVars';
|
|
|
|
import {icon} from 'app/client/ui2018/icons';
|
2024-04-11 06:50:30 +00:00
|
|
|
import {numericSpinner} from 'app/client/widgets/NumericSpinner';
|
2024-02-21 19:22:01 +00:00
|
|
|
import {styled} from 'grainjs';
|
|
|
|
|
|
|
|
export const label = styled('div', `
|
|
|
|
&-required::after {
|
|
|
|
content: "*";
|
|
|
|
color: ${vars.primaryBg};
|
|
|
|
margin-left: 4px;
|
|
|
|
}
|
|
|
|
`);
|
|
|
|
|
|
|
|
export const paragraph = styled('div', `
|
2024-04-12 17:00:05 +00:00
|
|
|
overflow-wrap: break-word;
|
|
|
|
|
2024-02-21 19:22:01 +00:00
|
|
|
&-alignment-left {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
&-alignment-center {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
&-alignment-right {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
`);
|
|
|
|
|
|
|
|
export const section = styled('div', `
|
|
|
|
border-radius: 3px;
|
|
|
|
border: 1px solid ${colors.darkGrey};
|
|
|
|
padding: 24px;
|
2024-04-11 06:50:30 +00:00
|
|
|
margin-top: 12px;
|
|
|
|
margin-bottom: 24px;
|
2024-02-21 19:22:01 +00:00
|
|
|
|
|
|
|
& > div + div {
|
2024-04-11 06:50:30 +00:00
|
|
|
margin-top: 8px;
|
|
|
|
margin-bottom: 12px;
|
2024-02-21 19:22:01 +00:00
|
|
|
}
|
|
|
|
`);
|
|
|
|
|
|
|
|
export const columns = styled('div', `
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(var(--grist-columns-count), 1fr);
|
2024-04-11 06:50:30 +00:00
|
|
|
gap: 16px;
|
2024-02-21 19:22:01 +00:00
|
|
|
`);
|
|
|
|
|
2024-03-20 14:51:59 +00:00
|
|
|
export const submitButtons = styled('div', `
|
2024-04-11 06:50:30 +00:00
|
|
|
margin-top: 16px;
|
2024-03-20 14:51:59 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
column-gap: 8px;
|
|
|
|
`);
|
|
|
|
|
|
|
|
export const resetButton = styled('button', `
|
|
|
|
line-height: inherit;
|
|
|
|
font-size: ${vars.mediumFontSize};
|
|
|
|
padding: 10px 24px;
|
|
|
|
cursor: pointer;
|
|
|
|
background-color: transparent;
|
|
|
|
color: ${vars.primaryBg};
|
|
|
|
border: 1px solid ${vars.primaryBg};
|
|
|
|
border-radius: 4px;
|
|
|
|
outline-color: ${vars.primaryBgHover};
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: ${vars.primaryBgHover};
|
|
|
|
border-color: ${vars.primaryBgHover};
|
|
|
|
}
|
|
|
|
&:disabled {
|
|
|
|
cursor: not-allowed;
|
|
|
|
color: ${colors.light};
|
|
|
|
background-color: ${colors.slate};
|
|
|
|
border-color: ${colors.slate};
|
|
|
|
}
|
|
|
|
`);
|
|
|
|
|
|
|
|
export const submitButton = styled('div', `
|
2024-02-21 19:22:01 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
& input[type="submit"] {
|
|
|
|
background-color: ${vars.primaryBg};
|
|
|
|
border: 1px solid ${vars.primaryBg};
|
|
|
|
color: white;
|
|
|
|
padding: 10px 24px;
|
|
|
|
border-radius: 4px;
|
|
|
|
font-size: 13px;
|
|
|
|
cursor: pointer;
|
|
|
|
line-height: inherit;
|
2024-03-20 14:51:59 +00:00
|
|
|
outline-color: ${vars.primaryBgHover};
|
2024-02-21 19:22:01 +00:00
|
|
|
}
|
|
|
|
& input[type="submit"]:hover {
|
|
|
|
border-color: ${vars.primaryBgHover};
|
|
|
|
background-color: ${vars.primaryBgHover};
|
|
|
|
}
|
2024-03-20 14:51:59 +00:00
|
|
|
& input[type="submit"]:disabled {
|
|
|
|
cursor: not-allowed;
|
|
|
|
color: ${colors.light};
|
|
|
|
background-color: ${colors.slate};
|
|
|
|
border-color: ${colors.slate};
|
|
|
|
}
|
2024-02-21 19:22:01 +00:00
|
|
|
`);
|
|
|
|
|
|
|
|
// TODO: break up into multiple variables, one for each field type.
|
|
|
|
export const field = styled('div', `
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2024-04-11 06:50:30 +00:00
|
|
|
height: 100%;
|
|
|
|
justify-content: space-between;
|
2024-02-21 19:22:01 +00:00
|
|
|
|
|
|
|
& input[type="checkbox"] {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-moz-appearance: none;
|
2024-04-11 06:50:30 +00:00
|
|
|
margin: 0;
|
2024-02-21 19:22:01 +00:00
|
|
|
padding: 0;
|
|
|
|
flex-shrink: 0;
|
|
|
|
display: inline-block;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
--radius: 3px;
|
|
|
|
position: relative;
|
|
|
|
margin-right: 8px;
|
|
|
|
vertical-align: baseline;
|
|
|
|
}
|
2024-03-20 14:51:59 +00:00
|
|
|
& input[type="checkbox"]:focus {
|
|
|
|
outline-color: ${vars.primaryBgHover};
|
|
|
|
}
|
2024-02-21 19:22:01 +00:00
|
|
|
& input[type="checkbox"]:checked:enabled,
|
|
|
|
& input[type="checkbox"]:indeterminate:enabled {
|
|
|
|
--color: ${vars.primaryBg};
|
|
|
|
}
|
|
|
|
& input[type="checkbox"]:disabled {
|
|
|
|
--color: ${colors.darkGrey};
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
& input[type="checkbox"]::before,
|
|
|
|
& input[type="checkbox"]::after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 16px;
|
|
|
|
width: 16px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border: 1px solid var(--color, ${colors.darkGrey});
|
|
|
|
border-radius: var(--radius);
|
|
|
|
}
|
|
|
|
& input[type="checkbox"]:checked::before,
|
|
|
|
& input[type="checkbox"]:disabled::before,
|
|
|
|
& input[type="checkbox"]:indeterminate::before {
|
|
|
|
background-color: var(--color);
|
|
|
|
}
|
|
|
|
& input[type="checkbox"]:not(:checked):indeterminate::after {
|
|
|
|
-webkit-mask-image: var(--icon-Minus);
|
|
|
|
}
|
|
|
|
& input[type="checkbox"]:not(:disabled)::after {
|
|
|
|
background-color: ${colors.light};
|
|
|
|
}
|
|
|
|
& input[type="checkbox"]:checked::after,
|
|
|
|
& input[type="checkbox"]:indeterminate::after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
height: 16px;
|
|
|
|
width: 16px;
|
|
|
|
-webkit-mask-image: var(--icon-Tick);
|
|
|
|
-webkit-mask-size: contain;
|
|
|
|
-webkit-mask-position: center;
|
|
|
|
-webkit-mask-repeat: no-repeat;
|
|
|
|
background-color: ${colors.light};
|
|
|
|
}
|
|
|
|
& > .${label.className} {
|
|
|
|
color: ${colors.dark};
|
|
|
|
font-size: 13px;
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 700;
|
|
|
|
line-height: 16px; /* 145.455% */
|
|
|
|
margin-top: 8px;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
display: block;
|
2024-04-12 17:00:05 +00:00
|
|
|
overflow-wrap: break-word;
|
2024-02-21 19:22:01 +00:00
|
|
|
}
|
|
|
|
`);
|
|
|
|
|
|
|
|
export const error = styled('div', `
|
2024-04-11 06:50:30 +00:00
|
|
|
margin-top: 16px;
|
2024-02-21 19:22:01 +00:00
|
|
|
text-align: center;
|
|
|
|
color: ${colors.error};
|
|
|
|
min-height: 22px;
|
|
|
|
`);
|
|
|
|
|
2024-04-11 06:50:30 +00:00
|
|
|
export const textInput = styled('input', `
|
|
|
|
color: ${colors.dark};
|
|
|
|
background-color: ${colors.light};
|
|
|
|
height: 29px;
|
|
|
|
width: 100%;
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: inherit;
|
|
|
|
padding: 4px 8px;
|
|
|
|
border: 1px solid ${colors.darkGrey};
|
|
|
|
border-radius: 3px;
|
|
|
|
outline-color: ${vars.primaryBgHover};
|
|
|
|
`);
|
|
|
|
|
|
|
|
export const textarea = styled('textarea', `
|
|
|
|
display: block;
|
|
|
|
color: ${colors.dark};
|
|
|
|
background-color: ${colors.light};
|
|
|
|
min-height: 29px;
|
|
|
|
width: 100%;
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: inherit;
|
|
|
|
padding: 4px 8px;
|
|
|
|
border: 1px solid ${colors.darkGrey};
|
|
|
|
border-radius: 3px;
|
|
|
|
outline-color: ${vars.primaryBgHover};
|
|
|
|
resize: none;
|
|
|
|
`);
|
|
|
|
|
|
|
|
export const spinner = styled(numericSpinner, `
|
|
|
|
& input {
|
|
|
|
height: 29px;
|
|
|
|
border: none;
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus-within {
|
|
|
|
outline: 2px solid ${vars.primaryBgHover};
|
|
|
|
}
|
|
|
|
`);
|
|
|
|
|
2024-02-21 19:22:01 +00:00
|
|
|
export const toggle = styled('label', `
|
|
|
|
position: relative;
|
|
|
|
display: inline-flex;
|
2024-04-11 06:50:30 +00:00
|
|
|
margin-top: 8px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
--color: ${colors.hover};
|
|
|
|
}
|
|
|
|
`);
|
|
|
|
|
|
|
|
export const toggleSwitch = styled(toggle, `
|
|
|
|
cursor: pointer;
|
2024-02-21 19:22:01 +00:00
|
|
|
|
|
|
|
& input[type='checkbox'] {
|
2024-04-11 06:50:30 +00:00
|
|
|
margin: 0;
|
2024-02-21 19:22:01 +00:00
|
|
|
position: absolute;
|
2024-04-11 06:50:30 +00:00
|
|
|
top: 1px;
|
|
|
|
left: 4px;
|
|
|
|
}
|
|
|
|
& input[type='checkbox'],
|
|
|
|
& input[type='checkbox']::before,
|
|
|
|
& input[type='checkbox']::after {
|
|
|
|
height: 1px;
|
|
|
|
width: 1px;
|
|
|
|
}
|
|
|
|
& input[type='checkbox']:focus {
|
|
|
|
outline: none;
|
2024-02-21 19:22:01 +00:00
|
|
|
}
|
2024-03-20 14:51:59 +00:00
|
|
|
& input[type='checkbox']:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
2024-02-21 19:22:01 +00:00
|
|
|
& > span {
|
|
|
|
margin-left: 8px;
|
|
|
|
}
|
|
|
|
`);
|
|
|
|
|
2024-03-20 14:51:59 +00:00
|
|
|
export const toggleLabel = styled('span', `
|
|
|
|
font-size: 13px;
|
|
|
|
font-weight: 700;
|
2024-04-11 06:50:30 +00:00
|
|
|
line-height: 16px;
|
|
|
|
overflow-wrap: anywhere;
|
2024-03-20 14:51:59 +00:00
|
|
|
`);
|
|
|
|
|
2024-02-21 19:22:01 +00:00
|
|
|
export const gristSwitchSlider = styled('div', `
|
|
|
|
position: absolute;
|
|
|
|
cursor: pointer;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
background-color: #ccc;
|
|
|
|
border-radius: 17px;
|
2024-03-20 14:51:59 +00:00
|
|
|
-webkit-transition: background-color .4s;
|
|
|
|
transition: background-color .4s;
|
2024-02-21 19:22:01 +00:00
|
|
|
`);
|
|
|
|
|
|
|
|
export const gristSwitchCircle = styled('div', `
|
|
|
|
position: absolute;
|
|
|
|
cursor: pointer;
|
|
|
|
content: "";
|
|
|
|
height: 13px;
|
|
|
|
width: 13px;
|
|
|
|
left: 2px;
|
|
|
|
bottom: 2px;
|
|
|
|
background-color: white;
|
|
|
|
border-radius: 17px;
|
2024-03-20 14:51:59 +00:00
|
|
|
-webkit-transition: transform .4s;
|
|
|
|
transition: transform .4s;
|
2024-02-21 19:22:01 +00:00
|
|
|
`);
|
|
|
|
|
|
|
|
export const gristSwitch = styled('div', `
|
|
|
|
position: relative;
|
|
|
|
width: 30px;
|
|
|
|
height: 17px;
|
|
|
|
display: inline-block;
|
|
|
|
flex: none;
|
|
|
|
|
2024-03-20 14:51:59 +00:00
|
|
|
input:focus + & > .${gristSwitchSlider.className} {
|
|
|
|
outline: 2px solid ${vars.primaryBgHover};
|
|
|
|
outline-offset: 1px;
|
|
|
|
}
|
|
|
|
|
2024-02-21 19:22:01 +00:00
|
|
|
input:checked + & > .${gristSwitchSlider.className} {
|
|
|
|
background-color: ${vars.primaryBg};
|
|
|
|
}
|
|
|
|
|
|
|
|
input:checked + & > .${gristSwitchCircle.className} {
|
|
|
|
-webkit-transform: translateX(13px);
|
|
|
|
-ms-transform: translateX(13px);
|
|
|
|
transform: translateX(13px);
|
|
|
|
}
|
|
|
|
`);
|
|
|
|
|
|
|
|
export const checkboxList = styled('div', `
|
2024-04-11 06:50:30 +00:00
|
|
|
display: inline-flex;
|
2024-02-21 19:22:01 +00:00
|
|
|
flex-direction: column;
|
2024-04-11 06:50:30 +00:00
|
|
|
gap: 8px;
|
|
|
|
|
|
|
|
&-horizontal {
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
column-gap: 16px;
|
|
|
|
}
|
2024-02-21 19:22:01 +00:00
|
|
|
`);
|
|
|
|
|
|
|
|
export const checkbox = styled('label', `
|
|
|
|
display: flex;
|
2024-04-11 06:50:30 +00:00
|
|
|
font-size: 13px;
|
|
|
|
line-height: 16px;
|
|
|
|
gap: 8px;
|
|
|
|
overflow-wrap: anywhere;
|
2024-02-21 19:22:01 +00:00
|
|
|
|
2024-04-11 06:50:30 +00:00
|
|
|
& input {
|
|
|
|
margin: 0px !important;
|
|
|
|
}
|
2024-02-21 19:22:01 +00:00
|
|
|
&:hover {
|
|
|
|
--color: ${colors.hover};
|
|
|
|
}
|
|
|
|
`);
|
|
|
|
|
2024-04-11 06:50:30 +00:00
|
|
|
export const radioList = checkboxList;
|
|
|
|
|
|
|
|
export const radio = styled('label', `
|
|
|
|
position: relative;
|
|
|
|
display: inline-flex;
|
|
|
|
gap: 8px;
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: 16px;
|
|
|
|
font-weight: normal;
|
|
|
|
min-width: 0px;
|
|
|
|
outline-color: ${vars.primaryBgHover};
|
|
|
|
overflow-wrap: anywhere;
|
|
|
|
|
|
|
|
& input {
|
|
|
|
flex-shrink: 0;
|
|
|
|
appearance: none;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
margin: 0px;
|
|
|
|
border-radius: 50%;
|
|
|
|
background-clip: content-box;
|
|
|
|
border: 1px solid ${colors.darkGrey};
|
|
|
|
background-color: transparent;
|
|
|
|
outline-color: ${vars.primaryBgHover};
|
|
|
|
}
|
|
|
|
& input:hover {
|
|
|
|
border: 1px solid ${colors.hover};
|
|
|
|
}
|
|
|
|
& input:checked {
|
|
|
|
padding: 2px;
|
|
|
|
background-color: ${vars.primaryBg};
|
|
|
|
border: 1px solid ${vars.primaryBg};
|
|
|
|
}
|
|
|
|
`);
|
|
|
|
|
2024-03-20 14:51:59 +00:00
|
|
|
export const hybridSelect = styled('div', `
|
|
|
|
position: relative;
|
|
|
|
`);
|
|
|
|
|
2024-02-21 19:22:01 +00:00
|
|
|
export const select = styled('select', `
|
2024-03-20 14:51:59 +00:00
|
|
|
position: absolute;
|
|
|
|
padding: 4px 8px;
|
|
|
|
border-radius: 3px;
|
|
|
|
border: 1px solid ${colors.darkGrey};
|
|
|
|
font-size: 13px;
|
|
|
|
outline: none;
|
|
|
|
background: white;
|
|
|
|
line-height: inherit;
|
2024-04-11 06:50:30 +00:00
|
|
|
height: 29px;
|
2024-03-20 14:51:59 +00:00
|
|
|
flex: auto;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
@media ${mediaXSmall} {
|
|
|
|
& {
|
|
|
|
outline: revert;
|
|
|
|
outline-color: ${vars.primaryBgHover};
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`);
|
|
|
|
|
|
|
|
export const searchSelect = styled('div', `
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
position: relative;
|
2024-02-21 19:22:01 +00:00
|
|
|
padding: 4px 8px;
|
|
|
|
border-radius: 3px;
|
2024-04-11 06:50:30 +00:00
|
|
|
outline: 1px solid ${colors.darkGrey};
|
2024-02-21 19:22:01 +00:00
|
|
|
font-size: 13px;
|
|
|
|
background: white;
|
|
|
|
line-height: inherit;
|
2024-04-11 06:50:30 +00:00
|
|
|
height: 29px;
|
2024-02-21 19:22:01 +00:00
|
|
|
flex: auto;
|
|
|
|
width: 100%;
|
2024-03-20 14:51:59 +00:00
|
|
|
|
|
|
|
select:focus + & {
|
|
|
|
outline: 2px solid ${vars.primaryBgHover};
|
|
|
|
}
|
|
|
|
`);
|
|
|
|
|
|
|
|
export const searchSelectIcon = styled(icon, `
|
|
|
|
flex-shrink: 0;
|
2024-02-21 19:22:01 +00:00
|
|
|
`);
|