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

Side by Side Diff: Source/devtools/front_end/inspector.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/helpScreen.css ('k') | Source/devtools/front_end/inspector.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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 font-size: inherit; 111 font-size: inherit;
112 } 112 }
113 113
114 body.inactive .toolbar-background { 114 body.inactive .toolbar-background {
115 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 33, 233, 233)), to(rgb(207, 207, 207))); 115 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 33, 233, 233)), to(rgb(207, 207, 207)));
116 border-bottom: 1px solid rgb(64%, 64%, 64%); 116 border-bottom: 1px solid rgb(64%, 64%, 64%);
117 } 117 }
118 118
119 body.dock-to-bottom .toolbar-background { 119 body.dock-to-bottom .toolbar-background {
120 padding-top: 0; 120 padding-top: 0;
121 }
122
123 body.dock-to-bottom.platform-mac:not(.overlay-contents) .toolbar-background {
124 border-top-color: white;
125 }
126
127 body.dock-to-bottom:not(.overlay-contents) .toolbar-background {
121 border-top: 1px solid rgb(100, 100, 100); 128 border-top: 1px solid rgb(100, 100, 100);
122 cursor: default; 129 cursor: default;
123 } 130 }
124 131
125 body.dock-to-bottom.platform-mac .toolbar-background { 132 body.dock-to-bottom.inactive:not(.overlay-contents) .toolbar-background {
126 border-top-color: white; 133 border-top: 1px solid rgb(64%, 64%, 64%);
127 } 134 }
128 135
129 body.dock-to-bottom.inactive .toolbar-background { 136 body.dock-to-bottom.overlay-contents .toolbar-background .tabbed-pane-header {
130 border-top: 1px solid rgb(64%, 64%, 64%); 137 cursor: ns-resize;
138 }
139
140 body.dock-to-bottom.overlay-contents .toolbar-background .tabbed-pane-header .ta bbed-pane-header-tabs {
141 cursor: default;
131 } 142 }
132 143
133 body.platform-windows .toolbar-background, 144 body.platform-windows .toolbar-background,
134 body.platform-windows.inactive .toolbar-background { 145 body.platform-windows.inactive .toolbar-background {
135 background-image: none; 146 background-image: none;
136 } 147 }
137 148
138 body.undocked.platform-mac-leopard .toolbar-background { 149 body.undocked.platform-mac-leopard .toolbar-background {
139 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 75, 175, 175)), to(rgb(151, 151, 151))) !important; 150 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 75, 175, 175)), to(rgb(151, 151, 151))) !important;
140 color: #333 !important; 151 color: #333 !important;
(...skipping 2687 matching lines...) Expand 10 before | Expand all | Expand 10 after
2828 display: inline-block; 2839 display: inline-block;
2829 float: right; 2840 float: right;
2830 padding-right: 4px; 2841 padding-right: 4px;
2831 padding-top: 4px; 2842 padding-top: 4px;
2832 padding-left: 2px; 2843 padding-left: 2px;
2833 } 2844 }
2834 2845
2835 body.undocked .toolbar-close-button-item { 2846 body.undocked .toolbar-close-button-item {
2836 display: none; 2847 display: none;
2837 } 2848 }
2849
2850 body.dock-to-bottom.overlay-contents #inspector-split-view .split-view-resizer {
2851 display: none;
2852 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/helpScreen.css ('k') | Source/devtools/front_end/inspector.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698