| 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%; |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 font-weight: bold; | 85 font-weight: bold; |
| 86 } | 86 } |
| 87 | 87 |
| 88 .network-status-label { | 88 .network-status-label { |
| 89 color: grey; | 89 color: grey; |
| 90 } | 90 } |
| 91 | 91 |
| 92 .network-item > * > button { | 92 .network-item > * > button { |
| 93 min-width: 100px; | 93 min-width: 100px; |
| 94 visibility: hidden; | 94 visibility: hidden; |
| 95 margin-right: 5px; |
| 95 } | 96 } |
| 96 | 97 |
| 97 .network-item:hover > * > button, | 98 .network-item:hover > * > button, |
| 98 .network-item[connected] > * > button { | 99 .network-item[connected] > * > button { |
| 99 visibility: visible; | 100 visibility: visible; |
| 100 } | 101 } |
| 101 | 102 |
| 102 .network-item[connecting] > * > button { | 103 .network-item[connecting] > * > button { |
| 103 visibility: hidden; | 104 visibility: hidden; |
| 104 } | 105 } |
| 105 | 106 |
| 106 .network-item-box-spacer { | 107 .network-item-box-spacer { |
| 107 -webkit-box-flex: 1; | 108 -webkit-box-flex: 1; |
| 108 } | 109 } |
| 109 | 110 |
| 111 #detailsInternetPage { |
| 112 min-width: 350px; |
| 113 } |
| 114 |
| 110 #detailsInternetPage:not([connected]) > #advancedSection, | 115 #detailsInternetPage:not([connected]) > #advancedSection, |
| 111 #detailsInternetPage[connecting] > * > #detailsInternetLogin, | 116 #detailsInternetPage[connecting] > * > #detailsInternetLogin, |
| 112 #detailsInternetPage[connected] > * > #detailsInternetLogin, | 117 #detailsInternetPage[connected] > * > #detailsInternetLogin, |
| 113 #detailsInternetPage[ethernet] > #wirelessOptions, | 118 #detailsInternetPage[ethernet] > #wirelessOptions, |
| 114 #detailsInternetPage[ethernet] > #certNetwork, | 119 #detailsInternetPage[ethernet] > #certNetwork, |
| 115 #detailsInternetPage[ethernet] > #certNetworkPkcs, | 120 #detailsInternetPage[ethernet] > #certNetworkPkcs, |
| 116 #detailsInternetPage[ethernet] > #passwordNetwork, | 121 #detailsInternetPage[ethernet] > #passwordNetwork, |
| 117 #detailsInternetPage:not([password]) > #passwordNetwork, | 122 #detailsInternetPage:not([password]) > #passwordNetwork, |
| 118 #detailsInternetPage[cert] > #passwordNetwork, | 123 #detailsInternetPage[cert] > #passwordNetwork, |
| 119 #detailsInternetPage:not([cert]) > #certNetwork, | 124 #detailsInternetPage:not([cert]) > #certNetwork, |
| 120 #detailsInternetPage:not([cert]) > #certNetworkPkcs, | 125 #detailsInternetPage:not([cert]) > #certNetworkPkcs, |
| 121 #detailsInternetPage:not([certPkcs]) > #certNetworkPkcs, | 126 #detailsInternetPage:not([certPkcs]) > #certNetworkPkcs, |
| 122 #detailsInternetPage[certPkcs] > #certNetwork { | 127 #detailsInternetPage[certPkcs] > #certNetwork { |
| 123 display: none; | 128 display: none; |
| 124 } | 129 } |
| 125 | 130 |
| 126 #wirelessButtons > * > button { | 131 #wirelessButtons > * > button { |
| 127 display: block; | 132 display: block; |
| 128 } | 133 } |
| 129 | 134 |
| 130 #wirelessButtons[haswifi] > * > #enableWifi, | 135 #wirelessButtons[haswifi] > * > #enableWifi, |
| 131 #wirelessButtons:not([haswifi]) > * > #disableWifi, | 136 #wirelessButtons:not([haswifi]) > * > #disableWifi, |
| 132 #wirelessButtons:not([cellularAvail]) > * > #disableCellular, | 137 #wirelessButtons:not([cellularAvail]) > * > #disableCellular, |
| 133 #wirelessButtons:not([cellularAvail]) > * > #enableCellular, | 138 #wirelessButtons:not([cellularAvail]) > * > #enableCellular, |
| 134 #wirelessButtons[hasCellular] > * > #enableCellular, | 139 #wirelessButtons[hasCellular] > * > #enableCellular, |
| 135 #wirelessButtons:not([hasCellular]) > * > #disableCellular { | 140 #wirelessButtons:not([hasCellular]) > * > #disableCellular { |
| 136 display: none; | 141 display: none; |
| 137 } | 142 } |
| OLD | NEW |