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