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

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

Issue 5228004: Switch the about:gpu implementation from an about handler to dom_ui.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 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
Index: chrome/browser/resources/net_internals/tabswitcherview.css
===================================================================
--- chrome/browser/resources/net_internals/tabswitcherview.css (revision 0)
+++ chrome/browser/resources/net_internals/tabswitcherview.css (revision 0)
@@ -0,0 +1,61 @@
+/*
+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.
+*/
+.tab-switcher-view {
+ font-family: sans-serif;
+}
+
+.tab-switcher-view ul {
+ list-style: none;
+ padding: 0;
+ margin: 0;
+}
+
+.tab-switcher-view {
+ border-bottom: 1px solid #555;
+ background: #aaa;
+ overflow: hidden;
+}
+
+.tab-switcher-view li {
+ float: left;
+ -webkit-margin-start: 5px;
+}
+
+xhtml[dir=rtl] .tab-switcher-view li {
+ float: right;
+}
+
+.tab-switcher-view a {
+ text-decoration: none;
+ text-align: center;
+ display: inline-block;
+ margin-top: 4px;
+ padding: 5px 10px 3px 10px;
+ border-top-right-radius: 8px;
+ border-top-left-radius: 8px;
+ background-clip: border-box;
+ background: #ccc;
+}
+
+.tab-switcher-view a:hover {
+ background: #eee;
+}
+
+
+.tab-switcher-view a:visited,
+.tab-switcher-view a {
+ color: blue;
+}
+
+.tab-switcher-view .selected {
+ background: white;
+}
+
+.tab-switcher-view a.selected {
+ position: relative;
+ top: 3px;
+ color: black;
+}
« no previous file with comments | « chrome/browser/resources/net_internals/main.js ('k') | chrome/browser/resources/net_internals/tabswitcherview.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698