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 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
766 .displaytable > section > * { | 754 .displaytable > section > * { |
767 display: table-cell; | 755 display: table-cell; |
768 vertical-align: baseline; | 756 vertical-align: baseline; |
769 border-bottom: 1px solid #eeeeee; | 757 border-bottom: 1px solid #eeeeee; |
770 } | 758 } |
771 | 759 |
772 /* do not display a border after the last section in the table */ | 760 /* do not display a border after the last section in the table */ |
773 .displaytable > section:last-child > * { | 761 .displaytable > section:last-child > * { |
774 border-bottom: none; | 762 border-bottom: none; |
775 } | 763 } |
OLD | NEW |