-
Notifications
You must be signed in to change notification settings - Fork 0
Feature Disabled Tabs
tempus2016 edited this page Jun 24, 2026
·
1 revision
Show a tab greyed-out and non-selectable instead of hiding it. Useful for "coming soon" tabs or to indicate a feature that's temporarily unavailable.
Per-tab key: disabled (boolean)
type: custom:tabdeck-card
tabs:
- name: Home
icon: mdi:home
card: { ... }
- name: Setup
icon: mdi:cog
disabled: true # visible but greyed out
card: { ... }
- name: Energy
icon: mdi:flash
card: { ... }
- A disabled tab is rendered at reduced opacity and cannot be clicked.
- Keyboard navigation skips disabled tabs, and Home/End land on the first/last enabled tab.
- Difference from visibility: visibility removes a tab from the bar;
disabledkeeps it visible but inert. - Toggle it from the Disable tab switch in the visual editor.
Concepts
Features