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

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

Issue 7531005: Rename the net_internals file names to include hyphens. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Add some missing files Created 9 years, 4 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
OLDNEW
(Empty)
1 /*
2 Copyright (c) 2010 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file.
5 */
6 .tab-switcher-view {
7 font-family: sans-serif;
8 }
9
10 .tab-switcher-view {
11 background: #aaa;
12 overflow-x: hidden;
13 overflow-y: auto;
14 }
15
16 .tab-switcher-view a {
17 text-decoration: none;
18 display: inline-block;
19 margin-top: 2px;
20 padding: 5px 10px 3px 10px;
21 background: #ccc;
22 width: 100%;
23 }
24
25 .tab-switcher-view a:hover {
26 background: #eee;
27 }
28
29
30 .tab-switcher-view a:visited,
31 .tab-switcher-view a {
32 color: blue;
33 }
34
35 .tab-switcher-view .selected {
36 background: white;
37 }
38
39 .tab-switcher-view a.selected {
40 color: black;
41 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/net_internals/tab_switcher_view.js ('k') | chrome/browser/resources/net_internals/tabswitcherview.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698