Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

how to disable or hide conditionally MoveLeft and MoveAllLeft icons #296

Open
Kranthi32 opened this issue Jan 29, 2025 · 2 comments
Open

Comments

@Kranthi32
Copy link

No description provided.

@jakezatecky
Copy link
Owner

While there is no property to hide or disable these icons, you can easily hide them with CSS.

If you want to just hide the icons moving items to the left, you can do the following:

.rdl-actions-to-available {
  display: none;
}

/* Align the remaining actions to the center */
.rdl-actions {
  align-self: center; /* or use `flex-start` */
}

If you want to hide all actions, not just the ones moving items to the available list, you can do the following:

.rdl-actions {
  display: none;
}

@Kranthi32
Copy link
Author

Thanks its working

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants