style.css 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. body.overlay-visible #fullScreenOverlay {
  2. display: block;
  3. }
  4. #fullScreenOverlay {
  5. display: none;
  6. position: fixed;
  7. top: 0;
  8. bottom: 0;
  9. left: 0;
  10. right: 0;
  11. margin: 0;
  12. padding: 0;
  13. background-color: rgba(0, 0, 0, .75);
  14. z-index: 1040;
  15. }
  16. #pch-navbar .dropdown-menu[data-bs-popper] {
  17. left: initial;
  18. right: 0;
  19. }
  20. #pch-navbar #accessListMenu .accessItem .logout {
  21. float: right;
  22. }
  23. #pch-navbar .bt-filter-active {
  24. display: none;
  25. }
  26. body.filter-active #pch-navbar .bt-filter-active {
  27. display: initial;
  28. }
  29. body.filter-active #pch-navbar .bt-filter-inactive {
  30. display: none;
  31. }
  32. #pch-filterbarContainer {
  33. display: none;
  34. }
  35. #pch-page {
  36. margin-top: 6rem;
  37. padding: 1em 3em;
  38. }
  39. #pch-page > .spinner {
  40. text-align: center;
  41. }
  42. #pch-page > .spinner.hidden {
  43. display: none;
  44. }
  45. #pch-mediaList {
  46. list-style: none;
  47. margin: 0 auto 0 auto;
  48. padding: 0;
  49. text-align: center;
  50. justify-content: center;
  51. }
  52. #pch-mediaList > .pch-image.loading {
  53. height: 250px;
  54. }
  55. #pch-mediaList > .pch-image {
  56. display: inline-flex;
  57. max-height: 450px;
  58. min-width: 450px;
  59. justify-content: center;
  60. padding: 1em;
  61. }
  62. #pch-mediaList > .pch-image img {
  63. transition: scale 300ms;
  64. object-fit: contain;
  65. max-height: 100%;
  66. max-width: 100%;
  67. }
  68. #pch-mediaList > .pch-image:hover img {
  69. scale: 98%;
  70. transition: scale 700ms;
  71. }
  72. #pch-mediaList.selection > .pch-image input,
  73. #pch-mediaList.selection > .pch-image button {
  74. visibility: visible;
  75. }
  76. #pch-mediaList > .pch-image:hover input {
  77. visibility: visible;
  78. }
  79. #pch-mediaList > .pch-image input,
  80. #pch-mediaList > .pch-image button {
  81. display: inline-block;
  82. visibility: hidden;
  83. position: absolute;
  84. top: 2rem;
  85. left: 2.5rem;
  86. height: 2rem;
  87. width: 2rem;
  88. border-radius: 1rem;
  89. }
  90. #pch-mediaList > .pch-image button {
  91. left: 5rem;
  92. }
  93. #pch-mediaList > h3, #pch-mediaList > h4 {
  94. text-align: left;
  95. }
  96. .pch-image {
  97. position: relative;
  98. text-align: center;
  99. }
  100. .pch-image .spinner {
  101. display: none;
  102. }
  103. .pch-image.loading .spinner {
  104. position: absolute;
  105. width: 100%;
  106. height: 100%;
  107. display: flex;
  108. justify-content: center;
  109. align-items: center;
  110. }
  111. .pch-image.loading img {
  112. visibility: hidden;
  113. }
  114. .hidden {
  115. display: none !important;
  116. }
  117. #pch-fullPageMedia {
  118. display: flex;
  119. position: fixed;
  120. left: 0;
  121. right: 0;
  122. top: 0;
  123. bottom: 0;
  124. margin: 1.5em;
  125. overflow: hidden;
  126. height: auto;
  127. width: auto;
  128. z-index: 1050;
  129. }
  130. #pch-fullPageMedia > div {
  131. margin: 0;
  132. width: 100%;
  133. max-width: initial;
  134. overflow: hidden;
  135. }
  136. #pch-fullPageMedia .modal-content {
  137. height: 100%;
  138. }
  139. #pch-fullPageMedia .modal-title {
  140. flex: 1;
  141. }
  142. #pch-fullPageMedia .modal-body {
  143. overflow: hidden;
  144. max-width: initial;
  145. }
  146. #pch-fullPageMedia .modal-body > .row {
  147. height: 100%;
  148. width: 100%;
  149. display: inline-flex;
  150. overflow: auto;
  151. }
  152. #pch-fullPageMedia .modal-body > .row > .col:first-child {
  153. display: inline-flex;
  154. justify-content: center;
  155. align-items: center;
  156. }
  157. #pch-fullPageMedia .modal-body > .row > .col {
  158. height: 100%;
  159. overflow-x: hidden;
  160. overflow-y: auto;
  161. }
  162. #pch-fullPageMedia #pch-fullPagePreviewContainer {
  163. max-height: 100%;
  164. display: inline-flex;
  165. flex: 1;
  166. justify-content: center;
  167. }
  168. #pch-fullPageMedia .leaflet-container {
  169. margin-top: 1em;
  170. margin-bottom: 1em;
  171. background: none;
  172. }
  173. #pch-fullPageMedia .leaflet-container > div {
  174. min-height: 300px;
  175. }
  176. #pch-fullPagePreview {
  177. max-height: 100%;
  178. max-width: 100%;
  179. object-fit: contain;
  180. }
  181. #pch-fullPageDetail {
  182. overflow: hidden;
  183. word-break: break-word;
  184. }
  185. #pch-fullPageDetail > ul {
  186. list-style-type: none;
  187. padding: 0;
  188. margin: 0;
  189. }
  190. #pch-fullPageDetail > ul .metaKey {
  191. text-decoration: underline;
  192. }
  193. #pch-fullPageDetail > ul .metaVal {
  194. display: inline-block;
  195. }
  196. #pch-fullPageMedia .taglist {
  197. margin: 0 -3px;
  198. }
  199. #pch-fullPageMedia .taglist li {
  200. margin: 0 3px;
  201. }
  202. #pch-fullPageMedia .taglist .removeBt {
  203. padding-left: calc(var(--bs-badge-padding-x) / 2);
  204. margin-left: calc(var(--bs-badge-padding-x) / 2);
  205. }
  206. .login-wrapper {
  207. position: fixed;
  208. justify-content: center;
  209. align-items: center;
  210. text-align: center;
  211. z-index: 1050;
  212. top: 0;
  213. bottom: 0;
  214. left: 0;
  215. right: 0;
  216. max-height: fit-content;
  217. max-width: fit-content;
  218. margin: auto;
  219. display: none;
  220. }
  221. body.login-visible .login-wrapper {
  222. display: flex;
  223. }
  224. .login-wrapper .modal {
  225. display: inline-flex;
  226. flex-direction: column;
  227. justify-content: center;
  228. align-items: center;
  229. position: static;
  230. display: inline;
  231. margin: 0;
  232. width: auto;
  233. height: auto;
  234. }
  235. .login-wrapper hr {
  236. width: 75%;
  237. margin-left: auto;
  238. margin-right: auto;
  239. }
  240. .slider-value {
  241. display: inline;
  242. width: auto;
  243. }
  244. .slider-col {
  245. display: flex;
  246. }
  247. .slider-col > .slider {
  248. flex: 1;
  249. }