| OLD | NEW |
| 1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
| 4 | 4 |
| 5 /* Controls bar. */ | 5 /* Controls bar. */ |
| 6 .controls { | 6 .controls { |
| 7 align-items: center; | 7 align-items: center; |
| 8 background-color: white; | 8 background-color: white; |
| 9 display: flex; | 9 display: flex; |
| 10 flex-direction: column; | 10 flex-direction: column; |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 /* Invisible div used to compute the width required for the elapsed time. */ | 202 /* Invisible div used to compute the width required for the elapsed time. */ |
| 203 .time-controls > .time > .current { | 203 .time-controls > .time > .current { |
| 204 align-items: center; | 204 align-items: center; |
| 205 display: flex; | 205 display: flex; |
| 206 flex-direction: row; | 206 flex-direction: row; |
| 207 height: 100%; | 207 height: 100%; |
| 208 justify-content: flex-end; | 208 justify-content: flex-end; |
| 209 position: absolute; | 209 position: absolute; |
| 210 top: -1px; | 210 top: -1px; |
| 211 } | 211 } |
| 212 |
| 213 .control-panel { |
| 214 --files-ripple: { |
| 215 background-color: black; |
| 216 }; |
| 217 --files-toggle-ripple: { |
| 218 background-color: black; |
| 219 }; |
| 220 --files-toggle-ripple-activated: { |
| 221 background-color: black; |
| 222 }; |
| 223 } |
| OLD | NEW |