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

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

Issue 10843063: Promo for buying Drive storage when you're low on space (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments Created 8 years, 4 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 576 matching lines...) Expand 10 before | Expand all | Expand 10 after
587 font-size: 13px; 587 font-size: 13px;
588 height: 57px; 588 height: 57px;
589 overflow: hidden; 589 overflow: hidden;
590 padding-left: 57px; /* Make space for the icon. */ 590 padding-left: 57px; /* Make space for the icon. */
591 } 591 }
592 592
593 .downloads-warning[hidden] { 593 .downloads-warning[hidden] {
594 height: 0; 594 height: 0;
595 } 595 }
596 596
597 /* Drive space warning banner. */
598 .gdrive-space-warning {
599 -webkit-box-align: center;
600 -webkit-box-orient: horizontal;
601 -webkit-transition: height 70ms linear;
602 background-image: url('../images/files/ui/clouds.png');
603 background-repeat: repeat-x;
604 background-size: 150px 44px;
605 border-top: 1px solid rgba(0, 0, 0, 0.1);
606 color: #333;
607 display: -webkit-box;
608 font-size: 13px;
609 height: 44px;
610 overflow: hidden;
611 position: relative;
612 }
613
614 .gdrive-space-warning[hidden] {
615 border-top-width: 0;
616 height: 0;
617 }
618
619 .gdrive-space-warning .gdrive-icon {
620 background-image: -webkit-image-set(
621 url('../images/files/ui/gdrive_logo.png') 1x,
622 url('../images/files/ui/2x/gdrive_logo.png') 2x);
623 background-position: center;
624 background-repeat: no-repeat;
625 background-size: 25px 22px;
626 height: 44px;
627 width: 50px;
628 }
629
630 .gdrive-space-warning .gdrive-text {
631 margin-right: 11px;
632 }
633
597 /* The cr.ui.Grid representing the detailed file list. */ 634 /* The cr.ui.Grid representing the detailed file list. */
598 .thumbnail-grid { 635 .thumbnail-grid {
599 overflow-y: auto; 636 overflow-y: auto;
600 width: 100%; 637 width: 100%;
601 } 638 }
602 639
603 /* Common styles for the grid view and draggable thumbnails. */ 640 /* Common styles for the grid view and draggable thumbnails. */
604 .thumbnail-item { 641 .thumbnail-item {
605 padding: 0; 642 padding: 0;
606 position: relative; 643 position: relative;
(...skipping 858 matching lines...) Expand 10 before | Expand all | Expand 10 after
1465 height: 100%; 1502 height: 100%;
1466 } 1503 }
1467 1504
1468 #list-container .table-header-cell:hover { 1505 #list-container .table-header-cell:hover {
1469 background-color: #f2f2f2; 1506 background-color: #f2f2f2;
1470 } 1507 }
1471 1508
1472 button:focus { 1509 button:focus {
1473 outline-color: rgb(77, 144, 254); 1510 outline-color: rgb(77, 144, 254);
1474 } 1511 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698