mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-06 16:03:52 +00:00
10852eecdd
* 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
28 lines
609 B
TypeScript
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,
|
|
},
|
|
};
|