| OLD | NEW |
| (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 } | |
| OLD | NEW |