Files
ontime/apps/client/src/theme/ontimeMenu.ts
T
Carlos Valente 10852eecdd Rundown modes (#864)
* refactor: simplify settings

* refactor: quick add around selection

* refactor: no action menu in delay block

* refactor: no action menu in event block

* style: context menu dark

* refactor: context menu actions
2024-04-02 20:09:27 +02:00

28 lines
609 B
TypeScript

export const ontimeMenuOnDark = {
list: {
fontSize: 'calc(1rem - 2px)',
borderRadius: '3px',
borderColor: 'rgba(255, 255, 255, 0.1)',
color: '#ececec', // $gray-1030
backgroundColor: '#202020', // $gray-1250
zIndex: 100,
},
item: {
backgroundColor: 'transparent',
paddingBlock: '0.5rem',
_hover: {
backgroundColor: 'rgba(0, 0, 0, 0.1)',
_disabled: {
backgroundColor: 'transparent',
},
},
_disabled: {
color: '#b1b1b1', // $gray-400
},
},
divider: {
borderColor: 'rgba(255, 255, 255, 0.07)',
opacity: 1,
},
};