File tree Expand file tree Collapse file tree 1 file changed +33
-1
lines changed Expand file tree Collapse file tree 1 file changed +33
-1
lines changed Original file line number Diff line number Diff line change 417417 if (! date ) return ' ' ;
418418 return dayjs .utc (date ).local ().format (` ${coreStore .config ?.datesFormat } ${coreStore .config ?.timeFormat } ` || ' YYYY-MM-DD HH:mm:ss' );
419419 }
420- </script >
420+ </script >
421+
422+ <style >
423+ /* Scoped styles for dialog buttons, because there is no different way to style them */
424+ .dialog-delete-button.dialog-delete-button {
425+ background-color : rgb (179 , 27 , 27 );
426+ color : white ;
427+ border : 1px solid rgb (153 , 27 , 27 );
428+ }
429+
430+ .dialog-delete-button.dialog-delete-button :hover {
431+ background-color : rgb (153 , 27 , 27 );
432+ }
433+
434+ .dialog-delete-button.dialog-delete-button :active {
435+ background-color : rgb (127 , 20 , 20 );
436+ }
437+
438+ /* Dark theme styles for delete button */
439+ .dark .dialog-delete-button.dialog-delete-button {
440+ background-color : rgb (220 , 38 , 38 );
441+ color : white ;
442+ }
443+
444+ .dark .dialog-delete-button.dialog-delete-button :hover {
445+ background-color : rgb (185 , 28 , 28 );
446+ }
447+
448+ .dark .dialog-delete-button.dialog-delete-button :active {
449+ background-color : rgb (153 , 27 , 27 );
450+ }
451+
452+ </style >
You can’t perform that action at this time.
0 commit comments