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

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

Issue 2365643003: [DevTools] Fix search results hover and click area. (Closed)
Patch Set: Created 4 years, 2 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 | « third_party/WebKit/Source/devtools/front_end/sources/fileBasedSearchResultsPane.css ('k') | 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;
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 background-image: url(Images/toolbarButtonGlyphs_2x.png); 98 background-image: url(Images/toolbarButtonGlyphs_2x.png);
99 } 99 }
100 } /* media */ 100 } /* media */
101 101
102 .search-view .search-results { 102 .search-view .search-results {
103 overflow-y: auto; 103 overflow-y: auto;
104 display: flex; 104 display: flex;
105 flex: auto; 105 flex: auto;
106 } 106 }
107 107
108 .search-view .search-results > div {
109 flex: auto;
110 }
111
108 .search-results .empty-view { 112 .search-results .empty-view {
109 pointer-events: none; 113 pointer-events: none;
110 } 114 }
111 115
112 .empty-view { 116 .empty-view {
113 font-size: 24px; 117 font-size: 24px;
114 color: rgb(75%, 75%, 75%); 118 color: rgb(75%, 75%, 75%);
115 font-weight: bold; 119 font-weight: bold;
116 padding: 10px; 120 padding: 10px;
117 display: flex; 121 display: flex;
118 align-items: center; 122 align-items: center;
119 justify-content: center; 123 justify-content: center;
120 } 124 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sources/fileBasedSearchResultsPane.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698