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

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

Issue 2623743002: DevTools: extract modules (non-extensions) (Closed)
Patch Set: rebaseline Created 3 years, 11 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
deleted file mode 100644
index fd09baf5b6d0ed616bde664989a390d26a653652..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/devtools/front_end/ui_lazy/overviewGrid.css
+++ /dev/null
@@ -1,67 +0,0 @@
-/*
- * Copyright (c) 2014 The Chromium Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-.overview-grid-window-selector {
- position: absolute;
- top: 0;
- bottom: 0;
- background-color: rgba(125, 173, 217, 0.5);
- z-index: 250;
- pointer-events: none;
-}
-
-.overview-grid-window-resizer {
- position: absolute;
- top: -1px;
- height: 20px;
- width: 6px;
- margin-left: -3px;
- background-color: rgb(153, 153, 153);
- border: 1px solid white;
- z-index: 500;
-}
-
-.overview-grid-cursor-area {
- position: absolute;
- left: 0;
- right: 0;
- top: 20px;
- bottom: 0;
- z-index: 500;
- cursor: text;
-}
-
-.overview-grid-cursor-position {
- position: absolute;
- top: 0;
- bottom: 0;
- width: 2px;
- background-color: hsla(220, 95%, 50%, 0.7);
- z-index: 500;
- pointer-events: none;
- 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