-
Notifications
You must be signed in to change notification settings - Fork 2
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
[MS Internal] Alerts - Change color-coding #135
Comments
It might be too colorful but here is what I can take a look at and know what's happening in one glance: <html>
<head>
<style>
table {
/* border-collapse: collapse; */
border: 1px solid black;
}
table td {
border: 1px solid black;
}
table th {
border: 1px solid black;
}
div.labels {
color: #808080;
font-style: italic;
margin-left: 1cm;
}
tr.new_issue {
background-color: #ffe0e0;
}
tr.new_pr {
background-color: #ffffd0; /* light grey */
}
tr.gone_issue {
background-color: #e0ffe0; /* light red */
}
tr.gone_pr {
background-color: #e7e7ff; /* darker red */
}
span.moved_area {
color: black;
font-style: normal;
/*font-weight: bold;*/
}
</style>
</head>
<body>
<table>
<tr>
<th>Status</th>
<th>Issue #</th>
<th>Title</th>
<th>Assigned To</th>
<th>Milestone</th>
</tr>
<tr class="new_pr">
<td>New</td>
<td>PR #<a href="https://github.com/dotnet/corefx/pull/17507">17507</a></td>
<td>
Add more tests for Assembly.LoadFrom
<br/><div class="labels">Labels: area-System.Runtime, cla-already-signed</div>
</td>
<td><a href="https://github.com/rahku">@rahku</a></td>
<td></td>
</tr>
<tr class="new_issue">
<td>New</td>
<td>#<a href="https://github.com/dotnet/coreclr/issues/8224">8224</a></td>
<td>
Silent crash on Raspberry PI 3
<br/><div class="labels">Labels: arch-arm32, area-System.Runtime, os-linux</div>
</td>
<td></td>
<td>Future</td>
</tr>
<tr class="gone_issue">
<td>Moved</td>
<td>#<a href="https://github.com/dotnet/coreclr/issues/7829">7829</a></td>
<td>
SafeBuffer.Initialize(numElements, sizeOfEachElement) subject to overflow issues.
<br/><div class="labels">Labels: <span class="moved_area">area-Interop</span></div>
</td>
<td><a href="https://github.com/yizhang82">@yizhang82</a></td>
<td>2.0.0</td>
</tr>
<tr class="gone_pr">
<td>Closed</td>
<td>PR #<a href="https://github.com/dotnet/corefx/pull/14763">14763</a></td>
<td>
[Wip] Add API and Tests for Collectible Assemblies and AssemblyLoadContext
<br/><div class="labels">Labels: * NO MERGE *, area-System.Runtime, blocked, cla-already-signed</div>
</td>
<td><a href="https://github.com/xoofx">@xoofx</a></td>
<td></td>
</tr>
<tr class="gone_issue">
<td>Closed</td>
<td>#<a href="https://github.com/dotnet/coreclr/issues/5716">5716</a></td>
<td>
Make search in TimeZoneInfo.GetAdjustmentRuleForTime more efficient
<br/><div class="labels">Labels: area-System.Runtime, tenet-performance, up-for-grabs</div>
</td>
<td></td>
<td>Future</td>
</tr>
</table>
</body>
</html> |
I don't see any difference from the original in your HTML. Did you pasted wrong URL & HTML content? BTW: Cool HTML-rendering site, thanks! |
@karelz you're right, something went wrong and didn't save it, fortunately my local draft was saved. I've updated in-line PS. do empty line after |
Suggest you fix font also? eg https://jsfiddle.net/ye6qqtwk/4/ |
I changed the color-coding yesterday based on the 7:0 votes above. If someone wants further adjustments, please reply to this issue, or file a new issue. Regarding font: I was intentionally relying on Outlook defaults (same email client default font is used by GitHub email notifications). |
Changes made. If there is feedback on the new fonts, please reply. |
Current colors: https://jsfiddle.net/ww467dry/
@krwq can you please propose your changes in HTML sample?
The text was updated successfully, but these errors were encountered: