| OLD | NEW |
| 1 body { | 1 body { |
| 2 cursor: default; | 2 cursor: default; |
| 3 font-size: 13px; | 3 font-size: 13px; |
| 4 } | 4 } |
| 5 | 5 |
| 6 a:link { | 6 a:link { |
| 7 color: rgb(63, 110, 194); | 7 color: rgb(63, 110, 194); |
| 8 } | 8 } |
| 9 | 9 |
| 10 a:active { | 10 a:active { |
| (...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 408 } | 408 } |
| 409 | 409 |
| 410 div.disabled { | 410 div.disabled { |
| 411 color: #888; | 411 color: #888; |
| 412 } | 412 } |
| 413 | 413 |
| 414 .touch-slider { | 414 .touch-slider { |
| 415 -webkit-appearance: slider-horizontal; | 415 -webkit-appearance: slider-horizontal; |
| 416 } | 416 } |
| 417 | 417 |
| 418 .link-button, | |
| 419 .link-button:active, | |
| 420 .link-button:focus, | |
| 421 .link-button:hover { | |
| 422 -webkit-box-shadow: none; | |
| 423 background: transparent none; | |
| 424 border: none; | |
| 425 color: blue; | |
| 426 cursor: pointer; | |
| 427 text-decoration: underline; | |
| 428 } | |
| 429 | |
| 430 .text-button, | 418 .text-button, |
| 431 .text-button:active, | 419 .text-button:active, |
| 432 .text-button:focus, | 420 .text-button:focus, |
| 433 .text-button:hover { | 421 .text-button:hover { |
| 434 -webkit-box-shadow: none; | 422 -webkit-box-shadow: none; |
| 435 background: transparent none; | 423 background: transparent none; |
| 436 border-color: transparent; | 424 border-color: transparent; |
| 437 color: #000; | 425 color: #000; |
| 438 } | 426 } |
| 439 | 427 |
| (...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 819 } | 807 } |
| 820 | 808 |
| 821 /* WebKit does not honor alignment for text specified via placeholder attrib. | 809 /* WebKit does not honor alignment for text specified via placeholder attrib. |
| 822 * This CSS is a workaround. Please remove once WebKit bug is fixed. | 810 * This CSS is a workaround. Please remove once WebKit bug is fixed. |
| 823 * https://bugs.webkit.org/show_bug.cgi?id=63367 | 811 * https://bugs.webkit.org/show_bug.cgi?id=63367 |
| 824 */ | 812 */ |
| 825 html[dir='rtl'] input.weakrtl::-webkit-input-placeholder, | 813 html[dir='rtl'] input.weakrtl::-webkit-input-placeholder, |
| 826 html[dir='rtl'] .weakrtl input::-webkit-input-placeholder { | 814 html[dir='rtl'] .weakrtl input::-webkit-input-placeholder { |
| 827 direction: rtl; | 815 direction: rtl; |
| 828 } | 816 } |
| OLD | NEW |