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

Unified Diff: milo/appengine/frontend/templates/pages/build.html

Issue 2921573002: Milo UI tweaks (Closed)
Patch Set: only -> Only Created 3 years, 7 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
« no previous file with comments | « milo/appengine/frontend/static/buildbot/css/default.css ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: milo/appengine/frontend/templates/pages/build.html
diff --git a/milo/appengine/frontend/templates/pages/build.html b/milo/appengine/frontend/templates/pages/build.html
index 615adc146c8fb679e60521f3979a3b4f004efdfc..8d2fcd968adc4dd541b08e193170733d0d617842 100644
--- a/milo/appengine/frontend/templates/pages/build.html
+++ b/milo/appengine/frontend/templates/pages/build.html
@@ -154,25 +154,24 @@
<input type="radio" name="hider" id="showStandard" checked>
<label for="showStandard">Standard</label>
<input type="radio" name="hider" id="showInteresting">
- <label for="showInteresting">Interesting Only</label>
+ <label for="showInteresting">Non-Green Only</label>
<ol id="steps" class="standard">
{{ with .Build.Summary }}
{{ if .SubLink }}
<li class="verbosity-{{.Verbosity.String}}">
<div class="status-{{.Status}} result">
- <b>Steps</b>
{{ if .Duration -}}
- <span style="float:right"
- class="duration"
+ <span class="duration"
data-starttime="{{ .Started | formatTime }}"
{{ if .Finished }}data-endtime="{{ .Finished | formatTime }}"{{ end }}>
( {{ .Duration | humanDuration }} )</span>
{{- end }}
+ <b>Steps</b>
</div>
<ul>
{{ range .SubLink }}
- <li>{{ . | linkifySet }}</li>
+ <li class="sublink">{{ . | linkifySet }}</li>
{{ end }}
</ul>
</li>
@@ -182,14 +181,13 @@
{{ range .Build.Components }}
<li class="verbosity-{{.Verbosity.String}}">
<div class="status-{{.Status}} result">
- <b>{{.Label}}</b>
{{ if .Duration -}}
- <span style="float:right"
- class="duration"
+ <span class="duration"
data-starttime="{{ .Started | formatTime }}"
{{ if .Finished }}data-endtime="{{ .Finished | formatTime }}"{{ end }}>
( {{ .Duration | humanDuration }} )</span>
{{- end }}
+ <b>{{.Label}}</b>
<span>
{{ range .Text -}}
<div class="step-text">
@@ -200,7 +198,7 @@
</div>
<ul>
{{ if .MainLink }}
- <li>{{.MainLink | linkifySet}}</li>
+ <li class="sublink">{{.MainLink | linkifySet}}</li>
{{- if eq .Verbosity.String "Interesting" -}}
{{ range .MainLink }}
<link rel="prerender" href="{{.URL}}">
@@ -209,10 +207,10 @@
{{ end }}
{{- end }}
{{ range .SubLink }}
- <li>{{. | linkifySet}}</li>
+ <li class="sublink">{{. | linkifySet}}</li>
{{ end }}
{{ if not (or .MainLink .SubLink) }}
- <li> - no logs - </li>
+ <li class="sublink"> - no logs - </li>
{{ end }}
</ul>
</li>
@@ -226,7 +224,7 @@
<h2>Build Properties:</h2>
- <table class="info" width="100%">
+ <table class="info BuildProperties" width="100%">
<tr><th>Name</th><th>Value</th><th>Source</th></tr>
{{ range .Build.PropertyGroup }}
@@ -234,7 +232,7 @@
{{ range .Property }}
<tr>
<td class="left">{{.Key}}</td>
- <td>{{.Value}}</td>
+ <td class="middle"><abbr title="{{.Value}}">{{.Value}}</abbr></td>
<td>{{$name}}</td>
</tr>
{{ end }}
« no previous file with comments | « milo/appengine/frontend/static/buildbot/css/default.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698