-
Notifications
You must be signed in to change notification settings - Fork 508
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
Issue with "Operator precedence": Missing CSS border in some columns #4894
Comments
Minor correction: the last column is missing the left border in the row for assignments, since in this case all previous columns uses |
Thanks for filing, @brunexgeek ! Moving to the yari repo as it concerns the MDN platform, not content. |
Good catch @brunexgeek! You were spot on, the CSS causing issues is within the partial table td:first-child, table th:first-child {
border-left: 0;
min-width: 150px;
} and specifically its the If we remove This is the most up-to-date source for &:first-child {
min-width: 150px;
@media #{$mq-small-desktop-and-up} {
min-width: 200px;
}
} Therefore, whenever Yari does a fresh build, it will pick up the changes in minimalist and this issue will be fixed. And if its not (which I doubt but could happen), we can update styles here in Yari to "patch" the tables until further notice. |
And seeing this comment by @schalkneethling, it leads me to believe that whenever the most recent release of minimalist is out of the dependency queue it will be ready for Yari to use and the issue we see of |
Now that the changes from I reckon this is ready to be closed @schalkneethling! |
MDN URL: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Operator_Precedence
What information was incorrect, unhelpful, or incomplete?
This is about the table in the "Table" section. Some lines (except the first) in the second column (Operator type) do not have a left border due to a
border-left: 0;
CSS entry. This happens when the previous column (Precedence) usesrowspan
. This problem does not occur in the last column (Individual operators).The complete CSS rule for the columns missing the left border (from
https://developer.mozilla.org/static/css/main.a43ed10c.chunk.css
):Specific section or headline?
Table
What did you expect to see?
Every row in the second column must have a left border.
Did you test this? If so, how?
Page rendered with Firefox 94.0 (64-bit) under GNU/Linux.
MDN Content page report details
en-us/web/javascript/reference/operators/operator_precedence
The text was updated successfully, but these errors were encountered: