mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
* make angular version number copyable * Make version selectable * change instructions and icons in profiler * make font size responsive * fix: move checkbox to control panel * fix: change loading indicator to match style * fix: profiler tab style of graphs * fix: version responsive to size * fix: version colors * fix: flame graph colors and change detection Co-authored-by: Emma Twersky <emmatwersky@google.com>
51 lines
913 B
HTML
51 lines
913 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.header-text {
|
|
margin: 0px;
|
|
text-align: center;
|
|
padding-bottom: 8px;
|
|
}
|
|
|
|
.modal-content {
|
|
min-width: 300px;
|
|
padding: 10px;
|
|
}
|
|
|
|
.icon {
|
|
width: 20px;
|
|
margin-right: 16px;
|
|
}
|
|
|
|
.message {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 5px;
|
|
}
|
|
|
|
code {
|
|
font-size: 1em;
|
|
font-family: monospace;
|
|
}
|
|
|
|
p:not(:last-child) {
|
|
margin-bottom: 10px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="modal-content">
|
|
<h4 class="header-text">Angular DevTools</h4>
|
|
<div class="message">
|
|
<img class="icon" src="/assets/cross.png" />
|
|
<p>This page is not using Angular, or it has a strict extension policy.</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|