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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/audits2/audits2Panel.css

Issue 2861053003: DevTools: [lighthouse] Implement performance metrics filmstrip (Closed)
Patch Set: test fixed 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright 2017 The Chromium Authors. All rights reserved. 2 * Copyright 2017 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 .toolbar { 7 .toolbar {
8 border-bottom: 1px solid #ccc; 8 border-bottom: 1px solid #ccc;
9 } 9 }
10 10
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 } 46 }
47 47
48 .audits2-landing-center button { 48 .audits2-landing-center button {
49 margin-top: 20px; 49 margin-top: 20px;
50 } 50 }
51 51
52 .report-container { 52 .report-container {
53 overflow: auto; 53 overflow: auto;
54 position: relative; 54 position: relative;
55 } 55 }
56
57 .audits2-timeline {
58 display: flex;
59 flex-direction: column;
60 border-top: 1px solid #ccc;
61 border-bottom: 1px solid #ccc;
62 padding: 5px 0;
63 margin: 5px 0;
64 overflow: auto;
65 }
66
67 .audits2-filmstrip {
68 display: flex;
69 flex-direction: row;
70 margin-bottom: 20px;
71 }
72
73 .audits2-filmstrip .frame {
74 display: flex;
75 flex-direction: column;
76 align-items: center;
77 padding: 4px;
78 flex: none;
79 }
80
81 .audits2-filmstrip .frame .thumbnail {
82 display: flex;
83 width: 54px;
84 height: 100%;
85 flex-direction: row;
86 align-items: center;
87 margin: 4px 0 2px;
88 border: 2px solid transparent;
89 box-shadow: 0 0 3px #bbb;
90 }
91
92 .audits2-filmstrip .frame .thumbnail img {
93 height: auto;
94 width: 50px;
95 flex: 0 0 auto;
96 }
97
98 .audits2-filmstrip .frame .time {
99 margin-top: 2px;
100 }
101
102 .audits2-timeline-marker {
103 margin: 4px 0 6px;
104 width: calc(68px * 7);
105 }
106
107 .audits2-timeline-subtitle {
108 color: #01579B;
109 }
110
111 .audits2-timeline-bar {
112 border-top: 4px solid #03A9F4;
113 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698