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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui_lazy/overviewGrid.css

Issue 2404143002: DevTools: move overview grid window curtains handling into said window (Closed)
Patch Set: Created 4 years, 2 months 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: third_party/WebKit/Source/devtools/front_end/ui_lazy/overviewGrid.css
diff --git a/third_party/WebKit/Source/devtools/front_end/ui_lazy/overviewGrid.css b/third_party/WebKit/Source/devtools/front_end/ui_lazy/overviewGrid.css
index fd9141f10d64917e8c8d88a15f706c9ff2cee97e..fd09baf5b6d0ed616bde664989a390d26a653652 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui_lazy/overviewGrid.css
+++ b/third_party/WebKit/Source/devtools/front_end/ui_lazy/overviewGrid.css
@@ -45,3 +45,23 @@
visibility: hidden;
overflow: hidden;
}
+
+.window-curtain-left, .window-curtain-right {
+ background-color: hsla(0, 0%, 80%, 0.5);
+ position: absolute;
+ top: 0;
+ height: 100%;
+ z-index: 300;
+ pointer-events: none;
+ border: 1px none hsla(0, 0%, 70%, 0.5);
+}
+
+.window-curtain-left {
+ left: 0;
+ border-right-style: solid;
+}
+
+.window-curtain-right {
+ right: 0;
+ border-left-style: solid;
+}

Powered by Google App Engine
This is Rietveld 408576698