| OLD | NEW |
| 1 /* Copyright 2015 The Chromium Authors. All rights reserved. | 1 /* Copyright 2015 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 :host { | 5 :host { |
| 6 display: flex; | 6 display: flex; |
| 7 flex-direction: column; | 7 flex-direction: column; |
| 8 } | 8 } |
| 9 | 9 |
| 10 #date { | 10 #date { |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 #name, | 106 #name, |
| 107 #file-link { | 107 #file-link { |
| 108 font-weight: 500; | 108 font-weight: 500; |
| 109 word-break: break-all; | 109 word-break: break-all; |
| 110 } | 110 } |
| 111 | 111 |
| 112 #name { | 112 #name { |
| 113 -webkit-margin-end: 12px; /* Only really affects #tag. */ | 113 -webkit-margin-end: 12px; /* Only really affects #tag. */ |
| 114 } | 114 } |
| 115 | 115 |
| 116 #resume, | 116 #pause-or-resume, |
| 117 .is-active :-webkit-any(#name, #file-link, #pause, #show) { | 117 .is-active :-webkit-any(#name, #file-link, #show) { |
| 118 color: rgb(51, 103, 214); | 118 color: rgb(51, 103, 214); |
| 119 } | 119 } |
| 120 | 120 |
| 121 #tag { | 121 #tag { |
| 122 color: #5a5a5a; | 122 color: #5a5a5a; |
| 123 font-weight: 500; | 123 font-weight: 500; |
| 124 } | 124 } |
| 125 | 125 |
| 126 #url { | 126 #url { |
| 127 color: inherit; | 127 color: inherit; |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 } | 203 } |
| 204 | 204 |
| 205 #incognito { | 205 #incognito { |
| 206 bottom: 20px; | 206 bottom: 20px; |
| 207 content: -webkit-image-set( | 207 content: -webkit-image-set( |
| 208 url(chrome://downloads/1x/incognito_marker.png) 1x, | 208 url(chrome://downloads/1x/incognito_marker.png) 1x, |
| 209 url(chrome://downloads/2x/incognito_marker.png) 2x); | 209 url(chrome://downloads/2x/incognito_marker.png) 2x); |
| 210 position: absolute; | 210 position: absolute; |
| 211 right: 10px; | 211 right: 10px; |
| 212 } | 212 } |
| OLD | NEW |