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

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

Issue 9701111: Fix style on network details to put scrollbar in tab contents. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge with master. Created 8 years, 9 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
« no previous file with comments | « chrome/browser/resources/options2/chromeos/internet_detail.html ('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 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 .subpages-nav-tabs .tab { 5 .subpages-nav-tabs .tab {
6 padding: 4px 8px; 6 padding: 4px 8px;
7 position: relative; 7 position: relative;
8 } 8 }
9 9
10 .subpages-nav-tabs .active-tab { 10 .subpages-nav-tabs .active-tab {
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 /* .tab is not removed when .active-tab is added, so we must 43 /* .tab is not removed when .active-tab is added, so we must
44 * override the hidden visibility above in the active tab case. 44 * override the hidden visibility above in the active tab case.
45 */ 45 */
46 .subpages-nav-tabs .active-tab .active-tab-label { 46 .subpages-nav-tabs .active-tab .active-tab-label {
47 visibility: visible; 47 visibility: visible;
48 } 48 }
49 49
50 .subpages-nav-tabs { 50 .subpages-nav-tabs {
51 background: -webkit-linear-gradient(white, #F3F3F3); /* very light gray */ 51 background: -webkit-linear-gradient(white, #F3F3F3); /* very light gray */
52 border-bottom: 1px solid #A0A0A0; /* light gray */ 52 border-bottom: 1px solid #A0A0A0; /* light gray */
53 margin-bottom: 15px;
54 padding: 4px; 53 padding: 4px;
55 } 54 }
56 55
57 .subpages-tab-contents { 56 .subpages-tab-contents {
58 -webkit-padding-start: 10px; 57 -webkit-padding-start: 10px;
59 display: none; 58 display: none;
59 padding-top: 15px;
60 } 60 }
61 61
62 .active-tab-contents { 62 .active-tab-contents {
63 display: block; 63 display: block;
64 } 64 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/options2/chromeos/internet_detail.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698