-
Notifications
You must be signed in to change notification settings - Fork 39
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 class representing a Div #3169
Conversation
🦙 MegaLinter status: ✅ SUCCESS
See detailed report in MegaLinter reports |
Test results 9 files 9 suites 8m 32s ⏱️ Results for commit 64ec82a. ♻️ This comment has been updated with latest results. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #3169 +/- ##
==========================================
- Coverage 60.39% 60.39% -0.01%
==========================================
Files 605 605
Lines 43704 43709 +5
Branches 48 48
==========================================
+ Hits 26396 26398 +2
- Misses 17296 17299 +3
Partials 12 12 ☔ View full report in Codecov by Sentry. |
a730cb4
to
17076c0
Compare
Just a blank div that can be customized with classes and stuff. replaces crispyforms Div.
17076c0
to
64ec82a
Compare
Quality Gate passedIssues Measures |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nicely done!
Adds a blank div as replacement for the crispyforms
Div
class.Part of the uncrispyfication (#2794).
Arnold
ManualDetentionForm
andDetentionProfileForm
useDiv
s with a specific class added to itto make it hide and reappear. Tried to recreate the effect using widget manipulation, changes to
arnold.scss
etc etc..Using a
FormRow
worked the best, but still wasnt perfect (it messed up the margins for some reason). As aFormRow
is just a div with the "row" css class added to it, it seems reasonable to have a class for blank div that you can do whatever you want with.