Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(351)

Side by Side Diff: ui/file_manager/gallery/css/gallery.css

Issue 2027553006: Truncate long file name with ellipsis. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comment. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698