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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 .dialog-container { | 215 .dialog-container { |
216 -webkit-box-align: stretch; | 216 -webkit-box-align: stretch; |
217 -webkit-box-flex: 1; | 217 -webkit-box-flex: 1; |
218 -webkit-box-orient: horizontal; | 218 -webkit-box-orient: horizontal; |
219 background-color: white; /* Makes #drag-container invisible. */ | 219 background-color: white; /* Makes #drag-container invisible. */ |
220 display: -webkit-box; | 220 display: -webkit-box; |
221 overflow: hidden; | 221 overflow: hidden; |
222 position: relative; | 222 position: relative; |
223 } | 223 } |
224 | 224 |
| 225 body[new-ui] .dialog-container { |
| 226 -webkit-border-radius: 2px; |
| 227 } |
| 228 |
225 /* List/grid and preview are inside this container. */ | 229 /* List/grid and preview are inside this container. */ |
226 .dialog-main { | 230 .dialog-main { |
227 -webkit-box-align: stretch; | 231 -webkit-box-align: stretch; |
228 -webkit-box-flex: 1; | 232 -webkit-box-flex: 1; |
229 -webkit-box-orient: vertical; | 233 -webkit-box-orient: vertical; |
230 display: -webkit-box; | 234 display: -webkit-box; |
231 } | 235 } |
232 | 236 |
233 /* Directory tree at the left. */ | 237 /* Directory tree at the left. */ |
234 .dialog-sidebar { | 238 .dialog-sidebar { |
(...skipping 1778 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2013 } | 2017 } |
2014 | 2018 |
2015 list.autocomplete-suggestions[hasElementFocus] > [selected], | 2019 list.autocomplete-suggestions[hasElementFocus] > [selected], |
2016 list.autocomplete-suggestions[hasElementFocus] > [lead], | 2020 list.autocomplete-suggestions[hasElementFocus] > [lead], |
2017 list.autocomplete-suggestions:not([hasElementFocus]) > [selected], | 2021 list.autocomplete-suggestions:not([hasElementFocus]) > [selected], |
2018 list.autocomplete-suggestions:not([hasElementFocus]) > [lead] { | 2022 list.autocomplete-suggestions:not([hasElementFocus]) > [lead] { |
2019 background-color: rgb(238, 238, 238); | 2023 background-color: rgb(238, 238, 238); |
2020 background-image: none; | 2024 background-image: none; |
2021 border: 1px solid white; | 2025 border: 1px solid white; |
2022 } | 2026 } |
OLD | NEW |