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

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

Issue 16043005: Files.app: Added a header to the middle bar and polish the design. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased 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 | chrome/browser/resources/file_manager/main_new_ui.html » ('j') | 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 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 white-space: nowrap; 344 white-space: nowrap;
345 } 345 }
346 346
347 body[new-ui] #volume-list .volume-icon { 347 body[new-ui] #volume-list .volume-icon {
348 background-position: center 2px; 348 background-position: center 2px;
349 background-repeat: no-repeat; 349 background-repeat: no-repeat;
350 height: 24px; 350 height: 24px;
351 width: 24px; 351 width: 24px;
352 } 352 }
353 353
354 #middlebar-header {
355 -webkit-box-sizing: border-box;
356 -webkit-padding-start: 20px;
357 border-right: 1px solid rgb(212, 212, 212);
358 color: rgb(100, 100, 100);
359 height: 47px;
360 line-height: 40px;
361 position: absolute;
362 width: 100%;
363 }
354 364
355 #directory-tree { 365 #directory-tree {
356 bottom: 0; 366 bottom: 0;
357 left: 0; 367 left: 0;
358 overflow-x: hidden; 368 overflow-x: hidden;
359 overflow-y: auto; 369 overflow-y: auto;
360 position: absolute; 370 position: absolute;
361 right: 0; 371 right: 0;
362 top: 0; 372 top: 47px;
363 } 373 }
364 374
365 body[new-ui] #directory-tree { 375 body[new-ui] #directory-tree {
366 border-right: 1px solid rgb(212, 212, 212); 376 border-right: 1px solid rgb(212, 212, 212);
367 padding-bottom: 52px; /* height of the preview panel */ 377 padding-bottom: 52px; /* height of the preview panel */
368 } 378 }
369 379
370 #directory-tree .tree-row { 380 #directory-tree .tree-row {
371 background-image: none; 381 background-image: none;
372 border: none; 382 border: none;
(...skipping 1214 matching lines...) Expand 10 before | Expand all | Expand 10 after
1587 .table-header { 1597 .table-header {
1588 background-color: #f5f5f5; 1598 background-color: #f5f5f5;
1589 border-bottom: 1px #d2d2d2 solid; 1599 border-bottom: 1px #d2d2d2 solid;
1590 box-sizing: border-box; 1600 box-sizing: border-box;
1591 height: 27px; 1601 height: 27px;
1592 } 1602 }
1593 1603
1594 body[new-ui] .table-header { 1604 body[new-ui] .table-header {
1595 background-color: transparent; 1605 background-color: transparent;
1596 border-bottom: none; 1606 border-bottom: none;
1597 height: 40px; 1607 height: 47px;
1598 } 1608 }
1599 1609
1600 .table-header-sort-image-desc::after { 1610 .table-header-sort-image-desc::after {
1601 -webkit-padding-start: 13px; 1611 -webkit-padding-start: 13px;
1602 background-image: -webkit-image-set( 1612 background-image: -webkit-image-set(
1603 url('../images/files/ui/sort_desc.png') 1x, 1613 url('../images/files/ui/sort_desc.png') 1x,
1604 url('../images/files/ui/2x/sort_desc.png') 2x); 1614 url('../images/files/ui/2x/sort_desc.png') 2x);
1605 background-position: center center; 1615 background-position: center center;
1606 background-repeat: no-repeat; 1616 background-repeat: no-repeat;
1607 color: #888; 1617 color: #888;
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
1715 #default-actions-list li { 1725 #default-actions-list li {
1716 border: 1px solid white; 1726 border: 1px solid white;
1717 border-left-width: 0; 1727 border-left-width: 0;
1718 border-right-width: 0; 1728 border-right-width: 0;
1719 height: 39px; 1729 height: 39px;
1720 padding-bottom: 1px; 1730 padding-bottom: 1px;
1721 padding-top: 1px; 1731 padding-top: 1px;
1722 } 1732 }
1723 1733
1724 body[new-ui] #list-container li.table-row { 1734 body[new-ui] #list-container li.table-row {
1725 height: 30px; 1735 border-style: none;
1736 height: 29px;
1737 margin: 0;
1738 padding-bottom: 0;
1739 padding-top: 0;
1726 } 1740 }
1727 1741
1728 body[new-ui] #default-actions-list li { 1742 body[new-ui] #default-actions-list li {
1729 border-style: none; 1743 border-style: none;
1730 } 1744 }
1731 1745
1732 /* The icon in the name column. See file_types.css for specific icons. */ 1746 /* The icon in the name column. See file_types.css for specific icons. */
1733 .detail-icon { 1747 .detail-icon {
1734 height: 24px; 1748 height: 24px;
1735 width: 24px; 1749 width: 24px;
(...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after
2387 body[new-ui] #iframe-drag-area { 2401 body[new-ui] #iframe-drag-area {
2388 -webkit-app-region: drag; 2402 -webkit-app-region: drag;
2389 height: 45px; 2403 height: 45px;
2390 left: 64px; 2404 left: 64px;
2391 position: absolute; 2405 position: absolute;
2392 right: 70px; 2406 right: 70px;
2393 top: 0; 2407 top: 0;
2394 width: auto; 2408 width: auto;
2395 z-index: 101; 2409 z-index: 101;
2396 } 2410 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/main_new_ui.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698