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

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

Issue 1514483002: DevTools: brush up new details cards on timeline. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/timeline/TimelineView.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 72c832064c9a5f7a86cdd62509ec3b8041ff5841..77af074c3350a4aa96170bb61fa08d0125ed1ee7 100644
--- a/third_party/WebKit/Source/devtools/front_end/timeline/timelinePanel.css
+++ b/third_party/WebKit/Source/devtools/front_end/timeline/timelinePanel.css
@@ -675,35 +675,50 @@
.timeline-details-view-block {
flex: none;
display: flex;
+ box-shadow: #ccc 1px 1px 3px;
+ background-color: white;
flex-direction: column;
+ margin: 3px 4px;
+ padding-bottom: 5px;
}
.timeline-details-view-row {
+ padding-left: 10px;
+ flex-direction: row;
display: flex;
- box-shadow: #ccc 1px 1px 3px;
- flex-direction: column;
- background-color: white;
- margin: 2px 3px;
- padding: 3px 10px;
+ line-height: 21px;
+}
+
+.timeline-details-view-block .timeline-details-stack-values {
+ flex-direction: column !important;
+}
+
+.timeline-details-chip-title {
+ font-size: 13px;
+ padding: 8px;
+ display: flex;
+ align-items: center;
+}
+
+.timeline-details-chip-title > div {
+ width: 12px;
+ height: 12px;
+ display: inline-block;
+ margin-right: 4px;
+ content: " ";
}
.timeline-details-view-row-title {
color: rgb(152, 152, 152);
- line-height: 21px;
- flex: none;
- position: relative;
overflow: hidden;
}
-.timeline-details-warning .timeline-details-view-row-title::after {
- width: 16px;
- height: 16px;
- background-color: red;
- position: absolute;
- right: -8px;
- top: -8px;
- transform: rotate(45deg);
- content: "";
+.timeline-details-warning {
+ background-color: rgba(250, 209, 209, 0.48);
+}
+
+.timeline-details-warning .timeline-details-view-row-title {
+ color: red;
}
.timeline-details-warning .timeline-details-view-row-value {
@@ -713,14 +728,11 @@
}
.timeline-details-view-row-value {
- padding-left: 20px;
- min-height: 20px;
- line-height: 20px;
-webkit-user-select: text;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
- margin-right: 5px;
+ padding-left: 10px;
}
.timeline-details-view-row-value .stack-preview-container {
@@ -748,6 +760,7 @@
}
.timeline-details-view-row-stack-trace {
+ padding: 4px 0;
line-height: inherit;
}
@@ -903,6 +916,7 @@
max-width: 200px;
max-height: 200px;
cursor: pointer;
+ border: 1px solid #ddd;
}
.timeline-overview-popover .frame .time {
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/timeline/TimelineView.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698