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

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

Issue 14344005: Round corners for Files.app's new ui. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 | chrome/browser/resources/file_manager/js/background.js » ('j') | 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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/js/background.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698