OLD | NEW |
---|---|
1 /* | 1 /* |
2 * TODO(xiyuan): Remove the section overrides when options_page.css uses the | 2 * TODO(xiyuan): Remove the section overrides when options_page.css uses the |
3 * new style. | 3 * new style. |
4 */ | 4 */ |
5 #inetTitle { | 5 #inetTitle { |
6 border: none; | 6 border: none; |
7 } | 7 } |
8 | 8 |
9 #internetPage > section { | 9 #internetPage > section { |
10 display: block; | 10 display: block; |
(...skipping 29 matching lines...) Expand all Loading... | |
40 | 40 |
41 .network-item { | 41 .network-item { |
42 -webkit-box-align: center; | 42 -webkit-box-align: center; |
43 -webkit-padding-start: 30px; | 43 -webkit-padding-start: 30px; |
44 border: 1px solid rgba(255,255,255,0); /* transparent white */ | 44 border: 1px solid rgba(255,255,255,0); /* transparent white */ |
45 border-radius: 2px; | 45 border-radius: 2px; |
46 display: -webkit-box; | 46 display: -webkit-box; |
47 height: 35px; | 47 height: 35px; |
48 } | 48 } |
49 | 49 |
50 .network-item:hover { | 50 .network-item[connectable]:hover { |
xiyuan
2010/11/16 23:52:18
What style will be used for non-connectable networ
| |
51 border-color: hsl(214, 91%, 85%); | 51 border-color: hsl(214, 91%, 85%); |
52 background-color: hsl(214, 91%, 97%); | 52 background-color: hsl(214, 91%, 97%); |
53 } | 53 } |
54 | 54 |
55 .network-item[connected] { | 55 .network-item[connected] { |
56 background-image: -webkit-gradient(linear, left top, left bottom, | 56 background-image: -webkit-gradient(linear, left top, left bottom, |
57 from(rgba(255,255,255,0.8)), to(rgba(255,255,255,0))); | 57 from(rgba(255,255,255,0.8)), to(rgba(255,255,255,0))); |
58 background-color: hsl(214,91%,89%); | 58 background-color: hsl(214,91%,89%); |
59 border-color: hsl(214, 91%, 65%); | 59 border-color: hsl(214, 91%, 65%); |
60 } | 60 } |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
162 #detailsInternetPage[cert] .password-details, | 162 #detailsInternetPage[cert] .password-details, |
163 #detailsInternetPage[certPkcs] .password-details, | 163 #detailsInternetPage[certPkcs] .password-details, |
164 #detailsInternetPage:not([cert]) .cert-details, | 164 #detailsInternetPage:not([cert]) .cert-details, |
165 #detailsInternetPage:not([certPkcs]) .cert-pkcs-details { | 165 #detailsInternetPage:not([certPkcs]) .cert-pkcs-details { |
166 display: none; | 166 display: none; |
167 } | 167 } |
168 | 168 |
169 #wirelessButtons > * > button { | 169 #wirelessButtons > * > button { |
170 margin-left: 5px; | 170 margin-left: 5px; |
171 } | 171 } |
OLD | NEW |