Feature request: limit access to kanban board options

Is there a way to hide the button which brings up the Kanban Board options? I want set that in the config for the board and not let it get messed with accidentally.

Not sure what account level the button is visible to, but even if it’s only staff I’d like it out of the way.

1 Like

Try this CSS; it preserves the expand button but hides the settings:

// Hides the Kanban settings button but preserves the expand button
.kanban-spacer .btn {
    &:nth-of-type(2){
   display: none;
    }
}
1 Like