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 | |
357 input[type='radio'] { | 349 input[type='radio'] { |
358 -webkit-box-shadow: inset 0 1px 2px white, | 350 -webkit-box-shadow: inset 0 1px 2px white, |
359 0 1px 2px rgba(0, 0, 0, .2); | 351 0 1px 2px rgba(0, 0, 0, .2); |
360 -webkit-appearance: none; | 352 -webkit-appearance: none; |
361 -webkit-margin-start: 0; | 353 -webkit-margin-start: 0; |
362 -webkit-margin-end: 5px; | 354 -webkit-margin-end: 5px; |
363 -webkit-transition: border 500ms; | 355 -webkit-transition: border 500ms; |
364 background: -webkit-linear-gradient(#fafafa, #dcdcdc); | 356 background: -webkit-linear-gradient(#fafafa, #dcdcdc); |
365 border-radius: 100%; | 357 border-radius: 100%; |
366 border: 1px solid #a0a0a0; | 358 border: 1px solid #a0a0a0; |
(...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
776 margin-top: 10px; | 768 margin-top: 10px; |
777 } | 769 } |
778 | 770 |
779 input[disabled] + label { | 771 input[disabled] + label { |
780 color: gray; | 772 color: gray; |
781 } | 773 } |
782 | 774 |
783 #error-action-area { | 775 #error-action-area { |
784 margin-top: 10px; | 776 margin-top: 10px; |
785 } | 777 } |
OLD | NEW |