You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
613 B

  1. /* hide lengthy template information */
  2. .memtemplate, .memTemplParams {
  3. display: none;
  4. }
  5. /* allow compiler information to wrap */
  6. /* https://css-tricks.com/snippets/css/make-pre-text-wrap/ */
  7. pre.fragment {
  8. white-space: pre-wrap; /* css-3 */
  9. white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
  10. white-space: -pre-wrap; /* Opera 4-6 */
  11. white-space: -o-pre-wrap; /* Opera 7 */
  12. word-wrap: break-word; /* Internet Explorer 5.5+ */
  13. }
  14. td.paramname {
  15. vertical-align: top;
  16. }
  17. .ok_green {
  18. background-color: #89C35C;
  19. }
  20. .nok_throws {
  21. background-color: #ffa500;
  22. }