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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
334 | 334 |
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 text-overflow: ellipsis; |
344 width: -webkit-fit-content; | 345 width: -webkit-fit-content; |
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 { |
(...skipping 1007 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 |