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

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

Issue 1471693003: Revert of 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%) hue-rotate(180deg) saturate(80%);
51 }
52
53 .platform-linux { 49 .platform-linux {
54 color: rgb(48, 57, 66); 50 color: rgb(48, 57, 66);
55 font-family: Ubuntu, Arial, sans-serif; 51 font-family: Ubuntu, Arial, sans-serif;
56 } 52 }
57 53
58 .platform-mac { 54 .platform-mac {
59 color: rgb(48, 57, 66); 55 color: rgb(48, 57, 66);
60 font-family: 'Lucida Grande', sans-serif; 56 font-family: 'Lucida Grande', sans-serif;
61 } 57 }
62 58
(...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after
551 547
552 .root-view { 548 .root-view {
553 overflow: hidden; 549 overflow: hidden;
554 position: absolute !important; 550 position: absolute !important;
555 left: 0; 551 left: 0;
556 top: 0; 552 top: 0;
557 right: 0; 553 right: 0;
558 bottom: 0; 554 bottom: 0;
559 } 555 }
560 556
561 body.dark-theme .root-view {
562 background: white;
563 }
564
565 .viewport-control-gap-element { 557 .viewport-control-gap-element {
566 color: transparent; 558 color: transparent;
567 } 559 }
568 560
569 .drawer-toolbar { 561 .drawer-toolbar {
570 margin-right: -6px; 562 margin-right: -6px;
571 } 563 }
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