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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/network/blockedURLsPane.css

Issue 2906983002: DevTools: cleanup text input styles (Closed)
Patch Set: ac Created 3 years, 6 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 (c) 2015 The Chromium Authors. All rights reserved. 2 * Copyright (c) 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 .list { 7 .list {
8 border: none !important; 8 border: none !important;
9 border-top: 1px solid #dadada !important; 9 border-top: 1px solid #dadada !important;
10 } 10 }
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 60
61 .blocked-url-edit-row { 61 .blocked-url-edit-row {
62 flex: none; 62 flex: none;
63 display: flex; 63 display: flex;
64 flex-direction: row; 64 flex-direction: row;
65 margin: 7px 5px 0 5px; 65 margin: 7px 5px 0 5px;
66 align-items: center; 66 align-items: center;
67 } 67 }
68 68
69 .blocked-url-edit-value { 69 .blocked-url-edit-value {
70 white-space: nowrap;
71 text-overflow: ellipsis;
72 -webkit-user-select: none; 70 -webkit-user-select: none;
73 color: #222;
74 flex: 1 1 0px; 71 flex: 1 1 0px;
75 overflow: hidden;
76 } 72 }
77 73
78 .blocked-url-edit-row input { 74 .blocked-url-edit-row input {
79 width: 100%; 75 width: 100%;
80 text-align: inherit; 76 text-align: inherit;
81 height: 22px; 77 height: 22px;
82 } 78 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698