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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: Source/devtools/front_end/inspector.css
diff --git a/Source/devtools/front_end/inspector.css b/Source/devtools/front_end/inspector.css
index 6886b557198ad72667e8c7f2d76370f198b94cc6..c0054167b5e7e815394fd833b4e436c69d49e1b4 100644
--- a/Source/devtools/front_end/inspector.css
+++ b/Source/devtools/front_end/inspector.css
@@ -118,18 +118,29 @@ body.inactive .toolbar-background {
body.dock-to-bottom .toolbar-background {
padding-top: 0;
- border-top: 1px solid rgb(100, 100, 100);
- cursor: default;
}
-body.dock-to-bottom.platform-mac .toolbar-background {
+body.dock-to-bottom.platform-mac:not(.overlay-contents) .toolbar-background {
border-top-color: white;
}
-body.dock-to-bottom.inactive .toolbar-background {
+body.dock-to-bottom:not(.overlay-contents) .toolbar-background {
+ border-top: 1px solid rgb(100, 100, 100);
+ cursor: default;
+}
+
+body.dock-to-bottom.inactive:not(.overlay-contents) .toolbar-background {
border-top: 1px solid rgb(64%, 64%, 64%);
}
+body.dock-to-bottom.overlay-contents .toolbar-background .tabbed-pane-header {
+ cursor: ns-resize;
+}
+
+body.dock-to-bottom.overlay-contents .toolbar-background .tabbed-pane-header .tabbed-pane-header-tabs {
+ cursor: default;
+}
+
body.platform-windows .toolbar-background,
body.platform-windows.inactive .toolbar-background {
background-image: none;
@@ -2823,3 +2834,7 @@ body.platform-mac .progress-bar-container progress {
body.undocked .toolbar-close-button-item {
display: none;
}
+
+body.dock-to-bottom.overlay-contents #inspector-split-view .split-view-resizer {
+ display: none;
+}

Powered by Google App Engine
This is Rietveld 408576698