Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(110)

Unified Diff: chrome/common/extensions/docs/examples/extensions/buildbot/popup.html

Issue 18401004: Continuously update status in the buildbot extension popup window (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address initial review comments Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/docs/examples/extensions/buildbot/popup.html
diff --git a/chrome/common/extensions/docs/examples/extensions/buildbot/popup.html b/chrome/common/extensions/docs/examples/extensions/buildbot/popup.html
index 2cdc83f7a1d495c7c80e79f8610f614ebeaa3680..b07a97cffcafc3923e0852052f5a97e186c833bc 100644
--- a/chrome/common/extensions/docs/examples/extensions/buildbot/popup.html
+++ b/chrome/common/extensions/docs/examples/extensions/buildbot/popup.html
@@ -19,6 +19,10 @@
cursor: pointer;
}
+ tr.notryjobs {
+ display: none;
+ }
+
.status-label {
text-align: right;
font-size: 12px;
@@ -36,7 +40,8 @@
border: none;
}
- .spacer {
+ tr.status-pre-pad > td {
+ padding-top: 5px;
}
</style>
</head>
@@ -45,6 +50,7 @@
</table>
<script src='utils.js'></script>
<script src='try_status.js'></script>
+ <script src='active_issues.js'></script>
<script src='popup.js'></script>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698