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

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

Issue 12208084: Removed a context menu from Files.app's left nav, since it became redundant. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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
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 1549 matching lines...) Expand 10 before | Expand all | Expand 10 after
1560 padding: 10px; 1560 padding: 10px;
1561 position: absolute; 1561 position: absolute;
1562 right: 0; 1562 right: 0;
1563 top: 28px; /* Leave room for the file list header. */ 1563 top: 28px; /* Leave room for the file list header. */
1564 } 1564 }
1565 1565
1566 .dialog-container:not([drive-welcome='page']) #no-search-results[show] { 1566 .dialog-container:not([drive-welcome='page']) #no-search-results[show] {
1567 display: block; 1567 display: block;
1568 } 1568 }
1569 1569
1570 #downloads-root-context-menu { 1570 #drive-space-info {
1571 min-width: 250px;
1572 }
1573
1574 #drive-space-info,
1575 #downloads-space-info {
1576 -webkit-box-pack: justify; 1571 -webkit-box-pack: justify;
1577 display: -webkit-box; 1572 display: -webkit-box;
1578 } 1573 }
1579 1574
1580 #drive-space-info-label, 1575 #drive-space-info-label {
1581 #downloads-space-info-label {
1582 display: block; 1576 display: block;
1583 } 1577 }
1584 1578
1585 #drive-space-info > div, 1579 #drive-space-info > div {
1586 #downloads-space-info > div {
1587 -webkit-box-flex: 1; 1580 -webkit-box-flex: 1;
1588 border: 1px solid rgb(192, 192, 192); 1581 border: 1px solid rgb(192, 192, 192);
1589 display: block; 1582 display: block;
1590 height: 11px; 1583 height: 11px;
1591 margin: 8px 0 9px 10px; 1584 margin: 8px 0 9px 10px;
1592 min-width: 30px; 1585 min-width: 30px;
1593 } 1586 }
1594 1587
1595 #drive-space-info-bar[pending], 1588 #drive-space-info-bar[pending] {
1596 #downloads-space-info-bar[pending] {
1597 -webkit-animation-duration: 800ms; 1589 -webkit-animation-duration: 800ms;
1598 -webkit-animation-iteration-count: infinite; 1590 -webkit-animation-iteration-count: infinite;
1599 -webkit-animation-name: bg; 1591 -webkit-animation-name: bg;
1600 -webkit-animation-timing-function: linear; 1592 -webkit-animation-timing-function: linear;
1601 background-color: rgb(192, 192, 192); 1593 background-color: rgb(192, 192, 192);
1602 background-image: -webkit-linear-gradient(315deg, transparent, 1594 background-image: -webkit-linear-gradient(315deg, transparent,
1603 transparent 33%, rgba(0, 0, 0, 0.12) 33%, rgba(0, 0, 0, 0.12) 66%, 1595 transparent 33%, rgba(0, 0, 0, 0.12) 33%, rgba(0, 0, 0, 0.12) 66%,
1604 transparent 66%, transparent); 1596 transparent 66%, transparent);
1605 background-position: 0 0; 1597 background-position: 0 0;
1606 background-repeat: repeat-x; 1598 background-repeat: repeat-x;
1607 background-size: 16px 8px; 1599 background-size: 16px 8px;
1608 } 1600 }
1609 1601
1610 #drive-space-info-bar, 1602 #drive-space-info-bar {
1611 #downloads-space-info-bar {
1612 background-color: rgb(192, 192, 192); 1603 background-color: rgb(192, 192, 192);
1613 border: 1px solid rgb(255, 255, 255); 1604 border: 1px solid rgb(255, 255, 255);
1614 box-sizing: border-box; 1605 box-sizing: border-box;
1615 height: 100%; 1606 height: 100%;
1616 width: 50%; 1607 width: 50%;
1617 } 1608 }
1618 1609
1619 #list-container .table-header-inner { 1610 #list-container .table-header-inner {
1620 height: 100%; 1611 height: 100%;
1621 } 1612 }
(...skipping 12 matching lines...) Expand all
1634 1625
1635 #default-action-dialog { 1626 #default-action-dialog {
1636 min-width: 300px; 1627 min-width: 300px;
1637 width: auto; 1628 width: auto;
1638 } 1629 }
1639 1630
1640 .drive-welcome-wrapper { 1631 .drive-welcome-wrapper {
1641 /* drive_welcome.css will override it once loaded. */ 1632 /* drive_welcome.css will override it once loaded. */
1642 display: none; 1633 display: none;
1643 } 1634 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698