@performant-software/semantic-components 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (218) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +0 -0
  3. package/build/index.js +2 -0
  4. package/build/index.js.map +1 -0
  5. package/build/main.css +786 -0
  6. package/index.js +1 -0
  7. package/package.json +37 -0
  8. package/src/components/AccordionDataList.css +8 -0
  9. package/src/components/AccordionDataList.js +224 -0
  10. package/src/components/AccordionList.css +27 -0
  11. package/src/components/AccordionList.js +596 -0
  12. package/src/components/AccordionSelector.css +3 -0
  13. package/src/components/AccordionSelector.js +359 -0
  14. package/src/components/ArrowButtons.css +4 -0
  15. package/src/components/ArrowButtons.js +38 -0
  16. package/src/components/AssociatedDropdown.css +44 -0
  17. package/src/components/AssociatedDropdown.js +338 -0
  18. package/src/components/BooleanIcon.css +0 -0
  19. package/src/components/BooleanIcon.js +33 -0
  20. package/src/components/CancelButton.css +0 -0
  21. package/src/components/CancelButton.js +25 -0
  22. package/src/components/ColorButton.css +4 -0
  23. package/src/components/ColorButton.js +34 -0
  24. package/src/components/ColorPickerModal.css +3 -0
  25. package/src/components/ColorPickerModal.js +77 -0
  26. package/src/components/ColumnResize.css +9 -0
  27. package/src/components/ColumnResize.js +20 -0
  28. package/src/components/DataList.css +0 -0
  29. package/src/components/DataList.js +531 -0
  30. package/src/components/DataTable.css +43 -0
  31. package/src/components/DataTable.js +596 -0
  32. package/src/components/DataTableColumnSelector.css +10 -0
  33. package/src/components/DataTableColumnSelector.js +146 -0
  34. package/src/components/DateInput.css +6 -0
  35. package/src/components/DateInput.js +58 -0
  36. package/src/components/DatePicker.css +72 -0
  37. package/src/components/DatePicker.js +81 -0
  38. package/src/components/DescriptorField.css +0 -0
  39. package/src/components/DescriptorField.js +42 -0
  40. package/src/components/DownloadButton.css +0 -0
  41. package/src/components/DownloadButton.js +23 -0
  42. package/src/components/Draggable.css +0 -0
  43. package/src/components/Draggable.js +94 -0
  44. package/src/components/DropdownButton.css +3 -0
  45. package/src/components/DropdownButton.js +65 -0
  46. package/src/components/DropdownMenu.css +0 -0
  47. package/src/components/DropdownMenu.js +68 -0
  48. package/src/components/EditModal.css +8 -0
  49. package/src/components/EditModal.js +99 -0
  50. package/src/components/EditPage.css +7 -0
  51. package/src/components/EditPage.js +249 -0
  52. package/src/components/EmbeddedList.css +7 -0
  53. package/src/components/EmbeddedList.js +278 -0
  54. package/src/components/FileInputButton.css +0 -0
  55. package/src/components/FileInputButton.js +54 -0
  56. package/src/components/FileUpload.css +31 -0
  57. package/src/components/FileUpload.js +188 -0
  58. package/src/components/FileUploadModal.css +0 -0
  59. package/src/components/FileUploadModal.js +408 -0
  60. package/src/components/FuzzyDate.css +8 -0
  61. package/src/components/FuzzyDate.js +575 -0
  62. package/src/components/GoogleMap.css +0 -0
  63. package/src/components/GoogleMap.js +105 -0
  64. package/src/components/GooglePlacesSearch.css +0 -0
  65. package/src/components/GooglePlacesSearch.js +43 -0
  66. package/src/components/HorizontalCards.css +50 -0
  67. package/src/components/HorizontalCards.js +226 -0
  68. package/src/components/ItemCollection.css +3 -0
  69. package/src/components/ItemCollection.js +159 -0
  70. package/src/components/ItemList.css +0 -0
  71. package/src/components/ItemList.js +126 -0
  72. package/src/components/Items.css +19 -0
  73. package/src/components/Items.js +365 -0
  74. package/src/components/ItemsToggle.css +0 -0
  75. package/src/components/ItemsToggle.js +168 -0
  76. package/src/components/KeyboardField.css +4 -0
  77. package/src/components/KeyboardField.js +147 -0
  78. package/src/components/LazyDocument.css +21 -0
  79. package/src/components/LazyDocument.js +113 -0
  80. package/src/components/LazyImage.css +21 -0
  81. package/src/components/LazyImage.js +119 -0
  82. package/src/components/LazyVideo.css +21 -0
  83. package/src/components/LazyVideo.js +131 -0
  84. package/src/components/LinkButton.css +8 -0
  85. package/src/components/LinkButton.js +23 -0
  86. package/src/components/LinkLabel.css +8 -0
  87. package/src/components/LinkLabel.js +29 -0
  88. package/src/components/List.css +8 -0
  89. package/src/components/List.js +761 -0
  90. package/src/components/ListFilters.css +0 -0
  91. package/src/components/ListFilters.js +408 -0
  92. package/src/components/ListLoader.css +8 -0
  93. package/src/components/ListLoader.js +32 -0
  94. package/src/components/ListTable.css +3 -0
  95. package/src/components/ListTable.js +86 -0
  96. package/src/components/LoginModal.css +7 -0
  97. package/src/components/LoginModal.js +102 -0
  98. package/src/components/MasonryGrid.css +48 -0
  99. package/src/components/MasonryGrid.js +202 -0
  100. package/src/components/MediaGallery.css +37 -0
  101. package/src/components/MediaGallery.js +148 -0
  102. package/src/components/MediaGrid.css +72 -0
  103. package/src/components/MediaGrid.js +74 -0
  104. package/src/components/MediaList.css +3 -0
  105. package/src/components/MediaList.js +98 -0
  106. package/src/components/ModalDropdown.css +11 -0
  107. package/src/components/ModalDropdown.js +84 -0
  108. package/src/components/NestedAccordion.css +41 -0
  109. package/src/components/NestedAccordion.js +276 -0
  110. package/src/components/PhotoViewer.css +3 -0
  111. package/src/components/PhotoViewer.js +36 -0
  112. package/src/components/PlayButton.css +3 -0
  113. package/src/components/PlayButton.js +37 -0
  114. package/src/components/RemoteDropdown.css +13 -0
  115. package/src/components/RemoteDropdown.js +368 -0
  116. package/src/components/SaveButton.css +0 -0
  117. package/src/components/SaveButton.js +31 -0
  118. package/src/components/Section.css +0 -0
  119. package/src/components/Section.js +41 -0
  120. package/src/components/Selectize.css +11 -0
  121. package/src/components/Selectize.js +297 -0
  122. package/src/components/SelectizeHeader.css +3 -0
  123. package/src/components/SelectizeHeader.js +40 -0
  124. package/src/components/TabbedModal.css +14 -0
  125. package/src/components/TabbedModal.js +165 -0
  126. package/src/components/TabsMenu.css +0 -0
  127. package/src/components/TabsMenu.js +35 -0
  128. package/src/components/TagsList.css +0 -0
  129. package/src/components/TagsList.js +43 -0
  130. package/src/components/Thumbnail.css +0 -0
  131. package/src/components/Thumbnail.js +47 -0
  132. package/src/components/Toaster.css +9 -0
  133. package/src/components/Toaster.js +73 -0
  134. package/src/components/VideoFrameSelector.css +3 -0
  135. package/src/components/VideoFrameSelector.js +148 -0
  136. package/src/components/VideoPlayer.css +3 -0
  137. package/src/components/VideoPlayer.js +55 -0
  138. package/src/components/VideoPlayerButton.css +17 -0
  139. package/src/components/VideoPlayerButton.js +17 -0
  140. package/src/components/ViewXML.css +0 -0
  141. package/src/components/ViewXML.js +72 -0
  142. package/src/i18n/en.json +204 -0
  143. package/src/i18n/i18n.js +24 -0
  144. package/src/index.js +76 -0
  145. package/types/components/AccordionDataList.js.flow +224 -0
  146. package/types/components/AccordionList.js.flow +596 -0
  147. package/types/components/AccordionSelector.js.flow +359 -0
  148. package/types/components/ArrowButtons.js.flow +38 -0
  149. package/types/components/AssociatedDropdown.js.flow +338 -0
  150. package/types/components/BooleanIcon.js.flow +33 -0
  151. package/types/components/CancelButton.js.flow +25 -0
  152. package/types/components/ColorButton.js.flow +34 -0
  153. package/types/components/ColorPickerModal.js.flow +77 -0
  154. package/types/components/ColumnResize.js.flow +20 -0
  155. package/types/components/DataList.js.flow +531 -0
  156. package/types/components/DataTable.js.flow +596 -0
  157. package/types/components/DataTableColumnSelector.js.flow +146 -0
  158. package/types/components/DataView.js.flow +125 -0
  159. package/types/components/DateInput.js.flow +58 -0
  160. package/types/components/DatePicker.js.flow +81 -0
  161. package/types/components/DescriptorField.js.flow +42 -0
  162. package/types/components/DownloadButton.js.flow +23 -0
  163. package/types/components/Draggable.js.flow +94 -0
  164. package/types/components/DropdownButton.js.flow +65 -0
  165. package/types/components/DropdownMenu.js.flow +68 -0
  166. package/types/components/EditModal.js.flow +99 -0
  167. package/types/components/EditPage.js.flow +249 -0
  168. package/types/components/EmbeddedList.js.flow +278 -0
  169. package/types/components/FileInputButton.js.flow +54 -0
  170. package/types/components/FileUpload.js.flow +188 -0
  171. package/types/components/FileUploadModal.js.flow +408 -0
  172. package/types/components/FuzzyDate.js.flow +575 -0
  173. package/types/components/GoogleMap.js.flow +105 -0
  174. package/types/components/GooglePlacesSearch.js.flow +43 -0
  175. package/types/components/HorizontalCards.js.flow +226 -0
  176. package/types/components/ItemCollection.js.flow +159 -0
  177. package/types/components/ItemList.js.flow +126 -0
  178. package/types/components/Items.js.flow +365 -0
  179. package/types/components/ItemsToggle.js.flow +168 -0
  180. package/types/components/KeyboardField.js.flow +147 -0
  181. package/types/components/LazyDocument.js.flow +113 -0
  182. package/types/components/LazyImage.js.flow +119 -0
  183. package/types/components/LazyVideo.js.flow +131 -0
  184. package/types/components/LinkButton.js.flow +23 -0
  185. package/types/components/LinkLabel.js.flow +29 -0
  186. package/types/components/List.js.flow +761 -0
  187. package/types/components/ListFilters.js.flow +408 -0
  188. package/types/components/ListLoader.js.flow +32 -0
  189. package/types/components/ListTable.js.flow +86 -0
  190. package/types/components/LoginModal.js.flow +102 -0
  191. package/types/components/MasonryGrid.js.flow +202 -0
  192. package/types/components/MediaGallery.js.flow +148 -0
  193. package/types/components/MediaGrid.js.flow +74 -0
  194. package/types/components/MediaList.js.flow +98 -0
  195. package/types/components/MenuBar.js.flow +77 -0
  196. package/types/components/MenuSidebar.js.flow +72 -0
  197. package/types/components/ModalDropdown.js.flow +84 -0
  198. package/types/components/NestedAccordion.js.flow +276 -0
  199. package/types/components/PhotoViewer.js.flow +36 -0
  200. package/types/components/PlayButton.js.flow +37 -0
  201. package/types/components/RemoteDropdown.js.flow +368 -0
  202. package/types/components/SaveButton.js.flow +31 -0
  203. package/types/components/Section.js.flow +41 -0
  204. package/types/components/Selectize.js.flow +297 -0
  205. package/types/components/SelectizeHeader.js.flow +40 -0
  206. package/types/components/TabbedModal.js.flow +165 -0
  207. package/types/components/TabsMenu.js.flow +35 -0
  208. package/types/components/TagsList.js.flow +43 -0
  209. package/types/components/Thumbnail.js.flow +47 -0
  210. package/types/components/Toaster.js.flow +73 -0
  211. package/types/components/VideoFrameSelector.js.flow +148 -0
  212. package/types/components/VideoPlayer.js.flow +55 -0
  213. package/types/components/VideoPlayerButton.js.flow +17 -0
  214. package/types/components/ViewXML.js.flow +72 -0
  215. package/types/hooks/Imageable.js.flow +54 -0
  216. package/types/i18n/i18n.js.flow +24 -0
  217. package/types/index.js.flow +78 -0
  218. package/webpack.config.js +3 -0
