Closed (fixed)
Project:
Drupal core
Version:
11.x-dev
Component:
navigation.module
Priority:
Major
Category:
Feature request
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
29 Feb 2024 at 20:40 UTC
Updated:
5 May 2026 at 17:53 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #2
bronzehedwickComment #4
bronzehedwickComment #5
m4oliveiLooking nice! I noticed one thing between collapsed and not expanded. It looks like there is a differnce in line-height or something that is causing a slight shift in the items that are defaulting to two letters. Here are a couple of examples:
Comment #6
bronzehedwickThanks @m4olivei! I can confirm the issue. Investigating now.
Comment #7
bronzehedwickI found the issue with layout shift on menu collapse, and pushed a commit to fix. Ready for another review. Thanks!
Comment #8
m4oliveiThis is looking great to me! Thanks for the fix @bronzehedwick.
Comment #9
ckrinaDiscussed in Slack, so moving to NW again and assigning it to @bronzehedwick since he said he'll work on this.
ckrina
@Chris DeLuca @m4olivei wondering how would you envision, when this is in core, how contrib modules could add their icons with this change moving its definition to templates and away from CSS
Chris DeLuca
Ahh, good point. I hadn’t considered that. I think there’d need to be some more development on it, but my first idea would be to look in a YAML file for a mapping of menu item ids to SVG paths on the file system?
ckrina
Yeah, I think moving the traditional strategy using CSS to define icons on a twig template complicates extensibility from what we had so far and it’d need some discussion & work.
We have this Plan/Meta issue where all this could be discussed #3381186: [PLAN] Icons for the sidebar.
Chris DeLuca
We can also move back to icons defined in CSS. There’s some other disadvantages, but if it makes extensibility easier, maybe it’s worth it
ckrina
But the changes you are proposing are increasing the scope of the what we’ll need to have, so I wonder if there is any way to address the Initials issue without getting into the weeds for this longer conversation?
I totally agree that the technical strategy is way better, it’s just that I’m trying to think about a way to get to the Beta line without increasing the scope
Chris DeLuca
That’s fine, I can move the solution back to icons in CSS
I’ll work on that now, unless anyone objects
I've also created #3432173: Decide strategy to customize or provide 1st level menu items' icons as a follow-up. Thanks!
Comment #10
bronzehedwickI've reverted back to the CSS icons, as per above. The solution for overriding icons is no longer elegant.
Open to other suggestions.
Comment #11
bronzehedwickComment #12
finnsky commentedthis button can be without icon. and without text. You can test with enbling top bar. there is same button for node edit actions.
Comment #13
bronzehedwick[class*='toolbar-button--icon'] {targets the same elements now as.toolbar-button, so I was consolidating the styles. The code would have the exact same effect split across those two selectors.We could use
attr()in conjunction with adata-*to store the value, but it would still require the same::before, so I don't see an advantage.Comment #14
finnsky commentedCould you take a look at https://gyazo.com/b860d449b39738c41e181ddb7c4601ae
As i said this button used in other places aswell. I don't really want to have it always iconic.
Imo should be special class or attribute attached into this button when no icon in sidebar menu only. like `--icon-failback` or something.
Comment #15
bronzehedwickThat would be great, but I'm not seeing how that's possible. We can't detect if an icon is intended from Twig, just print a class usable for icon styling from CSS. This can be solved in the future if we decide to go back to an inline SVG approach, but not with CSS icons.
Comment #16
finnsky commentedI gonna take a look at this in next couple of days. Thank you.
Comment #17
bronzehedwickGotcha, I see the problem. I'll see if I can narrow the selector, but I don't think it's possible to move away from the
::beforeapproach or thatattr()will make an impact on this problem. I also don't see a way for an icon fallback to work without detecting which items have icons from Twig, which would need the larger refactor.Comment #19
finnsky commentedI've added a bit crazy solution with inline svg generation.
https://gyazo.com/98af20f551a6184be3df90b62bb33170
it has some problems like we cannot use `inter` font. only safe webfonts. but works good in terms of global button
Gonna think a bit more about it.
Comment #20
kostyashupenkoI this this task is related to this https://www.drupal.org/project/navigation/issues/3432173 where we need to define one global strategy how we can deliver own / custom icons.
1. background (mask)
2. iconic font
3. embed svg <- this is a winner by the way
And i think the initial approach with ::before pseudoselector directly on button itself (.toolbar-button) was a bit wrong. Since such kind of things (which should work with own icons, external icons and even 2 letters if no icon defined) requires own wrapper, like
<span class="toolbar-button__start">... icon or 2 letters ...</span>What do you think? I think we can provide this extra wrapper directly in this task, it requires some rework of CSS but i don't think it will be hard & long
Comment #21
ckrinaSorry, but UI design wise this needs to use the Inter font.
Also, be aware that the dropdown from the Top Bar and the 1st menu items on the navigation toolbar won't look the same and won't behave the same, so I wouldn't try to force them to use the same button component. Things like the states will need to be diffrerent also.
Comment #22
kostyashupenkoCan we get rid of ::before at all in toolbar buttons?
And to have just
With the own tag and specific classname it would be much easier to deliver 2 letters. Also 100% it will be easier to integrate 3rd party icons.
Please share your opinion
Comment #23
ckrinaMoving this to major.
Comment #24
ckrinaComment #25
ckrinaComment #29
m4oliveiI moved @bronzehedwick's MR over to Drupal core. There were quite a few conflicts, so I'm really not sure if everything is OK there. Take a look see.
Comment #42
m4oliveiTo summarize the back channel in Slack. Now that we've got a clean branch agasint core to work with, we're seeing a failed test. That failed test is failing on account of changes to the Twig template that are including the abbreviation for the Top Bar button. The twig template changed gets used by the top bar (you need to drush en -y navigation_top_bar to see it on a node view/edit page). Probably don't want this in that case.
Should clean that up. Then we might still need to adjust the test depending.
@skaught correctly pointed out that we'll probably also want to move that failed test (NavigationTopBarTest) from where it is. That's the subject of #3444673: Navigation Test names are disjointed..
Comment #43
bronzehedwickComment #44
smustgrave commentedReading the issue summary seems like something that could have test coverage added for.
Comment #45
bronzehedwick@smustgrave I added an abbreviation test. It's my first time writing a Drupal test, so open to any feedback. Thanks!
Comment #46
bronzehedwick@SKAUGHT
aria-hidden="true"is applied to the.toolbar-button__abbreviationelement. That should handle the use case you're mentioning.Comment #47
smustgrave commentedGot around to reviewing the test and made a suggestion for a more open test name for future tests.
Also can we add before/after screenshots to the issue summary to show the issue, can reuse any of the existing files but should be in the UI section of the summary for quick reviews
Comment #48
finnsky commentedOn my side i still believe we should postpone it until icons logic will not decided:
https://www.drupal.org/project/drupal/issues/3432173
Comment #49
ckrinaIf this could happen independently it would be great since the existing icon for missing icons looks like "broken" or that an icon is missing. We can always refactor and integrate the logic in the SVG process that ends up being used.
Also, it would be great if this MR didn't change any SVG file that doesn't really need to change to make it easier to isolate the changes.
Comment #50
bronzehedwickComment #51
bronzehedwickSorry about that @ckrina, those changes snuck in due to IDE automatically inserted newlines at the end of the file. I've pushed a commit to revert that, so those changes should no longer be in the diff.
Comment #54
finnsky commentedI tried to solve this problem differently.
At the moment, the button--has-icon class does not mean that the variable is actually set, all we have is the presence of the --icon variable
I tried to combine
https://css-tricks.com/logical-operations-with-css-variables/
and a double gradient depending on the presence of the variable and everything seems to work well.
Please review!
Comment #55
finnsky commentedFor test add any 2nd level menu link to Administration menu:
Comment #56
finnsky commentedComment #57
plopescThank you!
Tested locally and works as expected with the current icons approach.
I see 2 missing points though:
toolbar-button.html.twig. However, we cannot work on those possible conflicts until one of them is mergedComment #58
finnsky commentedGonna review linked issue aswell
Comment #59
finnsky commented1. Imo only Nightwatch tests can cover it. So we need to write test for this after Nightwatch setup will be merged.
2.
We can work on both in same time.
Comment #60
finnsky commentedComment #61
smustgrave commented@finnsky there an issue tracking the nightwatch setup? Should this be postponed on that?
Comment #62
finnsky commented@smustgrave,
this is Nightwatch issue: https://www.drupal.org/project/drupal/issues/3393400
But this issue shouldn't be blocked by Nightwatch setup.
We had that type of attributes before.
I'm not even sure this feature can be tested by Nightwatch.
Tricky CSS there, until we don't have Library of icons in module.
Comment #63
smustgrave commentedSo not really sure what can happen here this. Don't think it can move forward without test coverage.
Comment #64
finnsky commentedProblem that:
1. We cannot add test coverage here. Only cover attribute presence. But it is 1% of feature. Probably it is possible to do with Nightwatch. Probably...
2. We already have that type of attributes without any test coverage. Tests shouldn't block it.
3. This is temporary solution until we not have icons library.
Comment #65
plopescAdded basic test to ensure that HTML attributes are being placed as expected.
Agree that this might not be enough to test the CSS behavior, but it checks the HTML structure and would avoid unwanted markup regressions.
Comment #67
smustgrave commentedThanks sorry I should of been clear about the tests that was looking for that vs testing css changes.
Shows the coverage.
Applied a super nitpicky change directly.
Believe this is good to go.
Comment #68
ckrina2 small design change requests and this is good to go.
Comment #69
ckrinaApplied the small changes myself.
Comment #75
ckrinaCommitted 549f289 to 11.x, 9f2863c to 11.0.x, b4ee91d to 10.4.x and e72a0d0 to 10.3.x. Thanks!