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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/sources/sourcesSearch.css

Issue 1925253003: DevTools: fix visual regressions in full text search (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added fix for unwanted whitespace Created 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2014 The Chromium Authors. All rights reserved. 2 * Copyright 2014 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 .search-drawer-header { 7 .search-drawer-header {
8 flex: none; 8 flex: none;
9 display: flex; 9 display: flex;
10 border-bottom: 2px solid #e8e8e8; 10 border-bottom: 2px solid #e8e8e8;
11 white-space: nowrap;
12 overflow: hidden;
11 } 13 }
12 14
13 .search-drawer-header input.search-config-search { 15 .search-drawer-header input.search-config-search {
14 padding: 0 28px; 16 padding: 0 28px;
15 margin: 1px 0px 0px 1px; 17 margin: 1px 0px 0px 1px;
16 height: 28px; 18 height: 28px;
17 border-radius: 2px; 19 border-radius: 2px;
18 color: #303030; 20 color: #303030;
19 border: none; 21 border: none;
22 min-width: 95px;
20 } 23 }
21 24
22 .search-drawer-header .search-icon { 25 .search-drawer-header .search-icon {
23 background-image: url(Images/toolbarButtonGlyphs.png); 26 background-image: url(Images/toolbarButtonGlyphs.png);
24 background-size: 352px 168px; 27 background-size: 352px 168px;
25 background-position: -234px 138px; 28 background-position: -234px 138px;
26 left: 10px; 29 left: 10px;
27 top: 10px; 30 top: 10px;
28 width: 12px; 31 width: 12px;
29 height: 12px; 32 height: 12px;
(...skipping 26 matching lines...) Expand all
56 top: 1px; 59 top: 1px;
57 } 60 }
58 61
59 .search-drawer-header label.search-config-label:first-of-type { 62 .search-drawer-header label.search-config-label:first-of-type {
60 border-left: 1px solid #dadada; 63 border-left: 1px solid #dadada;
61 margin: 0px 0px 0px 1px; 64 margin: 0px 0px 0px 1px;
62 padding-left: 10px; 65 padding-left: 10px;
63 } 66 }
64 67
65 .search-drawer-header label.search-config-label { 68 .search-drawer-header label.search-config-label {
66 margin: 2px 0px; 69 margin: 2px 4px;
67 margin-left: 8px; 70 margin-left: 8px;
68 color: #303030; 71 color: #303030;
69 display: flex; 72 display: flex;
70 } 73 }
71 74
72 .search-toolbar-summary { 75 .search-toolbar-summary {
73 background-color: #eee; 76 background-color: #eee;
74 border-top: 1px solid #ccc; 77 border-top: 1px solid #ccc;
75 padding-left: 5px; 78 padding-left: 5px;
76 flex: 0 0 19px; 79 flex: 0 0 19px;
77 display: flex; 80 display: flex;
78 padding-right: 5px; 81 padding-right: 5px;
79 } 82 }
80 83
81 .search-toolbar-summary .search-message { 84 .search-toolbar-summary .search-message {
82 padding-top: 2px; 85 padding-top: 2px;
83 padding-left: 1ex; 86 padding-left: 1ex;
87 text-overflow: ellipsis;
88 white-space: nowrap;
89 overflow: hidden;
84 } 90 }
85 91
86 #search-results-pane-file-based li { 92 #search-results-pane-file-based li {
87 list-style: none; 93 list-style: none;
88 } 94 }
89 95
90 #search-results-pane-file-based ol { 96 #search-results-pane-file-based ol {
91 -webkit-padding-start: 0; 97 -webkit-padding-start: 0;
92 margin-top: 0; 98 margin-top: 0;
93 } 99 }
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 229
224 .empty-view { 230 .empty-view {
225 font-size: 24px; 231 font-size: 24px;
226 color: rgb(75%, 75%, 75%); 232 color: rgb(75%, 75%, 75%);
227 font-weight: bold; 233 font-weight: bold;
228 padding: 10px; 234 padding: 10px;
229 display: flex; 235 display: flex;
230 align-items: center; 236 align-items: center;
231 justify-content: center; 237 justify-content: center;
232 } 238 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698