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

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

Issue 1458223005: DevTools: Add dark theme hidden experiment (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 | « no previous file | third_party/WebKit/Source/devtools/front_end/main/Main.js » ('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 28 matching lines...) Expand all
39 overflow: hidden; 39 overflow: hidden;
40 margin: 0; 40 margin: 0;
41 cursor: default; 41 cursor: default;
42 font-family: Lucida Grande, sans-serif; 42 font-family: Lucida Grande, sans-serif;
43 font-size: 12px; 43 font-size: 12px;
44 tab-size: 4; 44 tab-size: 4;
45 -webkit-user-select: none; 45 -webkit-user-select: none;
46 color: #222; 46 color: #222;
47 } 47 }
48 48
49 body.dark-theme {
50 -webkit-filter: invert(100%);
51 }
52
49 .platform-linux { 53 .platform-linux {
50 color: rgb(48, 57, 66); 54 color: rgb(48, 57, 66);
51 font-family: Ubuntu, Arial, sans-serif; 55 font-family: Ubuntu, Arial, sans-serif;
52 } 56 }
53 57
54 .platform-mac { 58 .platform-mac {
55 color: rgb(48, 57, 66); 59 color: rgb(48, 57, 66);
56 font-family: 'Lucida Grande', sans-serif; 60 font-family: 'Lucida Grande', sans-serif;
57 } 61 }
58 62
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after
545 z-index: 20000; 549 z-index: 20000;
546 } 550 }
547 551
548 .root-view { 552 .root-view {
549 overflow: hidden; 553 overflow: hidden;
550 position: absolute !important; 554 position: absolute !important;
551 left: 0; 555 left: 0;
552 top: 0; 556 top: 0;
553 right: 0; 557 right: 0;
554 bottom: 0; 558 bottom: 0;
559 background: white;
pfeldman 2015/11/21 06:07:05 move this into body.dark-theme .root-view
paulirish 2015/11/21 07:20:14 done.
555 } 560 }
556 561
557 .viewport-control-gap-element { 562 .viewport-control-gap-element {
558 color: transparent; 563 color: transparent;
559 } 564 }
560 565
561 .drawer-toolbar { 566 .drawer-toolbar {
562 margin-right: -6px; 567 margin-right: -6px;
563 } 568 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/main/Main.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698