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

Unified Diff: chrome/browser/resources/net_internals/main.css

Issue 1593009: Add extra views to the new net internals page. This adds tabs along the top f... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 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/net_internals/main.css
===================================================================
--- chrome/browser/resources/net_internals/main.css (revision 43430)
+++ chrome/browser/resources/net_internals/main.css (working copy)
@@ -6,6 +6,7 @@
* {
-webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
}
body {
font-family: sans-serif;
@@ -132,3 +133,54 @@
.logSourceEntry * td {
font-size: 10px;
}
+
+#categoryTabHandles ul {
+ list-style: none;
+ padding: 0;
+ margin: 0;
+}
+
+#categoryTabHandles {
+ border-bottom: 1px solid #555;
+ background: #aaa;
+ overflow: hidden;
+}
+
+#categoryTabHandles li {
+ float: left;
+ margin-left: 5px;
+}
+
+#categoryTabHandles a {
+ text-decoration: none;
+ text-align: center;
+ display: block;
+ width: 9em;
+ padding: 5px;
+ background: #ccc;
+}
+
+#categoryTabHandles a:hover {
+ background: #eee;
+}
+
+#categoryTabHandles a:visited,
+#categoryTabHandles a {
+ color: blue;
+}
+
+#categoryTabHandles .selected {
+ background: white;
+}
+
+#categoryTabHandles a.selected {
+ position:relative;
+ top: 1px;
+ font-weight: bold;
+ color: black;
+}
+
+#detailsLogBox,
+#detailsTimelineBox {
+ overflow: auto;
+}
« no previous file with comments | « chrome/browser/resources/net_internals/layoutmanager.js ('k') | chrome/browser/resources/net_internals/main.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698