-
Notifications
You must be signed in to change notification settings - Fork 6
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
[#1326] Fix phonenumber, email and url in product location cards #574
[#1326] Fix phonenumber, email and url in product location cards #574
Conversation
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.
@jiromaykin I hope I did this in the right way! I added this rule for the product location cards as well. |
.link + .link { | ||
.link | ||
+ .link | ||
:not(.card__body--flex > a > span, .leaflet-content-details > a > span) { |
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.
it seems like the linter broke off the ":not" selector so it doesn't work anymore; also this ":not" selector is a bit dangerous to use if it's just 1 or 2 exceptions; so better to correct the original style, which was faulty and not specific enough, because it dealt with the wrong exception (not your blame :-D ).
The style for the numbers in the main Navigation here should onl be:
.primary-navigation { &__list-item .link.link--secondary { margin-left: var(--spacing-small); } }
declared outside of the ".link" curly braces.
This way all the other links everywhere will not be affected.
This fixes https://taiga.maykinmedia.nl/project/open-inwoner/issue/1252 as well.