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

Side by Side Diff: Source/devtools/front_end/components_lazy/filmStripView.css

Issue 1183483011: DevTools: Support popover on timeline overview. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: index-based -> frame-based Created 5 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2015 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2015 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 .film-strip-view { 7 .film-strip-view {
8 overflow-x: auto; 8 overflow-x: auto;
9 overflow-y: hidden; 9 overflow-y: hidden;
10 align-content: flex-start; 10 align-content: flex-start;
11 min-height: 60px; 11 min-height: 60px;
12 } 12 }
13 13
14 .film-strip-view.time-based .frame .time {
15 display: none;
16 }
17
14 .film-strip-view .label { 18 .film-strip-view .label {
15 margin: auto; 19 margin: auto;
16 font-size: 18px; 20 font-size: 18px;
17 color: #999; 21 color: #999;
18 } 22 }
19 23
20 .film-strip-view .frame { 24 .film-strip-view .frame {
21 display: flex; 25 display: flex;
22 flex-direction: column; 26 flex-direction: column;
23 align-items: center; 27 align-items: center;
(...skipping 28 matching lines...) Expand all
52 max-width: 80px; 56 max-width: 80px;
53 max-height: 50px; 57 max-height: 50px;
54 pointer-events: none; 58 pointer-events: none;
55 border-right: solid 1px #eee; 59 border-right: solid 1px #eee;
56 } 60 }
57 61
58 .film-strip-view .frame .time { 62 .film-strip-view .frame .time {
59 font-size: 10px; 63 font-size: 10px;
60 margin-top: 4px; 64 margin-top: 4px;
61 } 65 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/components_lazy/FilmStripView.js ('k') | Source/devtools/front_end/timeline/TimelinePanel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698