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

Side by Side Diff: milo/appengine/frontend/static/buildbot/css/default.css

Issue 2921573002: Milo UI tweaks (Closed)
Patch Set: only -> Only Created 3 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 unified diff | Download patch
OLDNEW
1 /* Copyright 2015 The LUCI Authors. All rights reserved. 1 /* Copyright 2015 The LUCI Authors. All rights reserved.
2 * Use of this source code is governed under the Apache License, Version 2.0 2 * Use of this source code is governed under the Apache License, Version 2.0
3 * that can be found in the LICENSE file. 3 * that can be found in the LICENSE file.
4 */ 4 */
5 5
6 body.interface { 6 body.interface {
7 margin-left: 30px; 7 margin-left: 30px;
8 margin-right: 30px; 8 margin-right: 30px;
9 margin-top: 20px; 9 margin-top: 20px;
10 margin-bottom: 50px; 10 margin-bottom: 50px;
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 } 93 }
94 94
95 div.Announcement>div.Closed { 95 div.Announcement>div.Closed {
96 border: 5px solid #e98080; 96 border: 5px solid #e98080;
97 padding: 0.5em; 97 padding: 0.5em;
98 font-size: 24px; 98 font-size: 24px;
99 font-weight: bold; 99 font-weight: bold;
100 text-align: center; 100 text-align: center;
101 } 101 }
102 102
103 .BuildProperties td.middle {
104 max-width: 250px;
105 text-overflow: ellipsis;
106 overflow: hidden;
107 }
108
103 td.Time { 109 td.Time {
104 color: #000; 110 color: #000;
105 border-bottom: 1px solid #aaa; 111 border-bottom: 1px solid #aaa;
106 background-color: #eee; 112 background-color: #eee;
107 } 113 }
108 114
109 td.Activity,td.Change,td.Builder { 115 td.Activity,td.Change,td.Builder {
110 color: #333333; 116 color: #333333;
111 background-color: #CCCCCC; 117 background-color: #CCCCCC;
112 } 118 }
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 } 251 }
246 252
247 td.Alt { 253 td.Alt {
248 background-color: #ddd; 254 background-color: #ddd;
249 } 255 }
250 256
251 tr:nth-child(even) { 257 tr:nth-child(even) {
252 background-color: #ddd; 258 background-color: #ddd;
253 } 259 }
254 260
261 li.sublink:nth-child(odd) {
262 background-color: #eee;
263 }
264
255 .account-picture { 265 .account-picture {
256 border-radius: 6px; 266 border-radius: 6px;
257 width: 25px; 267 width: 25px;
258 height: 25px; 268 height: 25px;
259 vertical-align: middle; 269 vertical-align: middle;
260 } 270 }
261 271
262 .legend { 272 .legend {
263 border-radius: 5px !important; 273 border-radius: 5px !important;
264 -webkit-border-radius: 5px !important; 274 -webkit-border-radius: 5px !important;
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
626 font-size: medium; 636 font-size: medium;
627 } 637 }
628 638
629 /* log view */ 639 /* log view */
630 .log * { 640 .log * {
631 vlink: #800080; 641 vlink: #800080;
632 font-family: "Courier New", courier, monotype, monospace; 642 font-family: "Courier New", courier, monotype, monospace;
633 font-size: 1.5em; 643 font-size: 1.5em;
634 } 644 }
635 645
646 span.duration {
647 text-align: right;
648 float: right;
649 display: inline-block;
650 }
651
636 span.stdout { 652 span.stdout {
637 color: black; 653 color: black;
638 } 654 }
639 655
640 span.stderr { 656 span.stderr {
641 color: red; 657 color: red;
642 } 658 }
643 659
644 span.header { 660 span.header {
645 color: blue; 661 color: blue;
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
723 display: none; 739 display: none;
724 } 740 }
725 741
726 .interesting .verbosity-Hidden { 742 .interesting .verbosity-Hidden {
727 display: none; 743 display: none;
728 } 744 }
729 745
730 .interesting .verbosity-Normal { 746 .interesting .verbosity-Normal {
731 display: none; 747 display: none;
732 } 748 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698