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

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

Issue 2527763003: [DevTools] Turn links into spans to prevent default behavior. (Closed)
Patch Set: fixed comments Created 4 years 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 2016 The Chromium Authors. All rights reserved. 2 * Copyright 2016 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 :host { 7 :host {
8 padding: 0; 8 padding: 0;
9 margin: 0; 9 margin: 0;
10 } 10 }
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 } 81 }
82 82
83 li.search-match .highlighted-match { 83 li.search-match .highlighted-match {
84 background-color: #F1EA00; 84 background-color: #F1EA00;
85 } 85 }
86 86
87 :host-context(.-theme-with-dark-background) li.search-match .highlighted-match { 87 :host-context(.-theme-with-dark-background) li.search-match .highlighted-match {
88 background-color: hsl(133, 100%, 30%) !important; 88 background-color: hsl(133, 100%, 30%) !important;
89 } 89 }
90 90
91 .tree-outline a { 91 .tree-outline .devtools-link {
92 text-decoration: none; 92 text-decoration: none;
93 display: block; 93 display: block;
94 flex: auto; 94 flex: auto;
95 } 95 }
96 96
97 li.search-match .search-match-content { 97 li.search-match .search-match-content {
98 color: #000; 98 color: #000;
99 } 99 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698