| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |