style.module.css 653 B

123456789101112131415161718192021222324252627282930313233
  1. .actionItem {
  2. @apply h-9 py-2 px-3 mx-1 flex items-center gap-2 rounded-lg cursor-pointer;
  3. }
  4. .actionName {
  5. @apply text-gray-700 text-sm;
  6. }
  7. .commonIcon {
  8. @apply w-4 h-4 inline-block align-middle;
  9. background-repeat: no-repeat;
  10. background-position: center center;
  11. background-size: contain;
  12. }
  13. .actionIcon {
  14. @apply bg-gray-500;
  15. mask-image: url(~@/assets/action.svg);
  16. }
  17. body .btn.open,
  18. body .btn:hover {
  19. background: url(~@/assets/action.svg) center center no-repeat transparent;
  20. background-size: 16px 16px;
  21. }
  22. body .btn:hover {
  23. background-color: #F2F4F7;
  24. }
  25. .deleteActionItem:hover .deleteActionItemChild {
  26. @apply text-red-500;
  27. }