Closed (duplicate)
Project:
Drupal core
Version:
8.1.x-dev
Component:
Bartik theme
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
11 Feb 2016 at 09:27 UTC
Updated:
1 Jun 2016 at 23:06 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #2
zeeshan_khan commentedComment #3
zeeshan_khan commentedAbove mentioned issue has been fixed here:
Comment #5
zeeshan_khan commentedComment #6
zeeshan_khan commentedPlease ignore previous patch, this patch has full code.
Thanks.
Comment #7
zeeshan_khan commentedComment #8
zeeshan_khan commentedComment #10
zeeshan_khan commentedI am not understanding why PHP 5.5 & MySQL 5.5 CI error is failing as it has no php code. I feel there is an issue with testbot.
Comment #11
zeeshan_khan commentedComment #12
zeeshan_khan commentedComment #13
himanshupathak3 commentedLooks good to me.
Comment #14
RavindraSingh commented@HimanshuPathak, Please add put detail comment. (Screenshot would be advantage).
Comment #15
himanshupathak3 commentedApplied the patch and verified changes. Attaching screenshot.
Comment #16
star-szrThanks!
We can't change CSS in Stable in almost all cases - this defeats the purpose of providing a Stable backwards compatibility layer for frontend and theming work.
If the issue here is in Bartik we should probably fix it in Bartik however I think this should be retested in 8.1.x first before we do anything else. This issue sounds very much like a duplicate of #2541252: Replace the .region-content ul/ol selector with text-formatted to refactor code + fix visual bugs. It may not be but we should figure that out first.
Comment #17
star-szrComment #18
zeeshan_khan commentedThanks @Cottser for providing your valuable feedback, I have added my code change to bartik block.css and also verified this issue is not duplicate of above mentioned issue.
Best,
Zeeshan
Comment #19
subhojit777Before applying patch:

After applying patch:

Code looks good. Thanks @zeeshan_khan :)
Comment #20
star-szrThanks, I spent some time looking at this and I think this is essentially a duplicate of #2541252: Replace the .region-content ul/ol selector with text-formatted to refactor code + fix visual bugs. The bug reported here is fixed in 8.1.x. Attaching screenshots of 8.0.x vs. 8.1.x.
There are some issues with the solution proposed here as well. The patch adds vertical tabs CSS to the blocks component which is not the right spot (maybe if it was specific to vertical tabs in blocks but it isn't) and it's also quite a generic selector for this case.
What is happening here is a specificity war which we don't want to continue - the
region-content ul, .region-content olselector is the real problem here and we need to address the root of the problem, not the symptoms. We can potentially address the root cause in 8.0.x in #2541252: Replace the .region-content ul/ol selector with text-formatted to refactor code + fix visual bugs.8.0.x:

8.1.x:

Comment #21
star-szrComment #22
Pandy06269 commentedThanks all for the work on this, apologies for the delay in replying, I've been away from Drupal for a bit.
I'm now running 8.1.1 and confirm it's fixed :)