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

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

Issue 1063663002: Gallery: Set the width of name input box exact 100%. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 position: absolute; 296 position: absolute;
297 transition: visibility 0ms linear 180ms, all 180ms linear; 297 transition: visibility 0ms linear 180ms, all 180ms linear;
298 width: 260px; 298 width: 260px;
299 } 299 }
300 300
301 .gallery .filename-spacer * { 301 .gallery .filename-spacer * {
302 color: white; 302 color: white;
303 } 303 }
304 304
305 .gallery .filename-spacer .namebox { 305 .gallery .filename-spacer .namebox {
306 height: 22px;
307 top: 15px;
308 }
309
310 .gallery[editing] .filename-spacer .namebox {
311 height: 21px;
312 top: 5px;
313 }
314
315 .gallery .filename-spacer .namebox {
316 background-color: transparent; 306 background-color: transparent;
317 border: none; 307 border: none;
318 box-sizing: border-box; 308 box-sizing: border-box;
319 cursor: pointer; 309 cursor: pointer;
320 display: block; 310 display: block;
321 font-size: 120%; 311 font-size: 120%;
312 height: 22px;
322 outline: none; 313 outline: none;
323 overflow: hidden; 314 overflow: hidden;
324 padding: 0 3px; 315 padding: 0 3px;
325 position: absolute; 316 position: absolute;
326 text-overflow: ellipsis; 317 text-overflow: ellipsis;
318 top: 15px;
327 white-space: nowrap; 319 white-space: nowrap;
320 width: 100%;
321 }
322
323 .gallery[editing] .filename-spacer .namebox {
324 height: 21px;
325 top: 5px;
328 } 326 }
329 327
330 .gallery .filename-spacer .namebox[disabled] { 328 .gallery .filename-spacer .namebox[disabled] {
331 -webkit-user-select: none; 329 -webkit-user-select: none;
332 cursor: default; 330 cursor: default;
333 } 331 }
334 332
335 .gallery .filename-spacer .namebox:not([disabled]):not(:focus):hover { 333 .gallery .filename-spacer .namebox:not([disabled]):not(:focus):hover {
336 background-color: rgba(48, 48, 48, 1.0); 334 background-color: rgba(48, 48, 48, 1.0);
337 } 335 }
(...skipping 1018 matching lines...) Expand 10 before | Expand all | Expand 10 after
1356 background-color: rgba(255, 0, 0, 0.3); 1354 background-color: rgba(255, 0, 0, 0.3);
1357 } 1355 }
1358 1356
1359 .debug-me .load-target-external-metadata::before { 1357 .debug-me .load-target-external-metadata::before {
1360 background-color: rgba(0, 255, 0, 0.3); 1358 background-color: rgba(0, 255, 0, 0.3);
1361 } 1359 }
1362 1360
1363 .debug-me .load-target-file-entry::before { 1361 .debug-me .load-target-file-entry::before {
1364 background-color: rgba(0, 0, 255, 0.3); 1362 background-color: rgba(0, 0, 255, 0.3);
1365 } 1363 }
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