| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2016 The Chromium Authors. All rights reserved. | 2 * Copyright 2016 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 .report-row { | 7 .report-row { |
| 8 display: flex; | 8 display: flex; |
| 9 align-items: center; | 9 align-items: center; |
| 10 } | 10 } |
| 11 | 11 |
| 12 .clear-storage-button .report-row { | 12 .clear-storage-button .report-row { |
| 13 margin: 0; | 13 margin: 0 0 0 20px; |
| 14 display: flex; | 14 display: flex; |
| 15 justify-content: flex-end; | |
| 16 } | 15 } |
| 17 | 16 |
| 18 .link { | 17 .link { |
| 19 margin-left: 10px; | 18 margin-left: 10px; |
| 20 display: none; | 19 display: none; |
| 21 } | 20 } |
| 22 | 21 |
| 23 .report-row:hover .link { | 22 .report-row:hover .link { |
| 24 display: inline; | 23 display: inline; |
| 25 } | 24 } |
| OLD | NEW |