| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 The Chromium Authors. All rights reserved. | 2 * Copyright 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 .service-worker { | 7 .service-worker { |
| 8 padding: 5px 5px 5px 8px; | 8 padding: 5px 5px 5px 8px; |
| 9 border-bottom: 1px solid #aaa; | 9 border-bottom: 1px solid #aaa; |
| 10 display: flex; | 10 display: flex; |
| 11 align-items: center; | 11 align-items: center; |
| 12 } | 12 } |
| 13 | 13 |
| 14 .service-worker:last-child { |
| 15 border-bottom: none; |
| 16 } |
| 17 |
| 14 .service-worker-scope { | 18 .service-worker-scope { |
| 15 color: #777; | 19 color: #777; |
| 16 flex: auto; | 20 flex: auto; |
| 17 margin: 5px 5px 0 0; | 21 margin: 5px 5px 0 0; |
| 18 white-space: nowrap; | 22 white-space: nowrap; |
| 19 overflow: hidden; | 23 overflow: hidden; |
| 20 text-overflow: ellipsis; | 24 text-overflow: ellipsis; |
| 21 } | 25 } |
| OLD | NEW |