-
Notifications
You must be signed in to change notification settings - Fork 509
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
'Page not yet created' links do not reflect that #2065
Comments
I don't know how this is handled in Kuma but it seems like a smart way to handle it not to set |
This what I call pre-launch regression. We had it working recently but it seems to have gone away. <a class="new"
title="The documentation about this has not yet been written; please consider contributing!"
data-flaw-src="{{JSxRef("Global_Objects/AsyncGenerator", "AsyncGenerator")}}"> <code>AsyncGenerator</code>
</a> @schalkneethling we used to have a |
I finally found a reason to use
https://css-tricks.com/how-to-disable-links/ SEO should be happy this way too. For Sass - mdn/minimalist@schalkneethling a {
color: red;
:link {
color: blue;
}
:visited {
color: MediumSeaGreen 🤷🏻♂️
}
} For ReactTBD |
I quite like their idea about |
* fix: add style for links to pages that do not yet exists Change the class name used for link to page that do not yet exists from `new` to `page-not-created` and add relevant styling. fix #2065 * fix failing tests * add support for new class name
Steps to reproduce:
Actual results:
Unwritten pages links are indistunguashable from written ones.
Expected result:
Visual warning through red colour that pages have not been written yet.
The text was updated successfully, but these errors were encountered: