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

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

Issue 12217164: Add restrictions for min and max width of the left nav in Files.app to avoid breaking layout. (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
« 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 -webkit-box-flex: 1; 158 -webkit-box-flex: 1;
159 -webkit-box-orient: vertical; 159 -webkit-box-orient: vertical;
160 display: -webkit-box; 160 display: -webkit-box;
161 } 161 }
162 162
163 /* Roots list at the left. */ 163 /* Roots list at the left. */
164 .dialog-sidebar { 164 .dialog-sidebar {
165 -webkit-box-flex: 0; 165 -webkit-box-flex: 0;
166 background-color: #e6e6e6; 166 background-color: #e6e6e6;
167 display: -webkit-box; 167 display: -webkit-box;
168 max-width: 50%;
169 min-width: 45px;
168 overflow: hidden; 170 overflow: hidden;
169 position: relative; 171 position: relative;
170 width: 168px; 172 width: 168px;
171 } 173 }
172 174
173 /* A vertical splitter between the roots list and the file list. It is actually 175 /* A vertical splitter between the roots list and the file list. It is actually
174 a transparent area centered on the roots list right border.*/ 176 a transparent area centered on the roots list right border.*/
175 div.sidebar-splitter { 177 div.sidebar-splitter {
176 -webkit-box-flex: 0; 178 -webkit-box-flex: 0;
177 cursor: col-resize; 179 cursor: col-resize;
(...skipping 1442 matching lines...) Expand 10 before | Expand all | Expand 10 after
1620 1622
1621 #default-action-dialog { 1623 #default-action-dialog {
1622 min-width: 300px; 1624 min-width: 300px;
1623 width: auto; 1625 width: auto;
1624 } 1626 }
1625 1627
1626 .drive-welcome-wrapper { 1628 .drive-welcome-wrapper {
1627 /* drive_welcome.css will override it once loaded. */ 1629 /* drive_welcome.css will override it once loaded. */
1628 display: none; 1630 display: none;
1629 } 1631 }
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