OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2016 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2016 The Chromium Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 :host { | 7 :host { |
8 overflow: hidden; | 8 overflow: hidden; |
9 } | 9 } |
10 | 10 |
(...skipping 23 matching lines...) Expand all Loading... |
34 white-space: nowrap; | 34 white-space: nowrap; |
35 overflow: hidden; | 35 overflow: hidden; |
36 } | 36 } |
37 | 37 |
38 .coverage-results { | 38 .coverage-results { |
39 overflow-y: auto; | 39 overflow-y: auto; |
40 display: flex; | 40 display: flex; |
41 flex: auto; | 41 flex: auto; |
42 } | 42 } |
43 | 43 |
44 .progress-view { | 44 .landing-page { |
45 display: flex; | |
46 justify-content: center; | 45 justify-content: center; |
47 align-items: center; | 46 align-items: center; |
48 font-size: 30px; | 47 padding: 20px; |
49 } | 48 } |
50 | 49 |
51 .progress-view .landing-page { | 50 .landing-page .message { |
52 flex: none; | |
53 overflow: auto; | |
54 font-size: 13px; | |
55 line-height: 15px; | |
56 color: #777; | |
57 white-space: pre-line; | 51 white-space: pre-line; |
58 } | 52 } |
59 | |
60 .progress-view .landing-page button { | |
61 padding: 0; | |
62 vertical-align: sub; | |
63 border: 1px solid #ddd; | |
64 margin-top: 4px; | |
65 background-color: #f3f3f3; | |
66 } | |
67 | |
68 .progress-view .landing-page button > span { | |
69 margin: -1px 2px -3px -2px; | |
70 } | |
71 | |
72 .coverage-results > div { | |
73 flex: auto; | |
74 } | |
OLD | NEW |