* feat: action menu for schedule list item * feat: schedule action menu functionality * feat: dialog provider popups for delete * feat: duplicate schedule satiesfies type * refactor: change non-null assertion to early return for rename schedule * refactor: move schedule list item dialog providers to util file * style: run prettier * chore: inline object with satisfies operator * fix: border issues * style: change popups to match figma * fix: update import for schedule list item dialog providers * style: change dropdown text style to match figma * fix: add back dialog context * style: rounded edges when hovering over action + soften border color * chore: cleanup and improve styling * fix: dialog in popupmain --------- Co-authored-by: doprz <52579214+doprz@users.noreply.github.com> Co-authored-by: Razboy20 <razboy20@gmail.com>
42 lines
816 B
SCSS
42 lines
816 B
SCSS
@import 'src/views/styles/base.module.scss';
|
|
|
|
@layer base {
|
|
.extensionRoot {
|
|
@import 'tailwind-compat';
|
|
}
|
|
|
|
span {
|
|
font-family: inherit;
|
|
}
|
|
}
|
|
|
|
.extensionRoot {
|
|
@apply font-sans;
|
|
color: #303030;
|
|
|
|
[data-rfd-drag-handle-context-id=':r1:'] {
|
|
cursor: move;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 14px;
|
|
height: 14px;
|
|
background: transparent;
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
border: 3px solid #fff;
|
|
border-radius: 7px;
|
|
min-height: 40px;
|
|
box-shadow: none;
|
|
background: rgb(218, 220, 224);
|
|
}
|
|
:hover::-webkit-scrollbar-thumb,
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: rgb(189, 193, 198);
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:active {
|
|
background: rgb(128, 134, 139);
|
|
}
|
|
}
|