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

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

Issue 9958101: [WebUI] Fix rest of CSS style nits in misc. dirs so I can turn on CSS checker. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: estade review Created 8 years, 9 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/resources/tracing/timeline.css
diff --git a/chrome/browser/resources/tracing/timeline.css b/chrome/browser/resources/tracing/timeline.css
index 5aea296f8c1c6b3f13310588669e00e1c4d3131c..a7c7de1171f633701b5a8d4d693792ada2052745 100644
--- a/chrome/browser/resources/tracing/timeline.css
+++ b/chrome/browser/resources/tracing/timeline.css
@@ -1,8 +1,6 @@
-/*
- * Copyright (c) 2012 The Chromium Authors. All rights reserved.
+/* Copyright (c) 2012 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.
- */
+ * found in the LICENSE file. */
.timeline * {
-webkit-user-select: none;
@@ -11,7 +9,7 @@
.timeline-drag-box {
background-color: rgba(0, 0, 255, 0.25);
- border: 1px solid #000060
+ border: 1px solid rgb(0, 0, 96);
font-size: 75%;
position: fixed;
}
@@ -37,20 +35,20 @@
background-color: rgba(255, 255, 255, 1.0);
border: 1px solid rgba(0, 0, 0, 0.5);
border-radius: 25%;
- box-shadow: 0 0 .05em rgba(0,0,0,0.4);
- color: rgba(0,0,0,1);
+ box-shadow: 0 0 .05em rgba(0, 0, 0, 0.4);
+ color: rgba(0, 0, 0, 1);
}
.timeline-track-close-button {
- left: 0px;
+ left: 0;
position: absolute;
- top: 0px;
+ top: 0;
}
.timeline-track-collapse-button {
left: 15px;
position: absolute;
- top: 0px;
+ top: 0;
}
.timeline-thread-track:not(:first-child) {
@@ -58,13 +56,12 @@
}
.timeline-canvas-based-track {
- -webkit-box-orient: horizontal;
-webkit-box-align: stretch;
+ -webkit-box-orient: horizontal;
background-color: white;
display: -webkit-box;
margin: 0;
- padding: 0;
- padding-right: 5px;
+ padding: 0 5px 0 0;
}
.timeline-canvas-based-track-title {

Powered by Google App Engine
This is Rietveld 408576698