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.

120 lines
2.3 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. body {
  2. background-color: white;
  3. border: 0;
  4. box-sizing: border-box;
  5. color: black;
  6. -moz-box-sizing: border-box;
  7. margin: 0;
  8. overflow-x: hidden;
  9. padding: 0;
  10. white-space: nowrap;
  11. width: 100%;
  12. }
  13. #toolbar {
  14. background-color: white;
  15. border: 0;
  16. box-sizing: border-box;
  17. height: 40px;
  18. left: 0;
  19. margin: 0;
  20. padding: 0 1em;
  21. position: fixed;
  22. top: 0;
  23. width: 100%;
  24. }
  25. #toolbar .button {
  26. background-color: white;
  27. border: none;
  28. box-sizing: border-box;
  29. cursor: pointer;
  30. display: inline-block;
  31. font-size: 20px;
  32. margin: 0;
  33. padding: 8px;
  34. }
  35. #toolbar .button:hover {
  36. background-color: #eee;
  37. }
  38. body.filterOff #toolbar #filterButton {
  39. opacity: 0.25;
  40. }
  41. #filterExpression.bad {
  42. background-color: #fee;
  43. }
  44. #maxEntries {
  45. margin-left: 3em;
  46. }
  47. input:focus {
  48. background-color: #ffe;
  49. }
  50. #content {
  51. margin-top: 40px;
  52. }
  53. #content table {
  54. border: 0;
  55. border-collapse: collapse;
  56. direction: ltr;
  57. font: 12px monospace;
  58. width: 100%;
  59. }
  60. #content table tr {
  61. background-color: #fafafa;
  62. color: #444;
  63. }
  64. #content table tr.cat_info {
  65. color: #00f;
  66. }
  67. #content table tr.blocked {
  68. color: #f00;
  69. }
  70. #content table tr:nth-of-type(2n+1) {
  71. background-color: #eee;
  72. }
  73. #content table tr.doc {
  74. background-color: #666;
  75. color: white;
  76. text-align: center;
  77. }
  78. body:not(.filterOff) #content table tr.hidden {
  79. display: none;
  80. }
  81. #content table tr td {
  82. border: 1px solid #ccc;
  83. min-width: 0.5em;
  84. padding: 3px;
  85. vertical-align: top;
  86. }
  87. #content table tr.doc > td {
  88. border: 0;
  89. }
  90. #content table tr td:nth-of-type(1) {
  91. text-align: center;
  92. white-space: pre;
  93. width: 8em;
  94. }
  95. #content table tr td:nth-of-type(2) {
  96. width: 1em;
  97. }
  98. #content table tr td:nth-of-type(3) {
  99. white-space: pre;
  100. width: 2em;
  101. }
  102. #content table tr td:nth-of-type(4) {
  103. white-space: pre;
  104. width: 8em;
  105. }
  106. #content table tr td:nth-of-type(5) {
  107. border-right: none;
  108. white-space: normal;
  109. word-break: break-all;
  110. word-wrap: break-word;
  111. }
  112. #content table tr.tab_bts > td:nth-of-type(2):before {
  113. content: '\f070';
  114. font: 1em FontAwesome;
  115. }
  116. #content table tr > td[colspan="3"]:nth-of-type(3) {
  117. white-space: normal;
  118. word-break: break-all;
  119. word-wrap: break-word;
  120. }