| OLD | NEW |
| 1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2013 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 #outer, | 5 #outer, |
| 6 #empty, | 6 #empty, |
| 7 #open-folder, | 7 #open-folder, |
| 8 .file-url, | 8 .file-url, |
| 9 .time-left, | 9 .time-left, |
| 10 .more-left { | 10 .more-left { |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 color-stop(.25, rgba(255, 255, 255, .2)), | 196 color-stop(.25, rgba(255, 255, 255, .2)), |
| 197 color-stop(.25, transparent), | 197 color-stop(.25, transparent), |
| 198 color-stop(.5, transparent), | 198 color-stop(.5, transparent), |
| 199 color-stop(.5, rgba(255, 255, 255, .2)), | 199 color-stop(.5, rgba(255, 255, 255, .2)), |
| 200 color-stop(.75, rgba(255, 255, 255, .2)), | 200 color-stop(.75, rgba(255, 255, 255, .2)), |
| 201 color-stop(.75, transparent), | 201 color-stop(.75, transparent), |
| 202 to(transparent)); | 202 to(transparent)); |
| 203 z-index: 1; | 203 z-index: 1; |
| 204 -webkit-background-size: 50px 50px; | 204 -webkit-background-size: 50px 50px; |
| 205 background-size: 50px 50px; | 205 background-size: 50px 50px; |
| 206 -webkit-animation: move 2s linear infinite; | 206 animation: move 2s linear infinite; |
| 207 overflow: hidden; | 207 overflow: hidden; |
| 208 } | 208 } |
| 209 | 209 |
| 210 @-webkit-keyframes move { | 210 @keyframes move { |
| 211 0% { background-position: 0 0; } | 211 0% { background-position: 0 0; } |
| 212 100% { background-position: 50px 50px; } | 212 100% { background-position: 50px 50px; } |
| 213 } | 213 } |
| 214 | 214 |
| 215 .url { | 215 .url { |
| 216 color: grey; | 216 color: grey; |
| 217 max-width: 700px; | 217 max-width: 700px; |
| 218 overflow: hidden; | 218 overflow: hidden; |
| 219 display: block; | 219 display: block; |
| 220 } | 220 } |
| 221 | 221 |
| 222 #text-width-probe { | 222 #text-width-probe { |
| 223 position: absolute; | 223 position: absolute; |
| 224 top: -100px; | 224 top: -100px; |
| 225 left: 0; | 225 left: 0; |
| 226 } | 226 } |
| OLD | NEW |