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

Unified Diff: third_party/WebKit/Source/devtools/front_end/timeline/timelinePanel.css

Issue 2892333002: DevTools: Render third-party badges in timeline tree view (Closed)
Patch Set: Created 3 years, 7 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/timeline/timelinePanel.css
diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/timelinePanel.css b/third_party/WebKit/Source/devtools/front_end/timeline/timelinePanel.css
index b938fc20cfc57e0f07080312569b29443a9a6379..1f10025f588e7639f2324cfd8920e8d0ae19e2e7 100644
--- a/third_party/WebKit/Source/devtools/front_end/timeline/timelinePanel.css
+++ b/third_party/WebKit/Source/devtools/front_end/timeline/timelinePanel.css
@@ -543,6 +543,7 @@
.timeline-tree-view .data-grid .name-container {
display: flex;
align-items: center;
+ padding-left: 2px;
}
.timeline-tree-view .data-grid .name-container div {
@@ -550,12 +551,22 @@
}
.timeline-tree-view .data-grid .name-container .activity-icon {
- width: 10px;
- height: 10px;
- margin: 0 4px 0 2px;
+ width: 12px;
+ height: 12px;
border: 1px solid rgba(0, 0, 0, 0.05);
}
+.timeline-tree-view .data-grid .name-container .activity-icon-container {
+ margin-right: 3px;
+ display: flex;
+ flex-wrap: wrap;
+ align-items: center;
+ justify-content: center;
+ width: 17px;
+ height: 18px;
+ overflow: hidden;
+}
+
.timeline-tree-view .data-grid .name-container .activity-warning::after {
content: "[deopt]";
margin: 0 4px;

Powered by Google App Engine
This is Rietveld 408576698