| 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 #internetPage > section { | 5 #internetPage > section { |
| 6 display: block; | 6 display: block; |
| 7 } | 7 } |
| 8 | 8 |
| 9 #internetPage > section > h3 { | 9 #internetPage > section > h3 { |
| 10 font-size: 100%; | 10 font-size: 100%; |
| 11 width: auto; | 11 width: auto; |
| 12 } | 12 } |
| 13 | 13 |
| 14 #internetPage > section[hidden] { |
| 15 display: none; |
| 16 } |
| 17 |
| 14 .networks { | 18 .networks { |
| 15 -webkit-margin-start: 15px; | 19 -webkit-margin-start: 15px; |
| 16 padding: 2px; | 20 padding: 2px; |
| 17 } | 21 } |
| 18 | 22 |
| 19 .network-item { | 23 .network-item { |
| 20 -webkit-box-align: center; | 24 -webkit-box-align: center; |
| 21 -webkit-padding-start: 30px; | 25 -webkit-padding-start: 30px; |
| 22 border: 1px solid rgba(255,255,255,0); /* transparent white */ | 26 border: 1px solid rgba(255,255,255,0); /* transparent white */ |
| 23 border-radius: 2px; | 27 border-radius: 2px; |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 } | 69 } |
| 66 | 70 |
| 67 .network-item:hover > * > button, | 71 .network-item:hover > * > button, |
| 68 .network-item[connected] > * > button { | 72 .network-item[connected] > * > button { |
| 69 visibility: visible; | 73 visibility: visible; |
| 70 } | 74 } |
| 71 | 75 |
| 72 .network-item-box-spacer { | 76 .network-item-box-spacer { |
| 73 -webkit-box-flex: 1; | 77 -webkit-box-flex: 1; |
| 74 } | 78 } |
| OLD | NEW |