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

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: No-op if no overlayContents 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
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 2675 matching lines...) Expand 10 before | Expand all | Expand 10 after
2816 display: inline-block; 2827 display: inline-block;
2817 float: right; 2828 float: right;
2818 padding-right: 4px; 2829 padding-right: 4px;
2819 padding-top: 4px; 2830 padding-top: 4px;
2820 padding-left: 2px; 2831 padding-left: 2px;
2821 } 2832 }
2822 2833
2823 body.undocked .toolbar-close-button-item { 2834 body.undocked .toolbar-close-button-item {
2824 display: none; 2835 display: none;
2825 } 2836 }
2837
2838 body.dock-to-bottom.overlay-contents #inspector-split-view .split-view-resizer {
2839 display: none;
2840 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698