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

Unified Diff: chrome/browser/resources/tracing/timeline.css

Issue 8359025: Tons of timeline tweaks (Closed)
Patch Set: Disable eliding due to perf issues Created 9 years, 1 month 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/resources/tracing/timeline.css
diff --git a/chrome/browser/resources/tracing/timeline.css b/chrome/browser/resources/tracing/timeline.css
index 22258316228b646bbe559f7d26ffb5b68f95c328..86ed86582541541e1351c859490a09a68db0f983 100644
--- a/chrome/browser/resources/tracing/timeline.css
+++ b/chrome/browser/resources/tracing/timeline.css
@@ -5,17 +5,16 @@ found in the LICENSE file.
*/
.timeline-drag-box {
- position: fixed;
background-color: rgba(0, 0, 255, 0.25);
- border: 1px solid rgb(0, 0, 96);
+ border: 1px solid #000060
font-size: 75%;
+ position: fixed;
}
.timeline-thread-track {
- display: -webkit-box;
-webkit-box-orient: vertical;
- padding-top: 1px;
- padding-bottom: 1px;
+ display: -webkit-box;
+ padding: 1px 0;
}
.timeline-thread-track:not(:first-child) {
@@ -23,21 +22,22 @@ found in the LICENSE file.
}
.timeline-slice-track {
- display: -webkit-box;
-webkit-box-orient: horizontal;
-webkit-box-align: stretch;
background-color: white;
- padding-right: 5px;
+ display: -webkit-box;
+ height: 18px;
margin: 0;
padding: 0;
- height: 18px;
+ padding-right: 5px;
}
.timeline-slice-track-title {
- text-align: right;
- overflow: visible;
- width: 300px;
+ overflow: hidden;
padding-right: 5px;
+ text-align: right;
+ text-overflow: ellipsis;
+ white-space: nowrap;
}
.timeline-slice-track-canvas-container {
@@ -47,6 +47,6 @@ found in the LICENSE file.
.timeline-slice-track-canvas {
-webkit-box-flex: 1;
- width: 100%;
height: 100%;
+ width: 100%;
}

Powered by Google App Engine
This is Rietveld 408576698