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

Side by Side Diff: chrome/browser/resources/options/subpages_tab_controls.css

Issue 3086017: Add tabs to passwords and exceptions subpage (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: add todo for mac Created 10 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
« no previous file with comments | « chrome/browser/resources/options/personal_options.js ('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 /* 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 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/personal_options.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698