Closed (fixed)
Project:
Drupal core
Version:
8.0.x-dev
Component:
block.module
Priority:
Normal
Category:
Task
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
27 Jun 2012 at 16:15 UTC
Updated:
29 Jul 2014 at 20:50 UTC
Jump to comment: Most recent file
Comments
Comment #1
droplet commentedThis is for .js :(
Comment #2
droplet commentedwait. this is different meaning.
Comment #3
disasm commentedcore/modules/book/book.theme.css - pass
core/modules/book/book.theme-rtl.css - pass
core/modules/book/book.admin.css - 1 warning:
Don't use IDs in selectors.
.js #edit-book-pick-book {
I grep'd the codebase for 'edit-book-pick-book' and got no results.
Comment #4
guy_schneerson commentedthis is the first patch by the Brighton Drupal Group by @guy_schneerson and @dixhuit hope it helps.
It replaces the id with a class selector for the book submit button on the edit page.
Please let us know if we missed out anything.
Comment #6
guy_schneerson commented#4: clean_up_css_for_book-1662956-4.patch queued for re-testing.
Comment #7
dddbbb commentedOK, that looks like it's passed this time. Guy, what did you change or do differently?
Comment #8
guy_schneerson commented@dixhuit the issue behind the issue Random test failures in SearchCommentTest its like a Fellini movie
Comment #9
dddbbb commentedAhaaaah.
Comment #10
michaellenahan commented@guy_schneerson, @dixhuit - I looked at Random test failures in SearchCommentTest but I can't work out what problem is being described there.
What was the difference between the first patch you submitted for testing and the second one? The patch seems so simple that it's odd that it would cause a test failure.
Comment #11
guy_schneerson commented@michaellenahan didn't change a thing, only pressed the Re-test.
the "random test" issue suggests that this error comes up randomly for no good reason, Re-testing made it go away
Comment #12
droplet commentedThat is random failed tests. Do not need to care about it :)
#4 is passed now and for normal case, the patch looks good.
Comment #13
guy_schneerson commented@droplet thanks, do you know what the next stage we tested it and it worked fine but do we need others to test before setting state to "Reviewed & tested"?
Comment #14
devin carlson commentedThe patch in #4 applied cleanly and allowed the book outline form's submit button to continue to be hidden while utilizing a less-specific CSS selector.
The patch uses
.book-outline-form(the nearest non-ID parent selector to the form's submit button) which is the best choice.Comment #15
catchThanks for the manual testing. Committed/pushed to 8.x.
Comment #16
droplet commentedThis is changing css order priorities. imo, all these kind changes should not backport.