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

Unified Diff: third_party/WebKit/Source/devtools/front_end/components/imagePreview.css

Issue 2703143002: [DevTools] Prepare to move Popover to shadow DOM. (Closed)
Patch Set: fix Created 3 years, 10 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/components/imagePreview.css
diff --git a/third_party/WebKit/Source/devtools/front_end/components/imagePreview.css b/third_party/WebKit/Source/devtools/front_end/components/imagePreview.css
new file mode 100644
index 0000000000000000000000000000000000000000..08020e5bdecd15380d33f80e62cdb54244d64225
--- /dev/null
+++ b/third_party/WebKit/Source/devtools/front_end/components/imagePreview.css
@@ -0,0 +1,24 @@
+/*
+ * Copyright 2017 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.
+ */
+
+.image-preview-container {
+ background: transparent;
+ text-align: center;
+ border-spacing: 0;
+}
+
+.image-preview-container img {
+ margin: 2px auto;
+ max-width: 100px;
+ max-height: 100px;
+ background-image: url(Images/checker.png);
+ -webkit-user-select: text;
+ -webkit-user-drag: auto;
+}
+
+.image-container {
+ padding: 0;
+}

Powered by Google App Engine
This is Rietveld 408576698