Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 } | |
| 65 | |
| 66 .audits2-filmstrip { | |
| 67 display: flex; | |
| 68 flex-direction: row; | |
| 69 overflow: auto; | |
| 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 flex-direction: row; | |
| 84 align-items: center; | |
| 85 pointer-events: none; | |
| 86 margin: 4px 0 2px; | |
| 87 border: 2px solid transparent; | |
| 88 } | |
| 89 | |
| 90 .audits2-filmstrip .frame .thumbnail img { | |
| 91 height: auto; | |
| 92 width: 50px; | |
| 93 pointer-events: none; | |
| 94 box-shadow: 0 0 3px #bbb; | |
|
paulirish
2017/05/04 23:06:31
if we have empty frames in our filmstrip at 1,2,3
| |
| 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 } | |
| 105 | |
| 106 .audits2-timeline-subtitle { | |
| 107 color: #01579B; | |
| 108 } | |
| 109 | |
| 110 .audits2-timeline-bar { | |
| 111 border-top: 4px solid #03A9F4; | |
| 112 } | |
| OLD | NEW |