機能リクエスト:カンバンボードのオプションへのアクセス制限

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

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