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

Side by Side Diff: chrome/browser/resources/file_manager/css/file_manager.css

Issue 16007010: Fix vertical alignment in the rename field in Files.app. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
« 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) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 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 html { 5 html {
6 height: 100%; 6 height: 100%;
7 } 7 }
8 8
9 html.col-resize * { 9 html.col-resize * {
10 cursor: col-resize !important; 10 cursor: col-resize !important;
(...skipping 1378 matching lines...) Expand 10 before | Expand all | Expand 10 after
1389 this rule. */ 1389 this rule. */
1390 .table-row-cell > div { 1390 .table-row-cell > div {
1391 display: block; 1391 display: block;
1392 overflow: hidden; 1392 overflow: hidden;
1393 text-overflow: ellipsis; 1393 text-overflow: ellipsis;
1394 white-space: nowrap; 1394 white-space: nowrap;
1395 } 1395 }
1396 1396
1397 /* Text box used for renaming in the detail list. */ 1397 /* Text box used for renaming in the detail list. */
1398 .table-row-cell input.rename { 1398 .table-row-cell input.rename {
1399 -webkit-margin-start: -3px;
1400 border-width: 0; 1399 border-width: 0;
1401 line-height: 20px; 1400 padding: 2px 0;
1402 } 1401 }
1403 1402
1404 input.rename:focus { 1403 input.rename:focus {
1405 outline-color: rgb(77, 144, 254); 1404 outline-color: rgb(77, 144, 254);
1406 } 1405 }
1407 1406
1408 input.rename { 1407 input.rename {
1409 font: inherit; 1408 font: inherit;
1410 line-height: 1; 1409 line-height: 1;
1411 text-align: inherit; 1410 text-align: inherit;
(...skipping 993 matching lines...) Expand 10 before | Expand all | Expand 10 after
2405 body[new-ui] #iframe-drag-area { 2404 body[new-ui] #iframe-drag-area {
2406 -webkit-app-region: drag; 2405 -webkit-app-region: drag;
2407 height: 45px; 2406 height: 45px;
2408 left: 64px; 2407 left: 64px;
2409 position: absolute; 2408 position: absolute;
2410 right: 70px; 2409 right: 70px;
2411 top: 0; 2410 top: 0;
2412 width: auto; 2411 width: auto;
2413 z-index: 101; 2412 z-index: 101;
2414 } 2413 }
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