mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-16 04:43:35 +00:00
refactor: simple migrations and tweaks to cuesheet
This commit is contained in:
committed by
Carlos Valente
parent
c8c2a05724
commit
aefa4cbf44
@@ -0,0 +1,50 @@
|
||||
.checkbox {
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
width: 1rem;
|
||||
height: 1rem;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: $component-border-radius-sm;
|
||||
|
||||
&[data-unchecked] {
|
||||
background-color: $gray-1100;
|
||||
|
||||
&:hover:not(:disabled) {
|
||||
background: $gray-1000;
|
||||
}
|
||||
&:active:not(:disabled) {
|
||||
background: $gray-1200;
|
||||
}
|
||||
}
|
||||
|
||||
&[data-checked] {
|
||||
background-color: $blue-500;
|
||||
|
||||
&:hover:not(:disabled) {
|
||||
background: $blue-400;
|
||||
}
|
||||
&:active:not(:disabled) {
|
||||
background: $blue-600;
|
||||
}
|
||||
}
|
||||
|
||||
&:disabled {
|
||||
opacity: 0.4;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
&:focus-visible {
|
||||
outline: 2px solid $blue-500;
|
||||
outline-offset: 2px;
|
||||
}
|
||||
}
|
||||
|
||||
.indicator {
|
||||
display: flex;
|
||||
color: $ui-white;
|
||||
|
||||
&[data-unchecked] {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
import { IoCheckmark } from 'react-icons/io5';
|
||||
import { Checkbox as BaseCheckbox } from '@base-ui-components/react/checkbox';
|
||||
|
||||
import style from './Checkbox.module.scss';
|
||||
|
||||
export default function Checkbox(checkboxProps: BaseCheckbox.Root.Props) {
|
||||
return (
|
||||
<BaseCheckbox.Root className={style.checkbox} {...checkboxProps}>
|
||||
<BaseCheckbox.Indicator className={style.indicator}>
|
||||
<IoCheckmark className={style.icon} />
|
||||
</BaseCheckbox.Indicator>
|
||||
</BaseCheckbox.Root>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user