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

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

Issue 15868002: Files.app: Fixed the bug that the search box is not hidden when window is shrink. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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 | no next file » | 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 785 matching lines...) Expand 10 before | Expand all | Expand 10 after
796 background-repeat: no-repeat; 796 background-repeat: no-repeat;
797 color: #333; 797 color: #333;
798 display: -webkit-box; 798 display: -webkit-box;
799 height: 29px; 799 height: 29px;
800 line-height: 27px; 800 line-height: 27px;
801 max-width: 150px; 801 max-width: 150px;
802 transition: max-width 200ms; 802 transition: max-width 200ms;
803 width: 100%; 803 width: 100%;
804 } 804 }
805 805
806 #search-box[hidden] {
807 display: none; /* Required, since overriden by #search-box. */
808 }
809
810 body[new-ui] #search-box { 806 body[new-ui] #search-box {
811 -webkit-margin-end: 0; 807 -webkit-margin-end: 0;
812 -webkit-padding-after: 0; 808 -webkit-padding-after: 0;
813 -webkit-padding-before: 0; 809 -webkit-padding-before: 0;
814 -webkit-padding-end: 52px; 810 -webkit-padding-end: 52px;
815 -webkit-padding-start: 46px; 811 -webkit-padding-start: 46px;
816 background: -webkit-image-set( 812 background: -webkit-image-set(
817 url('../images/files/ui/new-ui/search_icon_inactive.png') 1x, 813 url('../images/files/ui/new-ui/search_icon_inactive.png') 1x,
818 url('../images/files/ui/new-ui/2x/search_icon_inactive.png') 2x); 814 url('../images/files/ui/new-ui/2x/search_icon_inactive.png') 2x);
819 background-position: 13px center; 815 background-position: 13px center;
820 background-repeat: no-repeat; 816 background-repeat: no-repeat;
821 border-style: none; 817 border-style: none;
822 display: block; 818 display: block;
823 height: 48px; 819 height: 48px;
824 line-height: 1em; 820 line-height: 1em;
825 max-width: none; 821 max-width: none;
826 position: relative; 822 position: relative;
827 transition: width 0; 823 transition: width 0;
828 width: 58px; 824 width: 58px;
829 } 825 }
830 826
827 body #search-box[hidden] {
828 display: none; /* Required, since overriden by #search-box. */
829 }
830
831 html[dir='rtl'] #search-box { 831 html[dir='rtl'] #search-box {
832 background-position: right 4px top 5.5px; 832 background-position: right 4px top 5.5px;
833 } 833 }
834 834
835 html[dir='rtl'] body[new-ui] #search-box { 835 html[dir='rtl'] body[new-ui] #search-box {
836 background-position: right 13px center; 836 background-position: right 13px center;
837 } 837 }
838 838
839 #search-box:hover { 839 #search-box:hover {
840 border: 1px solid #b9b9b9; 840 border: 1px solid #b9b9b9;
(...skipping 1515 matching lines...) Expand 10 before | Expand all | Expand 10 after
2356 body[new-ui] #iframe-drag-area { 2356 body[new-ui] #iframe-drag-area {
2357 -webkit-app-region: drag; 2357 -webkit-app-region: drag;
2358 height: 45px; 2358 height: 45px;
2359 left: 64px; 2359 left: 64px;
2360 position: absolute; 2360 position: absolute;
2361 right: 70px; 2361 right: 70px;
2362 top: 0; 2362 top: 0;
2363 width: auto; 2363 width: auto;
2364 z-index: 101; 2364 z-index: 101;
2365 } 2365 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698