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

Side by Side Diff: chrome/browser/resources/options2/chromeos/internet_detail.css

Issue 9668010: Move proxy handling into network details. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix 80-column wrap. 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
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 margin: 0 !important; 7 margin: 0 !important;
8 padding: 0 !important; 8 padding: 0 !important;
9 } 9 }
10 10
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 border-left: 1px solid #ddd; 42 border-left: 1px solid #ddd;
43 border-right: 1px solid #ddd; 43 border-right: 1px solid #ddd;
44 border-top: 1px solid #ddd; 44 border-top: 1px solid #ddd;
45 } 45 }
46 46
47 /* Fix the height of the subpages so that the dialog does not resize when the 47 /* Fix the height of the subpages so that the dialog does not resize when the
48 user switches tabs. */ 48 user switches tabs. */
49 #internet-details-content-area > .subpages-tab-contents { 49 #internet-details-content-area > .subpages-tab-contents {
50 -webkit-padding-end: 10px; 50 -webkit-padding-end: 10px;
51 height: 350px; 51 height: 350px;
52 min-width: 480px;
52 overflow-y: auto; 53 overflow-y: auto;
53 } 54 }
54 55
55 #ipConfigList { 56 #ipConfigList {
56 min-height: 96px !important; 57 min-height: 96px !important;
57 } 58 }
58 59
60 /* Minimum and maximum height are integer multiples of the height of a list
61 entry. */
62 #ignoredHostList {
63 -webkit-margin-start: 0;
64 border: solid 1px #999;
65 max-height: 128px;
66 min-height: 64px;
67 width: 400px;
68 }
69
70 #newHost {
71 -webkit-margin-start: 0;
72 margin-top: 8px;
73 }
74
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/resources/options2/chromeos/internet_detail.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698