| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
| 4 | 4 |
| 5 #change-home-page-section { | 5 #change-home-page-section { |
| 6 -webkit-margin-start: 30px; | 6 -webkit-margin-start: 30px; |
| 7 } | 7 } |
| 8 | 8 |
| 9 #home-page-url { | 9 #home-page-url { |
| 10 display: inline-block; | 10 display: inline-block; |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 line-height: normal; | 228 line-height: normal; |
| 229 white-space: normal; | 229 white-space: normal; |
| 230 width: 25px; | 230 width: 25px; |
| 231 } | 231 } |
| 232 | 232 |
| 233 .network-icon cr-network-icon { | 233 .network-icon cr-network-icon { |
| 234 height: 100%; | 234 height: 100%; |
| 235 width: 100%; | 235 width: 100%; |
| 236 } | 236 } |
| 237 | 237 |
| 238 @-webkit-keyframes connecting-animation { | 238 @keyframes connecting-animation { |
| 239 0% { | 239 0% { |
| 240 background-position: 0 25%; | 240 background-position: 0 25%; |
| 241 } | 241 } |
| 242 12.5% { | 242 12.5% { |
| 243 background-position: 0 50%; | 243 background-position: 0 50%; |
| 244 } | 244 } |
| 245 25% { | 245 25% { |
| 246 background-position: 0 75%; | 246 background-position: 0 75%; |
| 247 } | 247 } |
| 248 37.5% { | 248 37.5% { |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 | 282 |
| 283 .network-group > .controlled-setting-indicator, | 283 .network-group > .controlled-setting-indicator, |
| 284 .network-menu-item > .controlled-setting-indicator { | 284 .network-menu-item > .controlled-setting-indicator { |
| 285 -webkit-margin-end: 5px; | 285 -webkit-margin-end: 5px; |
| 286 } | 286 } |
| 287 | 287 |
| 288 .network-options-button:hover { | 288 .network-options-button:hover { |
| 289 opacity: 1; | 289 opacity: 1; |
| 290 } | 290 } |
| 291 | 291 |
| 292 @-webkit-keyframes vpn-connecting-animation { | 292 @keyframes vpn-connecting-animation { |
| 293 from { | 293 from { |
| 294 opacity: 1; | 294 opacity: 1; |
| 295 } | 295 } |
| 296 to { | 296 to { |
| 297 opacity: 0.2; | 297 opacity: 0.2; |
| 298 } | 298 } |
| 299 } | 299 } |
| 300 | 300 |
| 301 .network-connecting { | 301 .network-connecting { |
| 302 -webkit-animation: connecting-animation 1s step-end infinite; | 302 animation: connecting-animation 1s step-end infinite; |
| 303 } | 303 } |
| 304 | 304 |
| 305 .network-vpn.network-connecting { | 305 .network-vpn.network-connecting { |
| 306 -webkit-animation: vpn-connecting-animation 500ms alternate infinite; | 306 animation: vpn-connecting-animation 500ms alternate infinite; |
| 307 } | 307 } |
| 308 | 308 |
| 309 .network-title { | 309 .network-title { |
| 310 font-weight: 600; | 310 font-weight: 600; |
| 311 line-height: 120%; | 311 line-height: 120%; |
| 312 } | 312 } |
| 313 | 313 |
| 314 .network-subtitle { | 314 .network-subtitle { |
| 315 color: #333; | 315 color: #333; |
| 316 display: inline-block; | 316 display: inline-block; |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 483 | 483 |
| 484 /* An input that has no function except to take up the same amount of space as | 484 /* An input that has no function except to take up the same amount of space as |
| 485 * a checkbox. */ | 485 * a checkbox. */ |
| 486 .spacer-checkbox { | 486 .spacer-checkbox { |
| 487 visibility: hidden; | 487 visibility: hidden; |
| 488 } | 488 } |
| 489 | 489 |
| 490 #android-apps-settings { | 490 #android-apps-settings { |
| 491 -webkit-margin-start: 30px; | 491 -webkit-margin-start: 30px; |
| 492 } | 492 } |
| OLD | NEW |