I was able to avoid this issue by inserting a generic entity like ‘sun’ into the spot where I wanted a blank, and then setting the icon to ‘none’ and the tap_action to ‘none’. This gives me a blank cell in the grid.
- entity: sun.sun
# this works ok-ish, but still makes the cursor respond which is silly really because all possible actions are negated. Might actually be considered a frontend bug
name: ' '
icon: ' '
show_state: false
tap_action:
action: none
hold_action:
action: none
double_tap_action:
action: none
# using the card_mod styling is much better, takes away all, and doesnt trigger the cursor handle
card_mod:
style: |
state-badge {
display: none;
}
.name {
display: none;
}
:host div:not(.name) {
display: none;
}
maybe there is a card_mod way of hiding the complete entity, havent checked that 100% yet
card_mod:
style: |
:host div {
display: none;
}
takes away all visible sections, but still triggers the handle
created an issue in Frontend on the all none actions