| 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 16 matching lines...) Expand all Loading... |
| 27 .networks { | 27 .networks { |
| 28 -webkit-margin-start: 15px; | 28 -webkit-margin-start: 15px; |
| 29 padding: 2px; | 29 padding: 2px; |
| 30 } | 30 } |
| 31 | 31 |
| 32 .network-password { | 32 .network-password { |
| 33 left: 0px; | 33 left: 0px; |
| 34 position: relative; | 34 position: relative; |
| 35 } | 35 } |
| 36 | 36 |
| 37 .other-network { | 37 .network-password > input, select { |
| 38 left: 0px; | 38 width: 200px; |
| 39 position: relative; | |
| 40 } | |
| 41 | |
| 42 .other-network > input { | |
| 43 width: 140px; | |
| 44 } | 39 } |
| 45 | 40 |
| 46 .network-item { | 41 .network-item { |
| 47 -webkit-box-align: center; | 42 -webkit-box-align: center; |
| 48 -webkit-padding-start: 30px; | 43 -webkit-padding-start: 30px; |
| 49 border: 1px solid rgba(255,255,255,0); /* transparent white */ | 44 border: 1px solid rgba(255,255,255,0); /* transparent white */ |
| 50 border-radius: 2px; | 45 border-radius: 2px; |
| 51 display: -webkit-box; | 46 display: -webkit-box; |
| 52 height: 35px; | 47 height: 35px; |
| 53 } | 48 } |
| (...skipping 17 matching lines...) Expand all Loading... |
| 71 | 66 |
| 72 .network-item[connecting] { | 67 .network-item[connecting] { |
| 73 background-color: hsl(214, 91%, 97%); | 68 background-color: hsl(214, 91%, 97%); |
| 74 border-color: hsl(214, 91%, 85%); | 69 border-color: hsl(214, 91%, 85%); |
| 75 padding-top: 5px; | 70 padding-top: 5px; |
| 76 height: 60px; | 71 height: 60px; |
| 77 -webkit-box-align: start; | 72 -webkit-box-align: start; |
| 78 display: block; | 73 display: block; |
| 79 } | 74 } |
| 80 | 75 |
| 76 .network-item[connecting][other] { |
| 77 height: 105px; |
| 78 } |
| 79 |
| 81 .network-item-text { | 80 .network-item-text { |
| 82 -webkit-padding-start: 30px; | 81 -webkit-padding-start: 30px; |
| 83 background: left center no-repeat; | 82 background: left center no-repeat; |
| 84 cursor: default; | 83 cursor: default; |
| 85 display: table-cell; | 84 display: table-cell; |
| 86 height: 32px; | 85 height: 32px; |
| 87 line-height: 100%; | 86 line-height: 100%; |
| 88 max-width: 320px; | 87 max-width: 320px; |
| 89 overflow: hidden; | 88 overflow: hidden; |
| 90 vertical-align: middle; | 89 vertical-align: middle; |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 #detailsInternetPage[cert] .password-details, | 162 #detailsInternetPage[cert] .password-details, |
| 164 #detailsInternetPage[certPkcs] .password-details, | 163 #detailsInternetPage[certPkcs] .password-details, |
| 165 #detailsInternetPage:not([cert]) .cert-details, | 164 #detailsInternetPage:not([cert]) .cert-details, |
| 166 #detailsInternetPage:not([certPkcs]) .cert-pkcs-details { | 165 #detailsInternetPage:not([certPkcs]) .cert-pkcs-details { |
| 167 display: none; | 166 display: none; |
| 168 } | 167 } |
| 169 | 168 |
| 170 #wirelessButtons > * > button { | 169 #wirelessButtons > * > button { |
| 171 margin-left: 5px; | 170 margin-left: 5px; |
| 172 } | 171 } |
| OLD | NEW |