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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/console/consoleView.css

Issue 1480523002: DevTools: follow up to r361550, fix the color picker background and allow for themed stylesheet mar… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: same 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 | « no previous file | third_party/WebKit/Source/devtools/front_end/elements/spectrum.css » ('j') | 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) 2006, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 margin-left: 100%; 258 margin-left: 100%;
259 width: 3px; 259 width: 3px;
260 height: 100%; 260 height: 100%;
261 box-sizing: border-box; 261 box-sizing: border-box;
262 } 262 }
263 263
264 .console-error-level { 264 .console-error-level {
265 background-color: hsl(0, 100%, 97%); 265 background-color: hsl(0, 100%, 97%);
266 } 266 }
267 267
268 .-theme-with-dark-background .console-error-level {
269 background-color: hsl(0, 100%, 8%);
270 }
271
268 .console-warning-level { 272 .console-warning-level {
269 background-color: hsl(50, 100%, 95%); 273 background-color: hsl(50, 100%, 95%);
270 } 274 }
271 275
272 .console-warning-level .console-message-text { 276 .console-warning-level .console-message-text {
273 color: hsl(39, 100%, 18%); 277 color: hsl(39, 100%, 18%);
274 } 278 }
275 279
276 .console-error-level .console-message-text, 280 .console-error-level .console-message-text,
277 .console-error-level .console-view-object-properties-section { 281 .console-error-level .console-view-object-properties-section {
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 font-size: 9px; 425 font-size: 9px;
422 } 426 }
423 427
424 .object-info-state-note::before { 428 .object-info-state-note::before {
425 content: "i"; 429 content: "i";
426 } 430 }
427 431
428 .console-view-object-properties-section:not(.expanded) .object-info-state-note { 432 .console-view-object-properties-section:not(.expanded) .object-info-state-note {
429 display: none; 433 display: none;
430 } 434 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/elements/spectrum.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698