package/build/main.css ADDED
@@ -0,0 +1,786 @@
1
+ .nested-accordion .ui.icon.button.accordion-button {
2
+ background-color: transparent;
3
+ display: inline-block;
4
+ }
5
+
6
+ .nested-accordion .ui.icon.button.accordion-button.hidden i {
7
+ visibility: hidden;
8
+ }
9
+
10
+ .nested-accordion .ui.icon.button.inverted.accordion-button {
11
+ box-shadow: none !important;
12
+ color: #fff;
13
+ }
14
+
15
+ .nested-accordion .title > .container {
16
+ display: flex;
17
+ flex-direction: row;
18
+ justify-content: space-between;
19
+ align-items: center;
20
+ }
21
+
22
+ .nested-accordion .title > .container > div:first-child {
23
+ flex-grow: 1;
24
+ white-space: nowrap;
25
+ }
26
+
27
+ .nested-accordion .title > .container > div:first-child > .item-container {
28
+ display: inline-block;
29
+ width: 100%;
30
+ }
31
+
32
+ .nested-accordion .title > .container > .right-container {
33
+ margin-left: 1em;
34
+ text-align: right;
35
+ display: flex;
36
+ align-items: center;
37
+ }
38
+
39
+ .nested-accordion .title > .container > .right-container > .row-select-checkbox {
40
+ margin-left: 1.5em;
41
+ }
42
+
43
+ .toaster.ui.message {
44
+ position: fixed;
45
+ top: 0;
46
+ right: 0;
47
+ left: 0;
48
+ margin: auto;
49
+ width: 30%;
50
+ z-index: 999;
51
+ }
52
+ .dropdown-button.ui.buttons {
53
+ font-size: unset;
54
+ }
55
+
56
+ .edit-modal-actions .saving.ui.inline.loader.active {
57
+ margin-left: 4px;
58
+ margin-top: -2px;
59
+ }
60
+
61
+ .ui.form .fields .wide.field.inline-dropdown {
62
+ margin-right: 25px;
63
+ }
64
+ .header .flex-end-menu {
65
+ justify-content: flex-end;
66
+ }
67
+
68
+ .header .list-header-menu,
69
+ .header .per-page-menu {
70
+ flex-shrink: 0;
71
+ }
72
+
73
+ .accordion-data-list {
74
+ margin-bottom: 1em;
75
+ margin-top: 1em;
76
+ }
77
+
78
+ .accordion-data-list .ui.styled.accordion div[index="0"] .title {
79
+ border-top: none;
80
+ }
81
+
82
+ .accordion-list .accordion-header {
83
+ text-align: right;
84
+ }
85
+
86
+ .accordion-list .accordion-header .add-button {
87
+ margin-left: 5px;
88
+ }
89
+
90
+ .accordion-list .accordion-header .input.search {
91
+ display: inline-block;
92
+ }
93
+
94
+ .accordion-list p.record-count {
95
+ text-align: right;
96
+ margin-top: 10px;
97
+ }
98
+
99
+ .accordion-list .footer {
100
+ margin-top: 15px;
101
+ }
102
+
103
+ .accordion-list .sub-header {
104
+ display: flex;
105
+ align-items: center;
106
+ justify-content: flex-end;
107
+ padding: .75em 1em;
108
+ }
109
+
110
+ .selectize-header .ui.button.selected {
111
+ margin: 3px;
112
+ }
113
+ .accordion-selector .ui.button.add-button {
114
+ margin-left: 10px;
115
+ }
116
+ .arrow-buttons {
117
+ padding-left: 5px;
118
+ padding-right: 15px;
119
+ }
120
+ .association-dropdown {
121
+ display: flex;
122
+ align-items: center;
123
+ flex-wrap: wrap;
124
+ width: 100%;
125
+ }
126
+
127
+ .association-dropdown .buttons {
128
+ width: 40%;
129
+ display: flex;
130
+ flex-wrap: wrap;
131
+ }
132
+
133
+ .association-dropdown .dropdown-container {
134
+ width: 60%;
135
+ }
136
+
137
+ .association-dropdown .inline-dropdown {
138
+ width: 100%;
139
+ }
140
+
141
+ .association-dropdown .ui.search.selection.dropdown > input.search {
142
+ width: 100%;
143
+ }
144
+
145
+ .association-dropdown div[role="listbox"] div[role="option"] span.text {
146
+ display: block;
147
+ }
148
+
149
+ .association-dropdown div[role="alert"] {
150
+ max-width: 100%;
151
+ }
152
+
153
+ .ui.form.field .ui.input .association-dropdown input.dropdown-search-input {
154
+ width: 100%;
155
+ }
156
+
157
+ .ui.form .wide.field .ui.input .association-dropdown input.dropdown-search-input {
158
+ width: 100%;
159
+ }
160
+
161
+ .ui.dropdown:not(.button) > .default.text {
162
+ color: rgba(95, 95, 95, 0.86);
163
+ }
164
+ .color-button.ui.button {
165
+ border: 1px solid rgba(34, 36, 38, 0.15);
166
+ vertical-align: middle;
167
+ }
168
+ .color-picker-modal.ui.modal {
169
+ width: auto;
170
+ }
171
+ .column-resize {
172
+ position: absolute;
173
+ top: 0;
174
+ bottom: 0;
175
+ right: 0;
176
+ cursor: col-resize;
177
+ width: 5px;
178
+ padding: 5px;
179
+ }
180
+ .data-table-column-selector .configure-button.ui.icon.button > .icon {
181
+ vertical-align: middle;
182
+ }
183
+
184
+ .data-table-column-selector .ui.dropdown.open-right > .menu {
185
+ top: 100%;
186
+ bottom: auto;
187
+ right: 0;
188
+ left: auto;
189
+ }
190
+
191
+ .data-table .ui.table .actions-cell {
192
+ white-space: nowrap;
193
+ width: 1px;
194
+ }
195
+
196
+ .data-table .empty-button {
197
+ display: inline;
198
+ margin-left: 5px;
199
+ margin-right: 4px;
200
+ }
201
+
202
+ .data-table .empty-container {
203
+ font-size: 1.1em;
204
+ padding: 15px;
205
+ }
206
+
207
+ .data-table .expandable {
208
+ cursor: pointer;
209
+ }
210
+
211
+ .data-table .expanded-panel {
212
+ display: table-row;
213
+ }
214
+
215
+ .data-table .footer {
216
+ margin-top: 10px;
217
+ }
218
+
219
+ .data-table .header {
220
+ margin-bottom: 10px;
221
+ }
222
+
223
+ .data-table .hidden {
224
+ display: none;
225
+ }
226
+
227
+ .data-table.ui.celled.table tr th {
228
+ position: relative;
229
+ }
230
+
231
+ .data-table.ui.celled.table tr td.actions-cell {
232
+ white-space: nowrap;
233
+ }
234
+ .date-input.ui.icon.input > i.icon.right {
235
+ cursor: pointer;
236
+ pointer-events: inherit;
237
+ left: auto;
238
+ right: 1px;
239
+ }
240
+ div.react-calendar {
241
+ margin-top: 3em;
242
+ background: #fff;
243
+ color: rgba(0,0,0,.6)!important;
244
+ border: none;
245
+ border-radius: .28571429rem;
246
+ text-transform: none;
247
+ text-shadow: none;
248
+ box-shadow: 0 0 0 1px rgba(34,36,38,.15) inset;
249
+ padding: .58928571em .58928571em .58928571em;
250
+ }
251
+
252
+ .react-calendar,
253
+ .react-calendar button {
254
+ font-family: Lato, 'Helvetica Neue', Arial, Helvetica, sans-serif;
255
+ }
256
+
257
+ .react-calendar button {
258
+ background: transparent none;
259
+ color: rgba(0,0,0,.87);
260
+ font-weight: 400;
261
+ border-radius: .28571429rem;
262
+ text-transform: none;
263
+ text-shadow: none;
264
+ }
265
+
266
+ .react-calendar button:focus,
267
+ .react-calendar .react-calendar__navigation button:enabled:focus {
268
+ background: transparent none;
269
+ }
270
+
271
+ .react-calendar button:enabled:hover,
272
+ .react-calendar .react-calendar__navigation button:enabled:hover {
273
+ background: #fff;
274
+ color: rgba(0,0,0,.6);
275
+ }
276
+
277
+ .react-calendar .react-calendar__month-view__days__day--neighboringMonth {
278
+ color: rgba(0,0,0,.4);
279
+ }
280
+
281
+ .react-calendar abbr[title] {
282
+ text-decoration: none;
283
+ }
284
+
285
+ .react-calendar .react-calendar__tile--now {
286
+ background-color: #fbbd08;
287
+ color: #fff;
288
+ }
289
+
290
+ .react-calendar .react-calendar__tile--now:enabled:hover {
291
+ background-color: #eaae00;
292
+ color: #fff;
293
+ }
294
+
295
+ .react-calendar .react-calendar__month-view__days__day--weekend {
296
+ color: #db2828;
297
+ }
298
+
299
+ .react-calendar .react-calendar__month-view__days__day--weekend:enabled:hover {
300
+ color: #d01919;
301
+ }
302
+
303
+ .react-calendar .react-calendar__tile--active {
304
+ background-color: #2185d0;
305
+ color: #fff;
306
+ }
307
+
308
+ .react-calendar .react-calendar__tile--active:enabled:hover {
309
+ background-color: #1678c2;
310
+ color: #fff;
311
+ }
312
+ .edit-page .button-container {
313
+ text-align: right;
314
+ }
315
+
316
+ .edit-page .ui.menu:not(.vertical) .item>.button {
317
+ margin-right: 0.25em;
318
+ }
319
+ .embedded-list {
320
+ width: 100%;
321
+ }
322
+
323
+ .embedded-list .list-buttons {
324
+ margin-top: 10px;
325
+ }
326
+ .file-upload {
327
+ margin-top: 10px;
328
+ }
329
+
330
+ .file-upload .file-dropzone {
331
+ align-items: center;
332
+ border: 2px dashed rgb(187, 186, 186);
333
+ cursor: pointer;
334
+ display: flex;
335
+ font-size: 16px;
336
+ justify-content: center;
337
+ outline: none;
338
+ padding: 15px;
339
+ text-align: center;
340
+ }
341
+
342
+ .file-upload .file-dropzone .icon {
343
+ color: #2185D0;
344
+ }
345
+
346
+ .file-upload .file-dropzone-text {
347
+ padding: 10px;
348
+ }
349
+
350
+ .file-upload .file-dropzone-text .link-text {
351
+ color: #2185D0;
352
+ }
353
+
354
+ .file-upload .file-input {
355
+ display: none;
356
+ }
357
+ .fuzzy-date-modal .accuracy-container .ui.radio.checkbox {
358
+ padding-right: 10px;
359
+ }
360
+
361
+ .fuzzy-date-modal .button-container {
362
+ margin-left: 8px;
363
+ margin-top: 23px;
364
+ }
365
+ .horizontal-cards .ui.cards {
366
+ display: flex;
367
+ flex-direction: row;
368
+ flex-wrap: nowrap;
369
+ overflow: hidden;
370
+ padding-top: 0.5em;
371
+ padding-bottom: 0.5em;
372
+ }
373
+
374
+ .horizontal-cards .ui.cards::-webkit-scrollbar {
375
+ width: 0 !important;
376
+ display: none;
377
+ }
378
+
379
+ .horizontal-cards .ui.cards > .card > .content {
380
+ flex-grow: 0;
381
+ }
382
+
383
+ .horizontal-cards .ui.cards > .card > .content > .header {
384
+ margin-bottom: 0;
385
+ margin-top: 0;
386
+ }
387
+
388
+ .horizontal-cards .ui.cards > .card > .content.more {
389
+ display: flex;
390
+ flex-direction: column;
391
+ flex-grow: 1;
392
+ justify-content: center;
393
+ align-items: center;
394
+ }
395
+
396
+ .horizontal-cards .ui.cards > .card > .content.more > .header {
397
+ margin-top: 0.5em;
398
+ }
399
+
400
+ .horizontal-cards .button-container {
401
+ margin-top: 0.5em;
402
+ }
403
+
404
+ .horizontal-cards .button-container .pagination {
405
+ float: right
406
+ }
407
+
408
+ .horizontal-cards .clearFloat {
409
+ clear: both;
410
+ }
411
+
412
+ .horizontal-cards .ui.cards > .card > .image-placeholder {
413
+ aspect-ratio: 1 / 1;
414
+ }
415
+
416
+ .item-list {
417
+ margin: 1em 0em 1em 0em;
418
+ }
419
+
420
+ .item-list .ui.icon.header {
421
+ display: block;
422
+ }
423
+
424
+ .item-list .empty-list {
425
+ opacity: 0.8;
426
+ }
427
+
428
+ .item-list .ui.items > .item > .checkbox-container {
429
+ display: flex;
430
+ align-items: center;
431
+ justify-content: flex-end;
432
+ padding-right: 100px;
433
+ width: 20%;
434
+ }
435
+
436
+ .item-collection > .ui.loader.active {
437
+ position: fixed;
438
+ }
439
+
440
+ .ui.button.basic.compact.link-button {
441
+ background: none;
442
+ border: none;
443
+ box-shadow: none;
444
+ font-weight: normal;
445
+ margin: 0em 0em 0.28571429rem 0em;
446
+ padding: 0;
447
+ }
448
+ .link-label + .link-button.ui.button.basic.compact {
449
+ float: right;
450
+ padding-right: 15px;
451
+ }
452
+
453
+ .ui.form .field > label.link-label {
454
+ display: inline-block;
455
+ }
456
+ .field.keyboard-field .hg-candidate-box {
457
+ top: 56px;
458
+ left: 4px;
459
+ }
460
+ .lazy-document.ui.segment {
461
+ padding: 0;
462
+ }
463
+
464
+ .lazy-document.ui.segment .buttons {
465
+ display: flex;
466
+ flex-direction: column;
467
+ }
468
+
469
+ .lazy-document.ui.segment .buttons .ui.button {
470
+ margin-top: 5px;
471
+ margin-bottom: 5px;
472
+ }
473
+
474
+ .lazy-document .placeholder-image.ui.image {
475
+ background-color: #f9fafb;
476
+ box-shadow: 0 1px 3px 0 #d4d4d5, 0 0 0 1px #d4d4d5;
477
+ padding-top: 20%;
478
+ padding-bottom: 20%;
479
+ text-align: center;
480
+ }
481
+ .photo-viewer {
482
+ padding: 30px;
483
+ }
484
+ .lazy-image.ui.segment {
485
+ padding: 0;
486
+ }
487
+
488
+ .lazy-image.ui.segment .buttons {
489
+ display: flex;
490
+ flex-direction: column;
491
+ }
492
+
493
+ .lazy-image.ui.segment .buttons .ui.button {
494
+ margin-top: 5px;
495
+ margin-bottom: 5px;
496
+ }
497
+
498
+ .lazy-image .placeholder-image.ui.image {
499
+ background-color: #f9fafb;
500
+ box-shadow: 0 1px 3px 0 #d4d4d5, 0 0 0 1px #d4d4d5;
501
+ padding-top: 20%;
502
+ padding-bottom: 20%;
503
+ text-align: center;
504
+ }
505
+ .video-player video {
506
+ width: 100%;
507
+ }
508
+ .lazy-video.ui.segment {
509
+ padding: 0;
510
+ }
511
+
512
+ .lazy-video.ui.segment .buttons {
513
+ display: flex;
514
+ flex-direction: column;
515
+ }
516
+
517
+ .lazy-video.ui.segment .buttons .ui.button {
518
+ margin-top: 5px;
519
+ margin-bottom: 5px;
520
+ }
521
+
522
+ .lazy-video .placeholder-image.ui.image {
523
+ background-color: #f9fafb;
524
+ box-shadow: 0 1px 3px 0 #d4d4d5, 0 0 0 1px #d4d4d5;
525
+ padding-top: 20%;
526
+ padding-bottom: 20%;
527
+ text-align: center;
528
+ }
529
+ .listLoader.ui.segment {
530
+ position: absolute;
531
+ top: 50%;
532
+ left: 50%;
533
+ transform: translate(-50%, -50%);
534
+ padding: 50px;
535
+ z-index: 999;
536
+ }
537
+
538
+ .list-table .table-container {
539
+ margin-top: 20px;
540
+ }
541
+ .login-modal .ui.grid > .column > .row {
542
+ margin: 15px 150px 0px 150px;
543
+ }
544
+
545
+ .login-modal .ui.input.form-field {
546
+ display: block;
547
+ }
548
+ .masonryGrid {
549
+ display: flex;
550
+ }
551
+
552
+ .masonryGrid > .column {
553
+ flex: 1
554
+ }
555
+
556
+ .masonryGrid > .column > .itemContainer {
557
+ display: flex;
558
+ justify-content: center;
559
+ align-items: center;
560
+ background: #efefef;
561
+ }
562
+
563
+ .masonryGrid .placeholderWrapper {
564
+ height: 100%;
565
+ }
566
+
567
+ .masonryGrid > .column > .itemContainer > .item {
568
+ position: relative;
569
+ width: 100%;
570
+ z-index: 500;
571
+ }
572
+
573
+ .masonryGrid > .column > .itemContainer > .item .favoriteContainer {
574
+ position: absolute;
575
+ bottom: 1em;
576
+ right: 1em;
577
+ z-index: 600;
578
+ }
579
+
580
+ .masonryGrid > .column > .itemContainer > .item .extraContainer {
581
+ position: absolute;
582
+ bottom: 1em;
583
+ left: 1em;
584
+ }
585
+
586
+ .masonryGrid > .column > .itemContainer > .item .image {
587
+ height: 100%;
588
+ object-fit: cover;
589
+ width: 100%;
590
+ }
591
+
592
+ .masonryGrid > .column > .itemContainer > .item .ui.transition {
593
+ display: flex !important;
594
+ z-index: 500;
595
+ }
596
+
597
+ .play-button.ui.button {
598
+ opacity: 0.7;
599
+ }
600
+
601
+ .video-player-button {
602
+ height: 100%;
603
+ left: 0;
604
+ position: absolute;
605
+ top: 0;
606
+ width: 100%;
607
+ z-index: 2;
608
+ }
609
+
610
+ .video-player-button > div:first-child {
611
+ align-items: center;
612
+ display: flex;
613
+ height: 100%;
614
+ justify-content: center;
615
+ width: 100%;
616
+ }
617
+
618
+
619
+ .mediaGallery.ui.page.dimmer {
620
+ display: flex;
621
+ flex-direction: column;
622
+ justify-content: center;
623
+ }
624
+
625
+ .mediaGallery.ui.page.dimmer .imageContainer {
626
+ position: relative;
627
+ flex-grow: 1;
628
+ }
629
+
630
+ .mediaGallery.ui.page.dimmer .controls {
631
+ position: absolute;
632
+ }
633
+
634
+ .mediaGallery.ui.page.dimmer .left {
635
+ left: 1em;
636
+ }
637
+
638
+ .mediaGallery.ui.page.dimmer .right {
639
+ right: 1em;
640
+ }
641
+
642
+ .mediaGallery.ui.page.dimmer .top {
643
+ top: 1em;
644
+ }
645
+
646
+ .mediaGallery.ui.page.dimmer .middle {
647
+ top: 50%;
648
+ }
649
+
650
+ .mediaGallery.ui.page.transition > .content {
651
+ display: flex;
652
+ flex-direction: column;
653
+ justify-content: center;
654
+ align-items: center;
655
+ }
656
+
657
+ .mediaGrid {
658
+ position: relative;
659
+ }
660
+
661
+ .mediaGrid .grid1 {
662
+ display: grid;
663
+ grid-template-columns: repeat(1, 1fr);
664
+ grid-gap: 10px;
665
+ width: 100%;
666
+ }
667
+
668
+ .mediaGrid .grid2 {
669
+ display: grid;
670
+ grid-template-columns: repeat(2, 1fr);
671
+ grid-gap: 10px;
672
+ width: 100%;
673
+ }
674
+
675
+ .mediaGrid .grid3 {
676
+ display: grid;
677
+ grid-template-columns: repeat(4, 1fr);
678
+ grid-template-rows: repeat(2, 235px);
679
+ grid-gap: 10px;
680
+ width: 100%;
681
+ }
682
+
683
+ .mediaGrid .grid3 .mediaImage:first-child {
684
+ grid-column: span 2;
685
+ grid-row: span 2;
686
+ }
687
+
688
+ .mediaGrid .grid3 .mediaImage {
689
+ grid-column: span 2;
690
+ }
691
+
692
+ .mediaGrid .grid4 {
693
+ display: grid;
694
+ grid-template-columns: repeat(4, 1fr);
695
+ grid-template-rows: repeat(2, 235px);
696
+ grid-gap: 10px;
697
+ width: 100%;
698
+ }
699
+
700
+ .mediaGrid .grid4 .mediaImage:first-child {
701
+ grid-column: span 2;
702
+ grid-row: span 2;
703
+ }
704
+
705
+ .mediaGrid .grid4 .mediaImage:nth-child(4) {
706
+ grid-column: span 2;
707
+ }
708
+
709
+ .mediaGrid .grid5 {
710
+ display: grid;
711
+ grid-template-columns: repeat(4, 1fr);
712
+ grid-gap: 10px;
713
+ width: 100%;
714
+ }
715
+
716
+ .mediaGrid .grid5 .mediaImage:first-child {
717
+ grid-column: span 2;
718
+ grid-row: span 2;
719
+ }
720
+
721
+ .mediaGrid .mediaImage {
722
+ position: relative;
723
+ }
724
+
725
+ .mediaGrid .mediaImage div {
726
+ height: 100%;
727
+ width: 100%;
728
+ }
729
+
730
+ .mediaList .ui.cards > .card > .meta {
731
+ padding: 0.5em;
732
+ }
733
+
734
+ .modal-dropdown {
735
+ width: 90%;
736
+ }
737
+
738
+ .modal-dropdown .buttons {
739
+ width: 10%
740
+ }
741
+
742
+ .modal-dropdown.ui.search.selection.dropdown > input.search {
743
+ width: 100%;
744
+ }
745
+ .remote-dropdown .extra-option {
746
+ opacity: 0.5;
747
+ }
748
+
749
+ .ui.remote-dropdown .menu .item {
750
+ display: flex;
751
+ flex-direction: row-reverse;
752
+ justify-content: flex-end;
753
+ }
754
+
755
+ .ui.remote-dropdown .menu .item .description {
756
+ justify-self: flex-start;
757
+ }
758
+ .selectize .add-button.ui.button {
759
+ margin-left: 10px;
760
+ }
761
+
762
+ .selectize .ui.primary.button.button-selected {
763
+ margin: 5px;
764
+ }
765
+
766
+ .selectize .empty {
767
+ opacity: 0.87;
768
+ }
769
+ .tabbed-modal.ui .modal-header .ui.menu {
770
+ max-width: 100%;
771
+ overflow: auto;
772
+ padding: 5px 0px 5px 0px;
773
+ }
774
+
775
+ .tabbed-modal.ui .modal-header.inline-header .ui.menu {
776
+ display: inline-flex;
777
+ margin-left: 30px;
778
+ }
779
+
780
+ .tabbed-modal.ui .modal-header.inline-header .ui.header {
781
+ display: inline;
782
+ }
783
+
784
+ .video-frame-selector video {
785
+ width: 100%;
786
+ }