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

Unified Diff: chrome/browser/devtools/frontend/devtools_discovery_page.html

Issue 2295623002: DevTools: simplify http handler delegate as it is moving into content. (Closed)
Patch Set: lcean Created 4 years, 3 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: chrome/browser/devtools/frontend/devtools_discovery_page.html
diff --git a/chrome/browser/devtools/frontend/devtools_discovery_page.html b/chrome/browser/devtools/frontend/devtools_discovery_page.html
index cf93966c72eec8a1355cdc82b2dcaeb8e2e2ab86..d6d9fb01ce793c36d1c340f1adc5139924a9c84b 100644
--- a/chrome/browser/devtools/frontend/devtools_discovery_page.html
+++ b/chrome/browser/devtools/frontend/devtools_discovery_page.html
@@ -35,26 +35,12 @@ body {
-webkit-transition-delay: 0ms, 0ms;
}
-.thumbnail {
- background-attachment: scroll;
- background-origin: padding-box;
- background-repeat: no-repeat;
- border: 1px solid rgba(184, 184, 184, 1);
- flex: none;
- height: 132px;
- width: 212px;
-}
-
.item:not(.connected):hover {
background-color: rgba(242, 242, 242, 1);
border-color: rgba(110, 116, 128, 1);
color: black;
}
-.item.connected .thumbnail {
- opacity: 0.5;
-}
-
.item.connected:hover {
border-color: rgba(184, 184, 184, 1);
color: rgb(110, 116, 128);
@@ -123,12 +109,6 @@ function appendItem(item_object) {
}
item_element.classList.add('item');
- var thumbnail = document.createElement('div');
- thumbnail.className = 'thumbnail';
- thumbnail.style.cssText = 'background-image:url(' +
- item_object.thumbnailUrl + ')';
- item_element.appendChild(thumbnail);
-
var description = document.createElement('div');
description.className = 'description';
« no previous file with comments | « chrome/browser/devtools/device/adb/mock_adb_server.cc ('k') | chrome/browser/devtools/remote_debugging_server.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698