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

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: 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.col-resize * { 5 html.col-resize * {
6 cursor: col-resize !important; 6 cursor: col-resize !important;
7 } 7 }
8 8
9 /* Outer frame of the dialog. */ 9 /* Outer frame of the dialog. */
10 body { 10 body {
(...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 font-size: 13px; 583 font-size: 13px;
584 height: 57px; 584 height: 57px;
585 overflow: hidden; 585 overflow: hidden;
586 padding-left: 57px; /* Make space for the icon. */ 586 padding-left: 57px; /* Make space for the icon. */
587 } 587 }
588 588
589 .downloads-warning[hidden] { 589 .downloads-warning[hidden] {
590 height: 0; 590 height: 0;
591 } 591 }
592 592
593 /* Drive space warning banner. */
594 .gdrive-space-warning {
595 -webkit-box-align: center;
596 -webkit-box-orient: horizontal;
597 -webkit-transition: height 70ms linear;
598 background-image: url('../images/files/ui/clouds.png');
599 background-repeat: repeat-x;
600 background-size: 150px 44px;
601 border-top: 1px solid rgba(0,0,0,0.1);
SeRya 2012/08/03 10:12:53 Spaces after comma
Vladislav Kaznacheev 2012/08/03 10:17:49 Done.
602 color: #333;
603 display: -webkit-box;
604 font-size: 13px;
605 height: 44px;
606 overflow: hidden;
607 position: relative;
608 }
609
610 .gdrive-space-warning[hidden] {
611 border-top-width: 0;
612 height: 0;
613 }
614
615 .gdrive-space-warning .gdrive-icon {
616 background-image: -webkit-image-set(
617 url('../images/files/ui/gdrive_logo.png') 1x,
618 url('../images/files/ui/2x/gdrive_logo.png') 2x);
619 background-position: center;
620 background-repeat: no-repeat;
621 background-size: 25px 22px;
622 height: 44px;
623 width: 50px;
624 }
625
626 .gdrive-space-warning .gdrive-text {
627 margin-right: 11px;
628 }
629
593 /* The cr.ui.Grid representing the detailed file list. */ 630 /* The cr.ui.Grid representing the detailed file list. */
594 .thumbnail-grid { 631 .thumbnail-grid {
595 overflow-y: auto; 632 overflow-y: auto;
596 width: 100%; 633 width: 100%;
597 } 634 }
598 635
599 /* Common styles for the grid view and draggable thumbnails. */ 636 /* Common styles for the grid view and draggable thumbnails. */
600 .thumbnail-item { 637 .thumbnail-item {
601 padding: 0; 638 padding: 0;
602 position: relative; 639 position: relative;
(...skipping 858 matching lines...) Expand 10 before | Expand all | Expand 10 after
1461 height: 100%; 1498 height: 100%;
1462 } 1499 }
1463 1500
1464 #list-container .table-header-cell:hover { 1501 #list-container .table-header-cell:hover {
1465 background-color: #f2f2f2; 1502 background-color: #f2f2f2;
1466 } 1503 }
1467 1504
1468 button:focus { 1505 button:focus {
1469 outline-color: rgb(77, 144, 254); 1506 outline-color: rgb(77, 144, 254);
1470 } 1507 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698