-
Notifications
You must be signed in to change notification settings - Fork 21
DOC-13347 fix unreadable inline example #195
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -153,7 +153,7 @@ table.table-tutorial tr td:last-child { | |
|
||
/* Responsive css */ | ||
|
||
@media screen and (min-width: 768px) { | ||
@media screen and (min-width: 1px /*768px*/) { | ||
Comment on lines
155
to
+156
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [nitpick] The inline comment inside the media query breakpoint may be confusing. Consider removing the commented '/768px/' or moving it to a clear code comment above the rule for clarity. Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||
table.tableblock { | ||
display: table; | ||
position: relative; | ||
|
@@ -212,6 +212,7 @@ table.table-tutorial tr td:last-child { | |
} | ||
} | ||
|
||
/* This "responsive" table CSS is a bit odd, I'm not sure it is needed any more: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [nitpick] Commented-out code can accumulate and hinder maintainability. If this responsive block is no longer needed, consider removing it or adding a TODO with context and a link to the issue tracking its removal. Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||
@media screen and (max-width: 767px), print { | ||
table.tableblock td, | ||
table.tableblock th { | ||
|
@@ -242,3 +243,4 @@ table.table-tutorial tr td:last-child { | |
max-width: 120px; | ||
} | ||
} | ||
*/ |
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.
Consider adding a comment above these rules to explain that they override highlightjs colors for redoc inline examples, which can help future maintainers understand the purpose of this override.
Copilot uses AI. Check for mistakes.