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

Unified Diff: chrome/browser/resources/gpu_internals/info_view.css

Issue 9923005: [WebUI] Fix rest of CSS style nits so I can turn on CSS checker. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: padding fixes, remove a no-op change 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/gpu_internals/info_view.css
diff --git a/chrome/browser/resources/gpu_internals/info_view.css b/chrome/browser/resources/gpu_internals/info_view.css
index 3e2ad0b6445965f192355d2d1c8987d6d6c3b51e..867690952cf4a2c84f5b01e90f8939f4da2f42d2 100644
--- a/chrome/browser/resources/gpu_internals/info_view.css
+++ b/chrome/browser/resources/gpu_internals/info_view.css
@@ -1,27 +1,28 @@
-/*
-Copyright (c) 2010 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.
-*/
+/* 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. */
+
#info-view {
- padding: 10px;
- overflow: auto;
-webkit-box-flex: 1;
+ overflow: auto;
+ padding: 10px;
}
+
#info-view * {
-webkit-user-select: text;
}
#info-view[selected] {
- display: -webkit-box;
-webkit-box-orient: vertical;
+ display: -webkit-box;
}
#info-view h3,
#info-view ul {
- -webkit-margin-before: 0;
-webkit-margin-after: 0;
+ -webkit-margin-before: 0;
}
+
#info-view > div {
-webkit-margin-after: 1em;
}
@@ -31,16 +32,16 @@ found in the LICENSE file.
}
#info-view table {
- cursor: text;
border-collapse: collapse;
+ cursor: text;
}
#info-view table,
#info-view th,
#info-view td {
border: 1px solid #777;
- padding-right: 4px;
padding-left: 4px;
+ padding-right: 4px;
text-align: top;
}

Powered by Google App Engine
This is Rietveld 408576698