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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/ui/searchableView.css

Issue 1499993004: DevTools: popover, selection and other minor theme tweaks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/inspectorSyntaxHighlightDark.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 (c) 2014 The Chromium Authors. All rights reserved. 2 * Copyright (c) 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-bar { 7 .search-bar {
8 flex: 0 0 23px; 8 flex: 0 0 23px;
9 background-color: #eee; 9 background-color: #eee;
10 border-top: 1px solid #ccc; 10 border-top: 1px solid #ccc;
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 96
97 .toolbar-search-navigation.enabled:active { 97 .toolbar-search-navigation.enabled:active {
98 background-position: 4px 7px, 0 0; 98 background-position: 4px 7px, 0 0;
99 } 99 }
100 100
101 .toolbar-search-navigation.toolbar-search-navigation-prev { 101 .toolbar-search-navigation.toolbar-search-navigation-prev {
102 background-image: url(Images/searchPrev.png); 102 background-image: url(Images/searchPrev.png);
103 border-left: 1px solid rgb(163, 163, 163); 103 border-left: 1px solid rgb(163, 163, 163);
104 } 104 }
105 105
106 :host-context(.-theme-with-dark-background) .toolbar-search-navigation {
107 -webkit-filter: invert(90%);
108 }
109
106 .toolbar-search-navigation.toolbar-search-navigation-prev.enabled:active { 110 .toolbar-search-navigation.toolbar-search-navigation-prev.enabled:active {
107 background-image: url(Images/searchPrev.png), linear-gradient(rgb(168, 168, 168), rgb(116, 116, 116)); 111 background-image: url(Images/searchPrev.png), linear-gradient(rgb(168, 168, 168), rgb(116, 116, 116));
108 } 112 }
109 113
110 .toolbar-search-navigation.toolbar-search-navigation-next { 114 .toolbar-search-navigation.toolbar-search-navigation-next {
111 background-image: url(Images/searchNext.png); 115 background-image: url(Images/searchNext.png);
112 border-left: 1px solid rgb(230, 230, 230); 116 border-left: 1px solid rgb(230, 230, 230);
113 } 117 }
114 118
115 .toolbar-search-navigation.toolbar-search-navigation-next.enabled:active { 119 .toolbar-search-navigation.toolbar-search-navigation-next.enabled:active {
116 background-image: url(Images/searchNext.png), linear-gradient(rgb(168, 168, 168), rgb(116, 116, 116)); 120 background-image: url(Images/searchNext.png), linear-gradient(rgb(168, 168, 168), rgb(116, 116, 116));
117 } 121 }
118 122
119 .search-results-matches { 123 .search-results-matches {
120 display: inline-block; 124 display: inline-block;
121 text-align: right; 125 text-align: right;
122 font-size: 11px; 126 font-size: 11px;
123 padding: 0 4px; 127 padding: 0 4px;
124 color: rgb(165, 165, 165); 128 color: rgb(165, 165, 165);
125 } 129 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui/inspectorSyntaxHighlightDark.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698