OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |