OLD | NEW |
---|---|
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 25 matching lines...) Expand all Loading... | |
36 border-bottom: 1px solid #ddd; | 36 border-bottom: 1px solid #ddd; |
37 padding: 4px 20px; | 37 padding: 4px 20px; |
38 } | 38 } |
39 | 39 |
40 #details-tab-strip.subpages-nav-tabs > .active-tab { | 40 #details-tab-strip.subpages-nav-tabs > .active-tab { |
41 -webkit-box-shadow: 8px -8px 12px -6px rgb(240,240,240); | 41 -webkit-box-shadow: 8px -8px 12px -6px rgb(240,240,240); |
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 |
csilv
2012/03/09 22:30:14
nit: remove this extra linefeed
kevers
2012/03/12 13:57:13
Done.
| |
47 | |
47 /* Fix the height of the subpages so that the dialog does not resize when the | 48 /* Fix the height of the subpages so that the dialog does not resize when the |
48 user switches tabs. */ | 49 user switches tabs. */ |
49 #internet-details-content-area > .subpages-tab-contents { | 50 #internet-details-content-area > .subpages-tab-contents { |
50 -webkit-padding-end: 10px; | 51 -webkit-padding-end: 10px; |
51 height: 350px; | 52 height: 350px; |
53 min-width: 480px; | |
52 overflow-y: auto; | 54 overflow-y: auto; |
53 } | 55 } |
54 | 56 |
55 #ipConfigList { | 57 #ipConfigList { |
56 min-height: 96px !important; | 58 min-height: 96px !important; |
57 } | 59 } |
58 | 60 |
61 /* Minimum and maximum height are integer multiples of the height of a list | |
62 entry. */ | |
63 #ignoredHostList { | |
64 -webkit-margin-start: 0; | |
65 border: solid 1px #999; | |
66 max-height: 128px; | |
67 min-height: 64px; | |
68 width: 400px; | |
69 } | |
70 | |
71 #newHost { | |
72 -webkit-margin-start: 0; | |
73 margin-top: 8px; | |
74 } | |
75 | |
OLD | NEW |