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

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

Issue 2568983003: Add ability to linkify substituted string
Patch Set: Comments addressed Created 3 years, 10 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 2015 The Chromium Authors. All rights reserved. 2 * Copyright 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 * { 7 * {
8 /* This is required for correct sizing of flex items because we rely 8 /* This is required for correct sizing of flex items because we rely
9 * on an old version of the flexbox spec. 9 * on an old version of the flexbox spec.
10 * Longer-term we should remove this, see crbug.com/473625 */ 10 * Longer-term we should remove this, see crbug.com/473625 */
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 132
133 .monospace { 133 .monospace {
134 font-size: 10px !important; 134 font-size: 10px !important;
135 font-family: monospace; 135 font-family: monospace;
136 } 136 }
137 137
138 .highlighted-search-result { 138 .highlighted-search-result {
139 border-radius: 1px; 139 border-radius: 1px;
140 padding: 1px; 140 padding: 1px;
141 margin: -1px; 141 margin: -1px;
142 background-color: rgba(255, 255, 0, 0.8); 142 background-color: rgb(255, 255, 51);
143 } 143 }
144 144
145 .-theme-with-dark-background .highlighted-search-result, 145 .-theme-with-dark-background .highlighted-search-result,
146 :host-context(.-theme-with-dark-background) .highlighted-search-result { 146 :host-context(.-theme-with-dark-background) .highlighted-search-result {
147 background-color: hsl(133, 100%, 30%); 147 background-color: hsl(133, 100%, 30%);
148 color: #333; 148 color: #333;
149 } 149 }
150 150
151 .link { 151 .link {
152 cursor: pointer; 152 cursor: pointer;
(...skipping 16 matching lines...) Expand all
169 :host-context(.-theme-with-dark-background) input[type="checkbox"]::not(.-theme- preserve) { 169 :host-context(.-theme-with-dark-background) input[type="checkbox"]::not(.-theme- preserve) {
170 -webkit-filter: invert(80%); 170 -webkit-filter: invert(80%);
171 } 171 }
172 172
173 input[type="search"]:focus, 173 input[type="search"]:focus,
174 input[type="text"]:focus { 174 input[type="text"]:focus {
175 outline: auto rgb(56, 121, 217); 175 outline: auto rgb(56, 121, 217);
176 } 176 }
177 177
178 .highlighted-search-result.current-search-result { 178 .highlighted-search-result.current-search-result {
179 border-radius: 1px; 179 background-color: rgb(255, 153, 51);
180 padding: 1px;
181 margin: -1px;
182 background-color: rgba(255, 127, 0, 0.8);
183 } 180 }
184 181
185 .dimmed { 182 .dimmed {
186 opacity: 0.6; 183 opacity: 0.6;
187 } 184 }
188 185
189 .editing { 186 .editing {
190 -webkit-user-select: text; 187 -webkit-user-select: text;
191 box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 188 box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2),
192 0 2px 4px rgba(0, 0, 0, 0.2), 189 0 2px 4px rgba(0, 0, 0, 0.2),
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 } 358 }
362 359
363 .force-white-icons [is=ui-icon].spritesheet-largeicons, [is=ui-icon].force-white -icons.spritesheet-largeicons { 360 .force-white-icons [is=ui-icon].spritesheet-largeicons, [is=ui-icon].force-white -icons.spritesheet-largeicons {
364 -webkit-mask-image: -webkit-image-set(url(Images/toolbarButtonGlyphs.png) 1x , url(Images/toolbarButtonGlyphs_2x.png) 2x); 361 -webkit-mask-image: -webkit-image-set(url(Images/toolbarButtonGlyphs.png) 1x , url(Images/toolbarButtonGlyphs_2x.png) 2x);
365 -webkit-mask-size: 352px 168px; 362 -webkit-mask-size: 352px 168px;
366 background-image: unset; 363 background-image: unset;
367 background-size: unset; 364 background-size: unset;
368 background: unset; 365 background: unset;
369 background-color: white; 366 background-color: white;
370 } 367 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698