Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / Source / devtools / front_end / components_lazy / filmStripView.css
blob34143c6313684928c8d3920bfa33f931db072d93
1 /*
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
4 * found in the LICENSE file.
5 */
7 .film-strip-view {
8 overflow-x: auto;
9 overflow-y: hidden;
10 align-content: flex-start;
11 min-height: 81px;
14 .film-strip-view.time-based .frame .time {
15 display: none;
18 .film-strip-view .label {
19 margin: auto;
20 font-size: 18px;
21 color: #999;
24 .film-strip-view .frame {
25 display: flex;
26 flex-direction: column;
27 align-items: center;
28 padding: 4px;
29 flex: none;
30 cursor: pointer;
33 .film-strip-view .frame-limit-reached {
34 font-size: 24px;
35 color: #888;
36 justify-content: center;
37 display: inline-flex;
38 flex-direction: column;
39 flex: none;
42 .film-strip-view .frame .thumbnail {
43 min-width: 24px;
44 display: flex;
45 flex-direction: row;
46 align-items: center;
47 pointer-events: none;
48 margin: 4px 0 2px;
49 border: 2px solid transparent;
52 .film-strip-view .frame:hover .thumbnail {
53 border-color: #FBCA46;
56 .film-strip-view .frame .thumbnail img {
57 height: auto;
58 width: auto;
59 max-width: 80px;
60 max-height: 50px;
61 pointer-events: none;
62 box-shadow: 0 0 3px #bbb;
63 flex: 0 0 auto;
66 .film-strip-view .frame:hover .thumbnail img {
67 box-shadow: none;
70 .film-strip-view .frame .time {
71 font-size: 10px;
72 margin-top: 2px;