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

Side by Side Diff: chrome/browser/resources/options2/chromeos/internet_detail.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 | « no previous file | chrome/browser/resources/options2/chromeos/internet_detail.html » ('j') | 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 /* Force tab strip to extend to the left and right edges of the window. */ 5 /* Force tab strip to extend to the left and right edges of the window. */
6 #internet-details-content-area { 6 #internet-details-content-area {
7 -webkit-box-orient: vertical;
8 display: -webkit-box;
7 margin: 0 !important; 9 margin: 0 !important;
8 padding: 0 !important; 10 padding: 0 !important;
9 } 11 }
10 12
11 #network-details-header { 13 #network-details-header {
12 -webkit-padding-start: 20px; 14 -webkit-padding-start: 20px;
13 margin: 0; 15 margin: 0;
14 padding-bottom: 18px; 16 padding-bottom: 18px;
15 padding-top: 32px; 17 padding-top: 32px;
16 } 18 }
(...skipping 23 matching lines...) Expand all
40 #details-tab-strip.subpages-nav-tabs > .active-tab { 42 #details-tab-strip.subpages-nav-tabs > .active-tab {
41 -webkit-box-shadow: 8px -8px 12px -6px rgb(240,240,240); 43 -webkit-box-shadow: 8px -8px 12px -6px rgb(240,240,240);
42 border-left: 1px solid #ddd; 44 border-left: 1px solid #ddd;
43 border-right: 1px solid #ddd; 45 border-right: 1px solid #ddd;
44 border-top: 1px solid #ddd; 46 border-top: 1px solid #ddd;
45 } 47 }
46 48
47 /* Fix the height of the subpages so that the dialog does not resize when the 49 /* Fix the height of the subpages so that the dialog does not resize when the
48 user switches tabs. */ 50 user switches tabs. */
49 #internet-details-content-area > .subpages-tab-contents { 51 #internet-details-content-area > .subpages-tab-contents {
52 -webkit-box-flex: 1;
53 -webkit-box-sizing: border-box;
50 -webkit-padding-end: 10px; 54 -webkit-padding-end: 10px;
51 height: 350px; 55 height: 350px;
52 min-width: 480px; 56 min-width: 480px;
53 overflow-y: auto; 57 overflow-y: auto;
54 } 58 }
55 59
56 #ipConfigList { 60 #ipConfigList {
57 min-height: 96px !important; 61 min-height: 96px !important;
58 } 62 }
59 63
60 /* Minimum and maximum height are integer multiples of the height of a list 64 /* Minimum and maximum height are integer multiples of the height of a list
61 entry. */ 65 entry. */
62 #ignoredHostList { 66 #ignoredHostList {
63 -webkit-margin-start: 0; 67 -webkit-margin-start: 0;
64 border: solid 1px #999; 68 border: solid 1px #999;
65 max-height: 128px; 69 max-height: 128px;
66 min-height: 64px; 70 min-height: 64px;
67 width: 400px; 71 width: 400px;
68 } 72 }
69 73
70 #newHost { 74 #newHost {
71 -webkit-margin-start: 0; 75 -webkit-margin-start: 0;
72 margin-top: 8px; 76 margin-top: 8px;
73 } 77 }
74 78
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/options2/chromeos/internet_detail.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698