BioTorrents.de’s version of Gazelle
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.

debug.scss 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /* Debug */
  2. #site_debug td {
  3. border: 1px solid black;
  4. }
  5. /* Dead torrents */
  6. .dead {
  7. opacity: 0.5;
  8. }
  9. /* No DB key warning */
  10. #dbcrypt {
  11. position: fixed;
  12. top: 10px;
  13. right: 10px;
  14. }
  15. #dbcrypt:after {
  16. content: "!";
  17. display: block;
  18. width: 20px;
  19. height: 20px;
  20. text-align: center;
  21. line-height: 20px;
  22. font-size: 20px;
  23. font-weight: 600;
  24. color: black;
  25. background: red;
  26. border-radius: 100px;
  27. }
  28. /**
  29. * Fix long filename tables overflowing (Chrome only).
  30. * Stop various release page containers from overflowing with long input.
  31. * !! Be sure to test all major browsers before changing this section. !!
  32. * Fix report information tables overflowing long reports (all browsers).
  33. * Fix long release descriptions overflowing containers (all browsers).
  34. * Fix flowing issues in the report resolving pages.
  35. */
  36. .wrap_overflow,
  37. .filelist_table td,
  38. .reportinfo_table,
  39. .torrentdetails blockquote,
  40. .body,
  41. .profileinfo {
  42. word-wrap: break-word;
  43. word-break: normal;
  44. word-break: break-word;
  45. hyphens: auto;
  46. }
  47. .filelist_table td:first-child {
  48. word-break: break-all;
  49. }
  50. /* Fix long overflow for Opera (doesn't support word-break). */
  51. .reportinfo_table {
  52. table-layout: fixed;
  53. }
  54. /* Wrap release info for consistent DOM and to limit table expansion. */
  55. .no_overflow {
  56. width: 100%;
  57. overflow: hidden;
  58. }