adjust stylings

This commit is contained in:
Armin Schrenk
2025-02-28 10:36:13 +01:00
parent 6d9704ffa2
commit d2fcd5b64f
3 changed files with 20 additions and 14 deletions

View File

@@ -147,7 +147,7 @@ public class EventListCellController implements FxController {
private void addAction(String localizationKey, Runnable action) {
var entry = new MenuItem(resourceBundle.getString(localizationKey));
entry.getStyleClass().addLast("add-vault-menu-item");
entry.getStyleClass().addLast("dropdown-button-context-menu-item");
entry.setOnAction(_ -> action.run());
eventActionsMenu.getItems().addLast(entry);
}