-
Notifications
You must be signed in to change notification settings - Fork 409
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
Add Hover Class and Support for Bootstrap Grid Columns #765
Comments
Hey @KarimQaderi, Regarding the Add Hover Class for Styling:
Regarding Support for the Bootstrap Grid System:
|
I have implemented a DropZone for rows and a DropZone for columns. However, after adding columns to a row, the DropZones become non-selectable. Expected behavior: DropZones should remain interactive and selectable after adding columns. DropZones inside the row stop being selectable. |
I see. I tried reproducing your issue, and I think you’re using Row: {
render: () => {
return (
<DropZone zone="row" style={{ display: "flex", flexWrap: "wrap" }} />
);
},
},
Column: {
// Remove the default div wrapper around Column components to style them as direct children of the flex Row
inline: true,
render: ({ puck }) => {
return (
<DropZone
zone="column"
style={{ flex: 1 }}
disallow={["Column"]} // Optionally disallow nesting columns inside columns for a better drag experience
ref={puck.dragRef}
/>
);
},
}, If you’re working with grids, I’d recommend checking out the Multi-column layouts section of the docs. Since Puck 0.18, DropZones and their children can be styled directly with CSS Grid, and it provides better support for drag-and-drop functionality across columns and rows. |
You can use the |
If the problem is now solved let me know so I can close this issue. |
Add Hover Class for Styling
I need a way to apply specific CSS when hovering over a particular element. It would be great if a class (e.g., hover) could be dynamically added to the main container during hover events, similar to how popup actions work. This would allow for easier styling on hover.
Support for Bootstrap Grid System (Row & Column)
I'm trying to build a Bootstrap grid system. While I was able to add a row class successfully, I couldn't find a way to add col classes for the columns. It would be helpful if there were an option to define column classes and structure.
#759
The text was updated successfully, but these errors were encountered: