UserTaskbarTabForbidden.vue 615 B

123456789101112131415161718192021222324252627
  1. <!-- Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/ -->
  2. <script setup lang="ts"></script>
  3. <template>
  4. <div class="flex grow cursor-pointer gap-2 rounded-md px-2 py-3">
  5. <CommonIcon
  6. name="x-lg"
  7. size="small"
  8. class="shrink-0 text-red-500"
  9. decorative
  10. />
  11. <CommonLabel
  12. v-tooltip="$t('You have insufficient rights to open this tab.')"
  13. class="block truncate text-gray-300 dark:text-neutral-400"
  14. >
  15. {{ $t('Access denied') }}
  16. </CommonLabel>
  17. </div>
  18. </template>
  19. <style scoped>
  20. .draggable span {
  21. @apply text-neutral-400;
  22. }
  23. </style>