style.css 5.0 KB

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