| OLD | NEW |
| 1 html { | 1 html { |
| 2 height: 100%; | 2 height: 100%; |
| 3 } | 3 } |
| 4 | 4 |
| 5 body { | 5 body { |
| 6 background: white; | 6 background: white; |
| 7 display: -webkit-box; | 7 display: -webkit-box; |
| 8 height: 100%; | 8 height: 100%; |
| 9 margin: 0; | 9 margin: 0; |
| 10 overflow: hidden; | 10 overflow: hidden; |
| (...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 339 content: url('./checkmark.png'); | 339 content: url('./checkmark.png'); |
| 340 height: 16px; | 340 height: 16px; |
| 341 left: 2px; | 341 left: 2px; |
| 342 position: absolute; | 342 position: absolute; |
| 343 } | 343 } |
| 344 | 344 |
| 345 html[os=mac] input[type='checkbox']:checked::before { | 345 html[os=mac] input[type='checkbox']:checked::before { |
| 346 top: 2px; | 346 top: 2px; |
| 347 } | 347 } |
| 348 | 348 |
| 349 html[os=mac] #options-horizontal-separator { |
| 350 display: none; |
| 351 } |
| 352 |
| 353 html[os=mac] #options-option { |
| 354 display: none; |
| 355 } |
| 356 |
| 349 input[type='radio'] { | 357 input[type='radio'] { |
| 350 -webkit-box-shadow: inset 0 1px 2px white, | 358 -webkit-box-shadow: inset 0 1px 2px white, |
| 351 0 1px 2px rgba(0, 0, 0, .2); | 359 0 1px 2px rgba(0, 0, 0, .2); |
| 352 -webkit-appearance: none; | 360 -webkit-appearance: none; |
| 353 -webkit-margin-start: 0; | 361 -webkit-margin-start: 0; |
| 354 -webkit-margin-end: 5px; | 362 -webkit-margin-end: 5px; |
| 355 -webkit-transition: border 500ms; | 363 -webkit-transition: border 500ms; |
| 356 background: -webkit-linear-gradient(#fafafa, #dcdcdc); | 364 background: -webkit-linear-gradient(#fafafa, #dcdcdc); |
| 357 border-radius: 100%; | 365 border-radius: 100%; |
| 358 border: 1px solid #a0a0a0; | 366 border: 1px solid #a0a0a0; |
| (...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 768 margin-top: 10px; | 776 margin-top: 10px; |
| 769 } | 777 } |
| 770 | 778 |
| 771 input[disabled] + label { | 779 input[disabled] + label { |
| 772 color: gray; | 780 color: gray; |
| 773 } | 781 } |
| 774 | 782 |
| 775 #error-action-area { | 783 #error-action-area { |
| 776 margin-top: 10px; | 784 margin-top: 10px; |
| 777 } | 785 } |
| OLD | NEW |