Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 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 body { | 5 body { |
| 6 -webkit-user-select: none; | 6 -webkit-user-select: none; |
| 7 font-size: 84%; | 7 font-size: 84%; |
| 8 margin: 0; | 8 margin: 0; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 335 .filename-spacer { | 335 .filename-spacer { |
| 336 -webkit-margin-start: 16px; | 336 -webkit-margin-start: 16px; |
| 337 flex: 1 0 auto; | 337 flex: 1 0 auto; |
| 338 } | 338 } |
| 339 | 339 |
| 340 #rename-input { | 340 #rename-input { |
| 341 margin: 8px 0; | 341 margin: 8px 0; |
| 342 min-width: 160px; | 342 min-width: 160px; |
| 343 padding: 4px 0; | 343 padding: 4px 0; |
| 344 width: -webkit-fit-content; | 344 width: -webkit-fit-content; |
| 345 text-overflow: ellipsis; | |
|
fukino
2016/06/06 09:56:05
nit: Sort the properties.
oka
2016/06/07 09:17:13
Done.
| |
| 345 } | 346 } |
| 346 | 347 |
| 347 #rename-input > input { | 348 #rename-input > input { |
| 348 color: white; | 349 color: white; |
| 349 } | 350 } |
| 350 | 351 |
| 351 /* Bubble */ | 352 /* Bubble */ |
| 352 | 353 |
| 353 .gallery .toolbar .bubble { | 354 .gallery .toolbar .bubble { |
| 354 bottom: 65px; | 355 bottom: 65px; |
| (...skipping 1006 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1361 .thumbnail-view .animation-thumbnail { | 1362 .thumbnail-view .animation-thumbnail { |
| 1362 background-repeat: no-repeat; | 1363 background-repeat: no-repeat; |
| 1363 background-size: cover; | 1364 background-size: cover; |
| 1364 display: none; | 1365 display: none; |
| 1365 position: absolute; | 1366 position: absolute; |
| 1366 } | 1367 } |
| 1367 | 1368 |
| 1368 .thumbnail-view .animation-thumbnail.animating { | 1369 .thumbnail-view .animation-thumbnail.animating { |
| 1369 display: block; | 1370 display: block; |
| 1370 } | 1371 } |
| OLD | NEW |