OLD | NEW |
1 /* | 1 /* |
2 Copyright (c) 2010 The Chromium Authors. All rights reserved. | 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 | 3 Use of this source code is governed by a BSD-style license that can be |
4 found in the LICENSE file. | 4 found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 #content-settings-nav-tabs .inactive-tab { | 7 .subpages-nav-tabs .inactive-tab { |
8 background: -webkit-gradient(linear, | 8 background: -webkit-gradient(linear, |
9 left top, | 9 left top, |
10 left bottom, | 10 left bottom, |
11 from(white), | 11 from(white), |
12 to(#f3f3f3)); | 12 to(#f3f3f3)); |
13 border-bottom: 1px solid #a0a0a0; | 13 border-bottom: 1px solid #a0a0a0; |
14 padding: 4px 8px; | 14 padding: 4px 8px; |
15 } | 15 } |
16 | 16 |
17 #content-settings-nav-tabs .active-tab { | 17 .subpages-nav-tabs .active-tab { |
18 background: white; | 18 background: white; |
19 border: 1px solid #a0a0a0; | 19 border: 1px solid #a0a0a0; |
20 border-bottom: 0; | 20 border-bottom: 0; |
21 -webkit-border-top-left-radius: 3px; | 21 -webkit-border-top-left-radius: 3px; |
22 -webkit-border-top-right-radius: 3px; | 22 -webkit-border-top-right-radius: 3px; |
23 font-weight: bold; | 23 font-weight: bold; |
24 } | 24 } |
25 | 25 |
26 #content-settings-nav-tabs { | 26 .subpages-nav-tabs { |
27 margin-bottom: 15px; | 27 margin-bottom: 15px; |
28 } | 28 } |
29 | 29 |
30 .content-settings-tab-contents { | 30 .subpages-tab-contents { |
31 display: none; | 31 display: none; |
32 -webkit-padding-start: 10px; | 32 -webkit-padding-start: 10px; |
33 } | 33 } |
34 | 34 |
35 .active-tab-contents { | 35 .active-tab-contents { |
36 display: block; | 36 display: block; |
37 } | 37 } |
OLD | NEW |