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.

186 lines
3.4 KiB

  1. .category {
  2. position: relative;
  3. }
  4. .category > .loadingIndicator {
  5. position: absolute;
  6. right: 0;
  7. top: 0;
  8. font-size: 15px;
  9. display: none;
  10. }
  11. .category.loading > .loadingIndicator {
  12. padding-top: 2px;
  13. display: block;
  14. }
  15. .category > .loadingIndicator2 {
  16. display: none;
  17. }
  18. /* Source: http://tobiasahlin.com/spinkit/ */
  19. .category.open.loading > .loadingIndicator2,
  20. .category.open.loading > .content > .categoryWrapper > .category-list.open > .loadingIndicator2 {
  21. text-align: left;
  22. display: block;
  23. background: #efefef;
  24. padding-left: 40px;
  25. }
  26. .category.loading > .loadingIndicator2 > div,
  27. .category.loading > .content > .categoryWrapper > .category-list.open > .loadingIndicator2 > div {
  28. width: 9px;
  29. height: 9px;
  30. margin-right: 9px;
  31. background-color: #333;
  32. border-radius: 100%;
  33. display: inline-block;
  34. -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  35. animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  36. }
  37. .category.loading > .loadingIndicator2 .bounce1 {
  38. -webkit-animation-delay: -0.32s;
  39. animation-delay: -0.32s;
  40. }
  41. .category.loading > .loadingIndicator2 .bounce2 {
  42. -webkit-animation-delay: -0.16s;
  43. animation-delay: -0.16s;
  44. }
  45. @-webkit-keyframes sk-bouncedelay {
  46. 0%, 80%, 100% { -webkit-transform: scale(0) }
  47. 40% { -webkit-transform: scale(1.0) }
  48. }
  49. @keyframes sk-bouncedelay {
  50. 0%, 80%, 100% {
  51. -webkit-transform: scale(0);
  52. transform: scale(0);
  53. }
  54. 40% {
  55. -webkit-transform: scale(1.0);
  56. transform: scale(1.0);
  57. }
  58. }
  59. .category header {
  60. padding-top: 3px;
  61. border-bottom: 1px dotted #999;
  62. user-select: none;
  63. font-size: 15px;
  64. }
  65. .category header > span.repoId {
  66. margin-left: 0.2em;
  67. font-size: 10px;
  68. line-height: 10px;
  69. color: #7f7f7f;
  70. }
  71. .category header > a.reload {
  72. float: right;
  73. }
  74. .category > .content,
  75. .category > .tools,
  76. .category > .status {
  77. display: none;
  78. }
  79. .category.open > .content,
  80. .category.open > .tools,
  81. .category.open > .status {
  82. display: block;
  83. }
  84. .category .info {
  85. position: relative;
  86. }
  87. .category .info > .closeButton {
  88. position: absolute;
  89. top: 0;
  90. right: 0;
  91. text-decoration: none;
  92. font-size: 12px;
  93. }
  94. .category > .status,
  95. .category > .content > ul.overpass-layer-list {
  96. padding-top: 3px;
  97. background: #efefef;
  98. }
  99. .body h4 {
  100. margin-bottom: 0;
  101. }
  102. .body ul.overpass-layer-list {
  103. padding-left: 40px;
  104. }
  105. .category {
  106. margin-left: 1em;
  107. }
  108. #contentListBaseCategory {
  109. margin-left: -2em;
  110. }
  111. #contentListBaseCategory > .category > header {
  112. display: none;
  113. }
  114. #contentListAddCategories {
  115. margin-left: -1em;
  116. }
  117. .info > table > tr > td:first-of-type,
  118. .info > table > tbody > tr > td:first-of-type {
  119. position: relative;
  120. }
  121. .info .sign {
  122. text-align: center;
  123. position: absolute;
  124. top: 3px;
  125. font-size: 15px;
  126. left: 0;
  127. right: 0;
  128. z-index: 1;
  129. display: inline-block;
  130. }
  131. .leaflet-popup-content {
  132. min-width: 300px;
  133. max-height: 300px;
  134. overflow: auto;
  135. word-wrap: break-word;
  136. }
  137. .leaflet-popup-content:after {
  138. content: ' ';
  139. clear: both;
  140. display: table;
  141. }
  142. .overpass-layer-icon div.sign {
  143. font-size: 15px;
  144. }
  145. .info .details {
  146. display: none;
  147. }
  148. .info .infoShowDetails .details {
  149. display: initial;
  150. }
  151. .info .infoShowDetails .summary {
  152. display: none;
  153. }
  154. dl > dd {
  155. position: relative;
  156. }
  157. .tag2link {
  158. position: absolute;
  159. top: 1em;
  160. left: 0;
  161. border: 1px solid black;
  162. padding: 0.25em;
  163. background: white;
  164. z-index: 1;
  165. }
  166. .tag2link > .closeButton {
  167. float: right;
  168. }
  169. .tag2link > ul {
  170. padding-left: 0;
  171. margin: 0;
  172. }
  173. .tag2link > ul > li {
  174. list-style: none;
  175. }