OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |