OLD | NEW |
---|---|
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 Loading... | |
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 Loading... | |
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 } |
OLD | NEW |