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

Side by Side Diff: Source/devtools/front_end/inspectorCommon.css

Issue 71633003: DevTools: added "overlayContents" mode, where DevTools content is placed around and underneath inse… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 7 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 | « Source/devtools/front_end/inspector.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 html { 1 html {
2 height: 100%; 2 height: 100%;
3 } 3 }
4 4
5 body { 5 body {
6 cursor: default; 6 cursor: default;
7 position: absolute; 7 position: absolute;
8 top: 0; 8 top: 0;
9 bottom: 0; 9 bottom: 0;
10 left: 0; 10 left: 0;
(...skipping 10 matching lines...) Expand all
21 body.platform-linux { 21 body.platform-linux {
22 color: rgb(48, 57, 66); 22 color: rgb(48, 57, 66);
23 font-family: Ubuntu, Arial, sans-serif; 23 font-family: Ubuntu, Arial, sans-serif;
24 } 24 }
25 25
26 body.platform-mac { 26 body.platform-mac {
27 color: rgb(48, 57, 66); 27 color: rgb(48, 57, 66);
28 font-family: 'Lucida Grande', sans-serif; 28 font-family: 'Lucida Grande', sans-serif;
29 } 29 }
30 30
31 body.dock-to-right:not(.undocked):not(.overlay-contents) {
32 border-left: 1px solid rgb(80, 80, 80);
33 }
34
35 body.dock-to-right.inactive:not(.undocked):not(.overlay-contents) {
36 border-left: 1px solid rgb(64%, 64%, 64%);
37 }
38
31 body.platform-windows { 39 body.platform-windows {
32 font-family: 'Segoe UI', Tahoma, sans-serif; 40 font-family: 'Segoe UI', Tahoma, sans-serif;
33 } 41 }
34 42
35 body.dock-to-right:not(.undocked) {
36 border-left: 1px solid rgb(80, 80, 80);
37 }
38
39 body.dock-to-right.inactive:not(.undocked) {
40 border-left: 1px solid rgb(64%, 64%, 64%);
41 }
42
43 * { 43 * {
44 box-sizing: border-box; 44 box-sizing: border-box;
45 } 45 }
46 46
47 :focus { 47 :focus {
48 outline: none; 48 outline: none;
49 } 49 }
50 50
51 img { 51 img {
52 -webkit-user-drag: none; 52 -webkit-user-drag: none;
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 white-space: nowrap; 244 white-space: nowrap;
245 text-overflow: ellipsis; 245 text-overflow: ellipsis;
246 overflow: hidden; 246 overflow: hidden;
247 line-height: 16px; 247 line-height: 16px;
248 } 248 }
249 249
250 .sidebar-label { 250 .sidebar-label {
251 font-size: 11px; 251 font-size: 11px;
252 } 252 }
253 253
OLDNEW
« no previous file with comments | « Source/devtools/front_end/inspector.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698