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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/persistence/editFileSystemView.css

Issue 2875193002: DevTools: update text inputs to new style (Closed)
Patch Set: ac Created 3 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
OLDNEW
1 /* 1 /*
2 * Copyright 2015 The Chromium Authors. All rights reserved. 2 * Copyright 2015 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 .file-system-header { 7 .file-system-header {
8 display: flex; 8 display: flex;
9 flex-direction: row; 9 flex-direction: row;
10 align-items: center; 10 align-items: center;
(...skipping 30 matching lines...) Expand all
41 align-items: center; 41 align-items: center;
42 flex: auto 1 1; 42 flex: auto 1 1;
43 } 43 }
44 44
45 .file-system-value { 45 .file-system-value {
46 white-space: nowrap; 46 white-space: nowrap;
47 text-overflow: ellipsis; 47 text-overflow: ellipsis;
48 -webkit-user-select: none; 48 -webkit-user-select: none;
49 color: #222; 49 color: #222;
50 flex: 1 1 0px; 50 flex: 1 1 0px;
51 overflow: hidden;
52 } 51 }
53 52
54 .file-system-separator { 53 .file-system-separator {
55 flex: 0 0 1px; 54 flex: 0 0 1px;
56 background-color: rgb(231, 231, 231); 55 background-color: rgb(231, 231, 231);
57 height: 30px; 56 height: 30px;
58 margin: 0 4px; 57 margin: 0 4px;
59 } 58 }
60 59
61 .file-system-separator-invisible { 60 .file-system-separator-invisible {
62 visibility: hidden; 61 visibility: hidden;
63 height: 100% !important; 62 height: 100% !important;
64 } 63 }
65 64
66 .file-system-edit-row { 65 .file-system-edit-row {
67 flex: none; 66 flex: none;
68 display: flex; 67 display: flex;
69 flex-direction: row; 68 flex-direction: row;
70 margin: 6px 5px; 69 margin: 6px 5px;
71 align-items: center; 70 align-items: center;
72 } 71 }
73 72
74 .file-system-edit-row input { 73 .file-system-edit-row input {
75 width: 100%; 74 width: 100%;
76 text-align: inherit; 75 text-align: inherit;
77 } 76 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698