1
0

style.css 4.9 KB

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