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

Side by Side Diff: chrome/browser/resources/net_internals/tab_switcher_view.css

Issue 10959073: Small net-internals UI tweaks for android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 3 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/net_internals/main.css ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 5
6 .tab-switcher-view { 6 .tab-switcher-view {
7 border-right: 1px solid #aaa; 7 border-right: 1px solid #aaa;
8 display: inline-block; 8 display: inline-block;
9 } 9 }
10 10
11 .tab-switcher-view { 11 .tab-switcher-view {
12 background: #eee; 12 background: #eee;
13 overflow-x: hidden; 13 overflow-x: hidden;
14 overflow-y: auto; 14 overflow-y: auto;
15 } 15 }
16 16
17 .tab-switcher-view a { 17 .tab-switcher-view a {
18 display: block; 18 display: block;
19 margin-top: 0.15em; 19 margin-top: 0.15em;
20 padding: 0.25em 0.5em 0.25em 0.5em; 20 padding: 0.25em 0.5em 0.25em 0.5em;
21 text-decoration: none; 21 text-decoration: none;
22 } 22 }
23 23
24 .tab-switcher-view a:hover, 24 .tab-switcher-view a:hover,
25 .tab-switcher-view .selected { 25 .tab-switcher-view .selected {
26 background: white; 26 background: white;
27 } 27 }
28 28
29
30 .tab-switcher-view a:visited, 29 .tab-switcher-view a:visited,
31 .tab-switcher-view a { 30 .tab-switcher-view a {
32 color: black; 31 color: black;
33 } 32 }
34 33
35 .tab-switcher-view a.selected { 34 .tab-switcher-view a.selected {
36 color: rgb(221, 75, 57); 35 color: rgb(221, 75, 57);
37 font-weight: bold;
38 } 36 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/net_internals/main.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698