OLD | NEW |
---|---|
(Empty) | |
1 /* Force tab strip to extend to the left and right edges of the window. */ | |
2 #internet-details-content-area { | |
3 margin: 0 !important; | |
4 padding: 0 !important; | |
5 } | |
6 | |
7 #network-details-header { | |
8 -webkit-box-orient: horizontal; | |
9 -webkit-padding-start: 20px; | |
10 background: #eee; | |
11 display: -webkit-box; | |
12 margin: 0; | |
13 padding-bottom: 12px; | |
14 padding-top: 8px; | |
15 } | |
16 | |
17 #network-details-header .network-icon { | |
18 margin-top: 6px; | |
19 } | |
20 | |
21 .subpages-nav-tabs#details-tab-strip { | |
csilv
2012/02/25 01:31:54
This would probably be a better choice:
#details
kevers
2012/02/29 15:30:16
Done.
| |
22 background: #eee; | |
23 padding: 4px 20px; | |
24 } | |
25 | |
26 /* Fix the height of the subpages so that the dialog does not resize when the | |
27 user switches tabs. */ | |
28 #internet-details-content-area .subpages-tab-contents { | |
29 -webkit-padding-end: 10px; | |
30 height: 350px; | |
31 overflow-y: auto; | |
32 } | |
OLD | NEW |