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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/settings/frameworkBlackboxSettingsTab.css

Issue 1422703003: [DevTools] Use ListWidget for rendering of EditFileSystemView. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 .header { 7 .header {
8 padding: 0 0 6px; 8 padding: 0 0 6px;
9 border-bottom: 1px solid #EEEEEE; 9 border-bottom: 1px solid #EEEEEE;
10 font-size: 18px; 10 font-size: 18px;
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 position: relative; 42 position: relative;
43 flex: auto 1 1; 43 flex: auto 1 1;
44 } 44 }
45 45
46 .blackbox-pattern { 46 .blackbox-pattern {
47 white-space: nowrap; 47 white-space: nowrap;
48 text-overflow: ellipsis; 48 text-overflow: ellipsis;
49 -webkit-user-select: none; 49 -webkit-user-select: none;
50 color: #222; 50 color: #222;
51 flex: auto; 51 flex: auto;
52 overflow: hidden;
52 } 53 }
53 54
54 .blackbox-list-item.blackbox-disabled .blackbox-pattern { 55 .blackbox-list-item.blackbox-disabled .blackbox-pattern {
55 text-decoration: line-through; 56 text-decoration: line-through;
56 } 57 }
57 58
58 .blackbox-behavior { 59 .blackbox-behavior {
59 flex: 0 0 100px; 60 flex: 0 0 100px;
60 padding-left: 10px; 61 padding-left: 10px;
61 } 62 }
(...skipping 12 matching lines...) Expand all
74 .blackbox-separator-invisible { 75 .blackbox-separator-invisible {
75 visibility: hidden; 76 visibility: hidden;
76 height: 100% !important; 77 height: 100% !important;
77 } 78 }
78 79
79 .blackbox-edit-row { 80 .blackbox-edit-row {
80 flex: none; 81 flex: none;
81 display: flex; 82 display: flex;
82 flex-direction: row; 83 flex-direction: row;
83 margin: 6px 5px; 84 margin: 6px 5px;
85 align-items: center;
84 } 86 }
85 87
86 .blackbox-edit-row input, 88 .blackbox-edit-row input,
87 .blackbox-edit-row select { 89 .blackbox-edit-row select {
88 width: 100%; 90 width: 100%;
89 text-align: inherit; 91 text-align: inherit;
90 } 92 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698