@weavy/uikit-react 14.0.4 → 15.0.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 (360) hide show
  1. package/.vscode/settings.json +2 -0
  2. package/changelog.md +10 -0
  3. package/dist/cjs/client/WeavyClient.d.ts +1 -0
  4. package/dist/cjs/components/Attachment.d.ts +5 -5
  5. package/dist/cjs/components/Blob.d.ts +9 -0
  6. package/dist/cjs/components/Comment.d.ts +18 -0
  7. package/dist/cjs/components/CommentCount.d.ts +7 -0
  8. package/dist/cjs/components/CommentEdit.d.ts +16 -0
  9. package/dist/cjs/components/CommentPlaceholder.d.ts +8 -0
  10. package/dist/cjs/components/CommentTrashed.d.ts +15 -0
  11. package/dist/cjs/components/CommentView.d.ts +18 -0
  12. package/dist/cjs/components/Comments.d.ts +8 -0
  13. package/dist/cjs/components/ConversationListItem.d.ts +1 -1
  14. package/dist/cjs/components/Dropzone.d.ts +10 -0
  15. package/dist/cjs/components/Editor.d.ts +25 -0
  16. package/dist/cjs/components/Embed.d.ts +8 -0
  17. package/dist/cjs/components/FileItem.d.ts +41 -0
  18. package/dist/cjs/components/FileList.d.ts +11 -0
  19. package/dist/cjs/components/FileVersions.d.ts +9 -0
  20. package/dist/cjs/components/Files.d.ts +4 -0
  21. package/dist/cjs/components/Image.d.ts +3 -3
  22. package/dist/cjs/components/MeetingCard.d.ts +1 -1
  23. package/dist/cjs/components/Meetings.d.ts +2 -1
  24. package/dist/cjs/components/Poll.d.ts +8 -0
  25. package/dist/cjs/components/PollOption.d.ts +10 -0
  26. package/dist/cjs/components/Post.d.ts +21 -0
  27. package/dist/cjs/components/PostEdit.d.ts +17 -0
  28. package/dist/cjs/components/PostList.d.ts +6 -0
  29. package/dist/cjs/components/PostPlaceholder.d.ts +8 -0
  30. package/dist/cjs/components/PostTrashed.d.ts +14 -0
  31. package/dist/cjs/components/PostView.d.ts +21 -0
  32. package/dist/cjs/components/Posts.d.ts +4 -0
  33. package/dist/cjs/components/Preview.d.ts +1 -3
  34. package/dist/cjs/components/PreviewFiles.d.ts +10 -0
  35. package/dist/cjs/components/Reactions.d.ts +6 -2
  36. package/dist/cjs/components/SearchUsers.d.ts +2 -1
  37. package/dist/cjs/contexts/CloudFilesContext.d.ts +9 -0
  38. package/dist/cjs/hooks/useApps.d.ts +1 -0
  39. package/dist/cjs/hooks/useCloudFiles.d.ts +3 -0
  40. package/dist/cjs/hooks/useCommentList.d.ts +1 -0
  41. package/dist/cjs/hooks/useEmbeds.d.ts +5 -0
  42. package/dist/cjs/hooks/useFileList.d.ts +1 -0
  43. package/dist/cjs/hooks/useFileUploader.d.ts +8 -0
  44. package/dist/cjs/hooks/useFileVersions.d.ts +2 -0
  45. package/dist/cjs/hooks/useInfiniteScroll.d.ts +4 -0
  46. package/dist/cjs/hooks/useIsFirstRender.d.ts +2 -0
  47. package/dist/cjs/hooks/useMutateApps.d.ts +5 -0
  48. package/dist/cjs/hooks/useMutateComment.d.ts +10 -0
  49. package/dist/cjs/hooks/useMutateConversationName.d.ts +1 -1
  50. package/dist/cjs/hooks/useMutateDeleteReaction.d.ts +3 -1
  51. package/dist/cjs/hooks/useMutateEditComment.d.ts +10 -0
  52. package/dist/cjs/hooks/useMutateEditPost.d.ts +10 -0
  53. package/dist/cjs/hooks/useMutateExternalBlobs.d.ts +2 -2
  54. package/dist/cjs/hooks/useMutateFile.d.ts +26 -0
  55. package/dist/cjs/hooks/useMutateFileRename.d.ts +5 -0
  56. package/dist/cjs/hooks/useMutateFileSubscribe.d.ts +7 -0
  57. package/dist/cjs/hooks/useMutateFileTrash.d.ts +10 -0
  58. package/dist/cjs/hooks/useMutateFileVersion.d.ts +7 -0
  59. package/dist/cjs/hooks/useMutateFiles.d.ts +2 -0
  60. package/dist/cjs/hooks/useMutateLeaveConversation.d.ts +4 -0
  61. package/dist/cjs/hooks/useMutateMessage.d.ts +2 -2
  62. package/dist/cjs/hooks/useMutatePost.d.ts +10 -0
  63. package/dist/cjs/hooks/useMutateReaction.d.ts +3 -1
  64. package/dist/cjs/hooks/useMutateRead.d.ts +1 -1
  65. package/dist/cjs/hooks/useMutateReplaceReaction.d.ts +6 -0
  66. package/dist/cjs/hooks/useMutateRestoreComment.d.ts +5 -0
  67. package/dist/cjs/hooks/useMutateRestorePost.d.ts +4 -0
  68. package/dist/cjs/hooks/useMutateStarred.d.ts +4 -0
  69. package/dist/cjs/hooks/useMutateSubscribe.d.ts +4 -0
  70. package/dist/cjs/hooks/useMutateTrashComment.d.ts +5 -0
  71. package/dist/cjs/hooks/useMutateTrashPost.d.ts +4 -0
  72. package/dist/cjs/hooks/useMutateTyping.d.ts +2 -0
  73. package/dist/cjs/hooks/useMutateUnsubscribe.d.ts +4 -0
  74. package/dist/cjs/hooks/useMutateVote.d.ts +5 -0
  75. package/dist/cjs/hooks/usePost.d.ts +1 -0
  76. package/dist/cjs/hooks/usePosts.d.ts +1 -0
  77. package/dist/cjs/hooks/usePostsList.d.ts +1 -0
  78. package/dist/cjs/hooks/useReactionList.d.ts +1 -0
  79. package/dist/cjs/hooks/useSessionState.d.ts +2 -0
  80. package/dist/cjs/hooks/useUnload.d.ts +2 -0
  81. package/dist/cjs/hooks/useUpdateEffect.d.ts +3 -0
  82. package/dist/cjs/hooks/useVotes.d.ts +1 -0
  83. package/dist/cjs/index.d.ts +3 -1
  84. package/dist/cjs/index.js +28 -6
  85. package/dist/cjs/index.js.map +1 -1
  86. package/dist/cjs/types/ConversationListItem.d.ts +1 -0
  87. package/dist/cjs/types/Files.d.ts +7 -0
  88. package/dist/cjs/types/Message.d.ts +2 -2
  89. package/dist/cjs/types/Posts.d.ts +4 -0
  90. package/dist/cjs/types/interfaces.d.ts +9 -0
  91. package/dist/cjs/types/types.d.ts +138 -22
  92. package/dist/cjs/ui/Dropdown.d.ts +18 -2
  93. package/dist/cjs/ui/Icon.d.ts +10 -2
  94. package/dist/cjs/ui/Overlay.d.ts +3 -1
  95. package/dist/cjs/ui/Sheet.d.ts +14 -0
  96. package/dist/cjs/ui/Spinner.d.ts +2 -1
  97. package/dist/cjs/utils/cacheUtils.d.ts +14 -0
  98. package/dist/cjs/utils/fileUtilities.d.ts +10 -1
  99. package/dist/cjs/utils/mentions.d.ts +6 -0
  100. package/dist/cjs/utils/openUrl.d.ts +1 -0
  101. package/dist/css/weavy-chat.css +637 -218
  102. package/dist/css/weavy-files.css +3046 -0
  103. package/dist/css/weavy-messenger.css +643 -213
  104. package/dist/css/weavy-posts.css +2773 -0
  105. package/dist/css/weavy.css +1749 -308
  106. package/dist/esm/client/WeavyClient.d.ts +1 -0
  107. package/dist/esm/components/Attachment.d.ts +5 -5
  108. package/dist/esm/components/Blob.d.ts +9 -0
  109. package/dist/esm/components/Comment.d.ts +18 -0
  110. package/dist/esm/components/CommentCount.d.ts +7 -0
  111. package/dist/esm/components/CommentEdit.d.ts +16 -0
  112. package/dist/esm/components/CommentPlaceholder.d.ts +8 -0
  113. package/dist/esm/components/CommentTrashed.d.ts +15 -0
  114. package/dist/esm/components/CommentView.d.ts +18 -0
  115. package/dist/esm/components/Comments.d.ts +8 -0
  116. package/dist/esm/components/ConversationListItem.d.ts +1 -1
  117. package/dist/esm/components/Dropzone.d.ts +10 -0
  118. package/dist/esm/components/Editor.d.ts +25 -0
  119. package/dist/esm/components/Embed.d.ts +8 -0
  120. package/dist/esm/components/FileItem.d.ts +41 -0
  121. package/dist/esm/components/FileList.d.ts +11 -0
  122. package/dist/esm/components/FileVersions.d.ts +9 -0
  123. package/dist/esm/components/Files.d.ts +4 -0
  124. package/dist/esm/components/Image.d.ts +3 -3
  125. package/dist/esm/components/MeetingCard.d.ts +1 -1
  126. package/dist/esm/components/Meetings.d.ts +2 -1
  127. package/dist/esm/components/Poll.d.ts +8 -0
  128. package/dist/esm/components/PollOption.d.ts +10 -0
  129. package/dist/esm/components/Post.d.ts +21 -0
  130. package/dist/esm/components/PostEdit.d.ts +17 -0
  131. package/dist/esm/components/PostList.d.ts +6 -0
  132. package/dist/esm/components/PostPlaceholder.d.ts +8 -0
  133. package/dist/esm/components/PostTrashed.d.ts +14 -0
  134. package/dist/esm/components/PostView.d.ts +21 -0
  135. package/dist/esm/components/Posts.d.ts +4 -0
  136. package/dist/esm/components/Preview.d.ts +1 -3
  137. package/dist/esm/components/PreviewFiles.d.ts +10 -0
  138. package/dist/esm/components/Reactions.d.ts +6 -2
  139. package/dist/esm/components/SearchUsers.d.ts +2 -1
  140. package/dist/esm/contexts/CloudFilesContext.d.ts +9 -0
  141. package/dist/esm/hooks/useApps.d.ts +1 -0
  142. package/dist/esm/hooks/useCloudFiles.d.ts +3 -0
  143. package/dist/esm/hooks/useCommentList.d.ts +1 -0
  144. package/dist/esm/hooks/useEmbeds.d.ts +5 -0
  145. package/dist/esm/hooks/useFileList.d.ts +1 -0
  146. package/dist/esm/hooks/useFileUploader.d.ts +8 -0
  147. package/dist/esm/hooks/useFileVersions.d.ts +2 -0
  148. package/dist/esm/hooks/useInfiniteScroll.d.ts +4 -0
  149. package/dist/esm/hooks/useIsFirstRender.d.ts +2 -0
  150. package/dist/esm/hooks/useMutateApps.d.ts +5 -0
  151. package/dist/esm/hooks/useMutateComment.d.ts +10 -0
  152. package/dist/esm/hooks/useMutateConversationName.d.ts +1 -1
  153. package/dist/esm/hooks/useMutateDeleteReaction.d.ts +3 -1
  154. package/dist/esm/hooks/useMutateEditComment.d.ts +10 -0
  155. package/dist/esm/hooks/useMutateEditPost.d.ts +10 -0
  156. package/dist/esm/hooks/useMutateExternalBlobs.d.ts +2 -2
  157. package/dist/esm/hooks/useMutateFile.d.ts +26 -0
  158. package/dist/esm/hooks/useMutateFileRename.d.ts +5 -0
  159. package/dist/esm/hooks/useMutateFileSubscribe.d.ts +7 -0
  160. package/dist/esm/hooks/useMutateFileTrash.d.ts +10 -0
  161. package/dist/esm/hooks/useMutateFileVersion.d.ts +7 -0
  162. package/dist/esm/hooks/useMutateFiles.d.ts +2 -0
  163. package/dist/esm/hooks/useMutateLeaveConversation.d.ts +4 -0
  164. package/dist/esm/hooks/useMutateMessage.d.ts +2 -2
  165. package/dist/esm/hooks/useMutatePost.d.ts +10 -0
  166. package/dist/esm/hooks/useMutateReaction.d.ts +3 -1
  167. package/dist/esm/hooks/useMutateRead.d.ts +1 -1
  168. package/dist/esm/hooks/useMutateReplaceReaction.d.ts +6 -0
  169. package/dist/esm/hooks/useMutateRestoreComment.d.ts +5 -0
  170. package/dist/esm/hooks/useMutateRestorePost.d.ts +4 -0
  171. package/dist/esm/hooks/useMutateStarred.d.ts +4 -0
  172. package/dist/esm/hooks/useMutateSubscribe.d.ts +4 -0
  173. package/dist/esm/hooks/useMutateTrashComment.d.ts +5 -0
  174. package/dist/esm/hooks/useMutateTrashPost.d.ts +4 -0
  175. package/dist/esm/hooks/useMutateTyping.d.ts +2 -0
  176. package/dist/esm/hooks/useMutateUnsubscribe.d.ts +4 -0
  177. package/dist/esm/hooks/useMutateVote.d.ts +5 -0
  178. package/dist/esm/hooks/usePost.d.ts +1 -0
  179. package/dist/esm/hooks/usePosts.d.ts +1 -0
  180. package/dist/esm/hooks/usePostsList.d.ts +1 -0
  181. package/dist/esm/hooks/useReactionList.d.ts +1 -0
  182. package/dist/esm/hooks/useSessionState.d.ts +2 -0
  183. package/dist/esm/hooks/useUnload.d.ts +2 -0
  184. package/dist/esm/hooks/useUpdateEffect.d.ts +3 -0
  185. package/dist/esm/hooks/useVotes.d.ts +1 -0
  186. package/dist/esm/index.d.ts +3 -1
  187. package/dist/esm/index.js +28 -6
  188. package/dist/esm/index.js.map +1 -1
  189. package/dist/esm/types/ConversationListItem.d.ts +1 -0
  190. package/dist/esm/types/Files.d.ts +7 -0
  191. package/dist/esm/types/Message.d.ts +2 -2
  192. package/dist/esm/types/Posts.d.ts +4 -0
  193. package/dist/esm/types/interfaces.d.ts +9 -0
  194. package/dist/esm/types/types.d.ts +138 -22
  195. package/dist/esm/ui/Dropdown.d.ts +18 -2
  196. package/dist/esm/ui/Icon.d.ts +10 -2
  197. package/dist/esm/ui/Overlay.d.ts +3 -1
  198. package/dist/esm/ui/Sheet.d.ts +14 -0
  199. package/dist/esm/ui/Spinner.d.ts +2 -1
  200. package/dist/esm/utils/cacheUtils.d.ts +14 -0
  201. package/dist/esm/utils/fileUtilities.d.ts +10 -1
  202. package/dist/esm/utils/mentions.d.ts +6 -0
  203. package/dist/esm/utils/openUrl.d.ts +1 -0
  204. package/dist/index.d.ts +50 -6
  205. package/package.json +8 -2
  206. package/src/client/WeavyClient.ts +35 -1
  207. package/src/components/Attachment.tsx +20 -13
  208. package/src/components/Blob.tsx +28 -0
  209. package/src/components/Comment.tsx +43 -0
  210. package/src/components/CommentCount.tsx +15 -0
  211. package/src/components/CommentEdit.tsx +48 -0
  212. package/src/components/CommentPlaceholder.tsx +34 -0
  213. package/src/components/CommentTrashed.tsx +45 -0
  214. package/src/components/CommentView.tsx +142 -0
  215. package/src/components/Comments.tsx +78 -0
  216. package/src/components/Conversation.tsx +85 -31
  217. package/src/components/ConversationList.tsx +12 -41
  218. package/src/components/ConversationListItem.tsx +125 -74
  219. package/src/components/Dropzone.tsx +26 -0
  220. package/src/components/Editor.tsx +700 -0
  221. package/src/components/Embed.tsx +80 -0
  222. package/src/components/FileItem.tsx +391 -0
  223. package/src/components/FileList.tsx +166 -0
  224. package/src/components/FileVersions.tsx +100 -0
  225. package/src/components/Files.tsx +294 -0
  226. package/src/components/Image.tsx +11 -10
  227. package/src/components/Meeting.tsx +1 -2
  228. package/src/components/MeetingCard.tsx +1 -1
  229. package/src/components/Meetings.tsx +13 -5
  230. package/src/components/Message.tsx +14 -19
  231. package/src/components/Messages.tsx +38 -64
  232. package/src/components/NewConversation.tsx +8 -6
  233. package/src/components/PdfViewer.tsx +2 -2
  234. package/src/components/Poll.tsx +45 -0
  235. package/src/components/PollOption.tsx +65 -0
  236. package/src/components/Post.tsx +45 -0
  237. package/src/components/PostEdit.tsx +49 -0
  238. package/src/components/PostList.tsx +95 -0
  239. package/src/components/PostPlaceholder.tsx +32 -0
  240. package/src/components/PostTrashed.tsx +35 -0
  241. package/src/components/PostView.tsx +194 -0
  242. package/src/components/Posts.tsx +59 -0
  243. package/src/components/Preview.tsx +16 -23
  244. package/src/components/PreviewFiles.tsx +336 -0
  245. package/src/components/Reactions.tsx +142 -38
  246. package/src/components/SearchUsers.tsx +77 -37
  247. package/src/components/Typing.tsx +1 -1
  248. package/src/{components/FileBrowser.tsx → contexts/CloudFilesContext.tsx} +46 -30
  249. package/src/contexts/PreviewContext.tsx +102 -85
  250. package/src/contexts/WeavyContext.tsx +10 -6
  251. package/src/hooks/useApps.ts +23 -0
  252. package/src/hooks/useCloudFiles.ts +12 -0
  253. package/src/hooks/useCommentList.ts +30 -0
  254. package/src/hooks/useEmbeds.ts +126 -0
  255. package/src/hooks/useEvents.ts +3 -1
  256. package/src/hooks/useFileList.ts +84 -0
  257. package/src/hooks/useFileUploader.ts +38 -1
  258. package/src/hooks/useFileVersions.ts +20 -0
  259. package/src/hooks/useInfiniteScroll.ts +45 -0
  260. package/src/hooks/useIsFirstRender.ts +15 -0
  261. package/src/hooks/useMembers.ts +3 -3
  262. package/src/hooks/useMutateApps.ts +48 -0
  263. package/src/hooks/useMutateComment.ts +60 -0
  264. package/src/hooks/useMutateConversationName.ts +1 -1
  265. package/src/hooks/useMutateDeleteReaction.ts +17 -4
  266. package/src/hooks/useMutateEditComment.ts +63 -0
  267. package/src/hooks/useMutateEditPost.ts +64 -0
  268. package/src/hooks/useMutateExternalBlobs.ts +5 -9
  269. package/src/hooks/useMutateFile.ts +311 -0
  270. package/src/hooks/useMutateFileRename.ts +51 -0
  271. package/src/hooks/useMutateFileSubscribe.ts +80 -0
  272. package/src/hooks/useMutateFileTrash.ts +115 -0
  273. package/src/hooks/useMutateFileVersion.ts +85 -0
  274. package/src/hooks/useMutateFiles.ts +23 -0
  275. package/src/hooks/useMutateLeaveConversation.ts +38 -0
  276. package/src/hooks/useMutateMessage.ts +23 -62
  277. package/src/hooks/useMutatePost.ts +60 -0
  278. package/src/hooks/useMutateReaction.ts +21 -6
  279. package/src/hooks/useMutateRead.ts +8 -2
  280. package/src/hooks/useMutateRemoveMembers.ts +2 -9
  281. package/src/hooks/useMutateReplaceReaction.ts +59 -0
  282. package/src/hooks/useMutateRestoreComment.ts +37 -0
  283. package/src/hooks/useMutateRestorePost.ts +36 -0
  284. package/src/hooks/useMutateStarred.ts +35 -0
  285. package/src/hooks/useMutateSubscribe.ts +36 -0
  286. package/src/hooks/useMutateTrashComment.ts +37 -0
  287. package/src/hooks/useMutateTrashPost.ts +36 -0
  288. package/src/hooks/useMutateTyping.ts +5 -3
  289. package/src/hooks/useMutateUnsubscribe.ts +36 -0
  290. package/src/hooks/useMutateVote.ts +59 -0
  291. package/src/hooks/usePost.ts +20 -0
  292. package/src/hooks/usePosts.ts +21 -0
  293. package/src/hooks/usePostsList.ts +31 -0
  294. package/src/hooks/useReactionList.ts +21 -0
  295. package/src/hooks/useSearchUsers.ts +2 -2
  296. package/src/hooks/useSessionState.ts +23 -0
  297. package/src/hooks/useUnload.ts +19 -0
  298. package/src/hooks/useUpdateEffect.ts +16 -0
  299. package/src/hooks/useVotes.ts +21 -0
  300. package/src/index.ts +5 -1
  301. package/src/scss/theme/_appbar.scss +8 -4
  302. package/src/scss/theme/_card.scss +2 -0
  303. package/src/scss/theme/_comment-editor-cm.scss +5 -1
  304. package/src/scss/theme/_comments.scss +9 -8
  305. package/src/scss/theme/_conversations.scss +4 -0
  306. package/src/scss/theme/_files.scss +2 -81
  307. package/src/scss/theme/_icons.scss +21 -3
  308. package/src/scss/theme/_input.scss +13 -7
  309. package/src/scss/theme/_item.scss +23 -1
  310. package/src/scss/theme/_message-editor-cm.scss +5 -1
  311. package/src/scss/theme/_pager.scss +1 -1
  312. package/src/scss/theme/_post-editor-cm.scss +2 -2
  313. package/src/scss/theme/_post.scss +3 -10
  314. package/src/scss/theme/_preview-pdf-viewer.scss +996 -0
  315. package/src/scss/theme/_preview-pdf.scss +57 -783
  316. package/src/scss/theme/_sheet.scss +4 -1
  317. package/src/scss/theme/_spinner.scss +10 -1
  318. package/src/scss/theme/_tables.scss +2 -0
  319. package/src/scss/theme/base/_scroll.scss +3 -0
  320. package/src/scss/weavy-chat.scss +3 -1
  321. package/src/scss/weavy-files.scss +31 -0
  322. package/src/scss/weavy-messenger.scss +3 -1
  323. package/src/scss/weavy-posts.scss +35 -0
  324. package/src/scss/weavy.scss +2 -0
  325. package/src/types/ConversationListItem.ts +1 -0
  326. package/src/types/Files.ts +7 -0
  327. package/src/types/Message.ts +2 -2
  328. package/src/types/Posts.ts +4 -0
  329. package/src/types/interfaces.ts +13 -0
  330. package/src/types/types.ts +157 -28
  331. package/src/ui/Button.tsx +6 -5
  332. package/src/ui/Dropdown.tsx +67 -16
  333. package/src/ui/Icon.tsx +112 -15
  334. package/src/ui/Overlay.tsx +6 -2
  335. package/src/ui/Sheet.tsx +87 -0
  336. package/src/ui/Spinner.tsx +7 -4
  337. package/src/utils/cacheUtils.ts +246 -0
  338. package/src/utils/fileUtilities.ts +208 -24
  339. package/src/utils/infinite-scroll.js +103 -0
  340. package/src/utils/mentions.ts +50 -0
  341. package/src/utils/openUrl.ts +41 -0
  342. package/src/utils/{scrollToBottom.js → scroll-position.js} +50 -9
  343. package/src/utils/{scrollbarDetection.js → scrollbar-detection.js} +0 -0
  344. package/src/utils/utils.js +15 -1
  345. package/tsconfig.json +1 -1
  346. package/dist/cjs/components/ConversationForm.d.ts +0 -7
  347. package/dist/cjs/components/File.d.ts +0 -9
  348. package/dist/cjs/components/FileBrowser.d.ts +0 -6
  349. package/dist/cjs/hooks/usePreview.d.ts +0 -4
  350. package/dist/cjs/hooks/useReactions.d.ts +0 -3
  351. package/dist/esm/components/ConversationForm.d.ts +0 -7
  352. package/dist/esm/components/File.d.ts +0 -9
  353. package/dist/esm/components/FileBrowser.d.ts +0 -6
  354. package/dist/esm/hooks/usePreview.d.ts +0 -4
  355. package/dist/esm/hooks/useReactions.d.ts +0 -3
  356. package/src/components/ConversationForm.tsx +0 -210
  357. package/src/components/File.tsx +0 -21
  358. package/src/hooks/usePreview.ts +0 -21
  359. package/src/hooks/useReactions.ts +0 -51
  360. package/src/utils/infiniteScroll.js +0 -184
@@ -0,0 +1,3046 @@
1
+ :where(:root, :host > *) {
2
+ --wy-theme: #00658e;
3
+ --wy-black: #000000;
4
+ --wy-white: #ffffff;
5
+ --wy-shadow: #000000;
6
+ --wy-primary-99: #fbfcff;
7
+ --wy-primary-95: #e4f3ff;
8
+ --wy-primary-90: #c7e7ff;
9
+ --wy-primary-80: #84cfff;
10
+ --wy-primary-70: #53b5ec;
11
+ --wy-primary-60: #2f9ad0;
12
+ --wy-primary-50: #007fb2;
13
+ --wy-primary-40: #00658e;
14
+ --wy-primary-30: #004c6c;
15
+ --wy-primary-20: #00344c;
16
+ --wy-primary-10: #001e2e;
17
+ --wy-secondary-99: #fffbff;
18
+ --wy-secondary-95: #fff2a4;
19
+ --wy-secondary-90: #f6e468;
20
+ --wy-secondary-80: #d9c84f;
21
+ --wy-secondary-70: #bcad36;
22
+ --wy-secondary-60: #a0921a;
23
+ --wy-secondary-50: #857800;
24
+ --wy-secondary-40: #6a5f00;
25
+ --wy-secondary-30: #504700;
26
+ --wy-secondary-20: #373100;
27
+ --wy-secondary-10: #201c00;
28
+ --wy-tertiary-99: #fffbff;
29
+ --wy-tertiary-95: #fff2a4;
30
+ --wy-tertiary-90: #f6e468;
31
+ --wy-tertiary-80: #d9c84f;
32
+ --wy-tertiary-70: #bcad36;
33
+ --wy-tertiary-60: #a0921a;
34
+ --wy-tertiary-50: #857800;
35
+ --wy-tertiary-40: #6a5f00;
36
+ --wy-tertiary-30: #504700;
37
+ --wy-tertiary-20: #373100;
38
+ --wy-tertiary-10: #201c00;
39
+ --wy-error-99: #fffbff;
40
+ --wy-error-95: #ffedea;
41
+ --wy-error-90: #ffdad6;
42
+ --wy-error-80: #ffb4ab;
43
+ --wy-error-70: #ff897d;
44
+ --wy-error-60: #ff5449;
45
+ --wy-error-50: #de3730;
46
+ --wy-error-40: #ba1a1a;
47
+ --wy-error-30: #93000a;
48
+ --wy-error-20: #690005;
49
+ --wy-error-10: #410002;
50
+ --wy-neutral-99: #fcfcff;
51
+ --wy-neutral-95: #f0f1f3;
52
+ --wy-neutral-90: #e2e2e5;
53
+ --wy-neutral-80: #c5c6c9;
54
+ --wy-neutral-70: #aaabae;
55
+ --wy-neutral-60: #8f9193;
56
+ --wy-neutral-50: #75777a;
57
+ --wy-neutral-40: #5c5e61;
58
+ --wy-neutral-30: #454749;
59
+ --wy-neutral-20: #2e3133;
60
+ --wy-neutral-10: #191c1e;
61
+ --wy-neutral-variant-99: #fbfcff;
62
+ --wy-neutral-variant-95: #ebf1f8;
63
+ --wy-neutral-variant-90: #dde3ea;
64
+ --wy-neutral-variant-80: #c1c7ce;
65
+ --wy-neutral-variant-70: #a5acb2;
66
+ --wy-neutral-variant-60: #8b9198;
67
+ --wy-neutral-variant-50: #71787e;
68
+ --wy-neutral-variant-40: #595f65;
69
+ --wy-neutral-variant-30: #41484d;
70
+ --wy-neutral-variant-20: #2b3136;
71
+ --wy-neutral-variant-10: #161c21;
72
+ --wy-surface-1-light: #f0f4f9;
73
+ --wy-surface-2-light: #e8f0f6;
74
+ --wy-surface-3-light: #e0ebf2;
75
+ --wy-surface-4-light: #deeaf1;
76
+ --wy-surface-5-light: #d9e7ef;
77
+ --wy-surface-1-dark: #1e2428;
78
+ --wy-surface-2-dark: #212a2f;
79
+ --wy-surface-3-dark: #242f36;
80
+ --wy-surface-4-dark: #253138;
81
+ --wy-surface-5-dark: #27343c;
82
+ --wy-blue-light: #7aadfa;
83
+ --wy-indigo-light: #8489e0;
84
+ --wy-purple-light: #bd78c2;
85
+ --wy-pink-light: #d072a2;
86
+ --wy-red-light: #da717c;
87
+ --wy-orange-light: #ef9646;
88
+ --wy-yellow-light: #d9c84f;
89
+ --wy-green-light: #56a15c;
90
+ --wy-teal-light: #00a29d;
91
+ --wy-cyan-light: #008398;
92
+ --wy-gray-light: #75777a;
93
+ --wy-blue-dark: #a7c8ff;
94
+ --wy-indigo-dark: #8489e0;
95
+ --wy-purple-dark: #da92de;
96
+ --wy-pink-dark: #ee8cbe;
97
+ --wy-red-dark: #da717c;
98
+ --wy-orange-dark: #ef9646;
99
+ --wy-yellow-dark: #d9c84f;
100
+ --wy-green-dark: #56a15c;
101
+ --wy-teal-dark: #00a29d;
102
+ --wy-cyan-dark: #009fb8;
103
+ --wy-gray-dark: #8f9193;
104
+ }
105
+
106
+ :where(:root, :host > *, .wy-light) {
107
+ color-scheme: light;
108
+ --wy-primary: var(--wy-primary-40);
109
+ --wy-on-primary: var(--wy-white);
110
+ --wy-primary-container: var(--wy-primary-90);
111
+ --wy-on-primary-container: var(--wy-primary-10);
112
+ --wy-secondary: var(--wy-secondary-40);
113
+ --wy-on-secondary: var(--wy-white);
114
+ --wy-secondary-container: var(--wy-secondary-90);
115
+ --wy-on-secondary-container: var(--wy-secondary-10);
116
+ --wy-tertiary: var(--wy-tertiary-40);
117
+ --wy-on-tertiary: var(--wy-white);
118
+ --wy-tertiary-container: var(--wy-tertiary-90);
119
+ --wy-on-tertiary-container: var(--wy-tertiary-10);
120
+ --wy-error: var(--wy-error-40);
121
+ --wy-on-error: var(--wy-white);
122
+ --wy-error-container: var(--wy-error-90);
123
+ --wy-on-error-container: var(--wy-error-10);
124
+ --wy-background: var(--wy-neutral-99);
125
+ --wy-on-background: var(--wy-neutral-10);
126
+ --wy-surface: var(--wy-neutral-99);
127
+ --wy-on-surface: var(--wy-neutral-10);
128
+ --wy-surface-variant: var(--wy-neutral-variant-90);
129
+ --wy-on-surface-variant: var(--wy-neutral-variant-30);
130
+ --wy-outline: var(--wy-neutral-variant-50);
131
+ --wy-outline-variant: var(--wy-neutral-variant-80);
132
+ --wy-inverse-surface: var(--wy-neutral-20);
133
+ --wy-on-inverse-surface: var(--wy-neutral-95);
134
+ --wy-inverse-primary: var(--wy-primary-80);
135
+ --wy-surface-1: var(--wy-surface-1-light);
136
+ --wy-surface-2: var(--wy-surface-2-light);
137
+ --wy-surface-3: var(--wy-surface-3-light);
138
+ --wy-surface-4: var(--wy-surface-4-light);
139
+ --wy-surface-5: var(--wy-surface-5-light);
140
+ --wy-link: var(--wy-primary-40);
141
+ --wy-blue: var(--wy-blue-light);
142
+ --wy-indigo: var(--wy-indigo-light);
143
+ --wy-purple: var(--wy-purple-light);
144
+ --wy-pink: var(--wy-pink-light);
145
+ --wy-red: var(--wy-red-light);
146
+ --wy-orange: var(--wy-orange-light);
147
+ --wy-yellow: var(--wy-yellow-light);
148
+ --wy-green: var(--wy-green-light);
149
+ --wy-teal: var(--wy-teal-light);
150
+ --wy-cyan: var(--wy-cyan-light);
151
+ --wy-gray: var(--wy-gray-light);
152
+ }
153
+
154
+ :where(.wy-dark) {
155
+ color-scheme: dark;
156
+ --wy-primary: var(--wy-primary-80);
157
+ --wy-on-primary: var(--wy-primary-20);
158
+ --wy-primary-container: var(--wy-primary-30);
159
+ --wy-on-primary-container: var(--wy-primary-90);
160
+ --wy-secondary: var(--wy-secondary-80);
161
+ --wy-on-secondary: var(--wy-secondary-20);
162
+ --wy-secondary-container: var(--wy-secondary-30);
163
+ --wy-on-secondary-container: var(--wy-secondary-90);
164
+ --wy-tertiary: var(--wy-tertiary-80);
165
+ --wy-on-tertiary: var(--wy-tertiary-20);
166
+ --wy-tertiary-container: var(--wy-tertiary-30);
167
+ --wy-on-tertiary-container: var(--wy-tertiary-90);
168
+ --wy-error: var(--wy-error-80);
169
+ --wy-on-error: var(--wy-error-20);
170
+ --wy-error-container: var(--wy-error-30);
171
+ --wy-on-error-container: var(--wy-error-90);
172
+ --wy-background: var(--wy-neutral-10);
173
+ --wy-on-background: var(--wy-neutral-90);
174
+ --wy-surface: var(--wy-neutral-10);
175
+ --wy-on-surface: var(--wy-neutral-90);
176
+ --wy-surface-variant: var(--wy-neutral-variant-30);
177
+ --wy-on-surface-variant: var(--wy-neutral-variant-80);
178
+ --wy-outline: var(--wy-neutral-variant-60);
179
+ --wy-outline-variant: var(--wy-neutral-variant-30);
180
+ --wy-inverse-surface: var(--wy-neutral-90);
181
+ --wy-on-inverse-surface: var(--wy-neutral-20);
182
+ --wy-inverse-primary: var(--wy-primary-40);
183
+ --wy-surface-1: var(--wy-surface-1-dark);
184
+ --wy-surface-2: var(--wy-surface-2-dark);
185
+ --wy-surface-3: var(--wy-surface-3-dark);
186
+ --wy-surface-4: var(--wy-surface-4-dark);
187
+ --wy-surface-5: var(--wy-surface-5-dark);
188
+ --wy-link: var(--wy-primary-80);
189
+ --wy-blue: var(--wy-blue-dark);
190
+ --wy-indigo: var(--wy-indigo-dark);
191
+ --wy-purple: var(--wy-purple-dark);
192
+ --wy-pink: var(--wy-pink-dark);
193
+ --wy-red: var(--wy-red-dark);
194
+ --wy-orange: var(--wy-orange-dark);
195
+ --wy-yellow: var(--wy-yellow-dark);
196
+ --wy-green: var(--wy-green-dark);
197
+ --wy-teal: var(--wy-teal-dark);
198
+ --wy-cyan: var(--wy-cyan-dark);
199
+ --wy-gray: var(--wy-gray-dark);
200
+ }
201
+
202
+ :where(:root, :host > *) {
203
+ /* Typography */
204
+ --wy-font-family: unset;
205
+ --wy-font-weight: unset;
206
+ --wy-line-height: 1.5;
207
+ --wy-font-size-base: 1rem;
208
+ --wy-font-size-xxs: calc(.625 * var(--wy-font-size-base));
209
+ --wy-font-size-xs: calc(.75 * var(--wy-font-size-base));
210
+ --wy-font-size-sm: calc(.875 * var(--wy-font-size-base));
211
+ --wy-font-size-lg: calc(1.25 * var(--wy-font-size-base));
212
+ --wy-headings-font-style: unset;
213
+ --wy-headings-font-family: var(--wy-font-family);
214
+ --wy-headings-font-weight: 500;
215
+ --wy-headings-line-height: var(--wy-line-height);
216
+ /* Border */
217
+ --wy-border-radius: .5rem;
218
+ --wy-border-radius-sm: calc(.75 * var(--wy-border-radius));
219
+ --wy-border-radius-lg: calc(1.5 * var(--wy-border-radius));
220
+ --wy-border-radius-xl: calc(2 * var(--wy-border-radius));
221
+ --wy-border-radius-pill: 50rem;
222
+ /* Links */
223
+ --wy-link-decoration: none;
224
+ --wy-link-hover-decoration: null;
225
+ /* Tables */
226
+ --wy-table-cell-padding-x: .25rem;
227
+ --wy-table-cell-padding-y: .25rem;
228
+ /* Inputs */
229
+ --wy-input-padding-y: .4375rem;
230
+ --wy-input-padding-x: .75rem;
231
+ --wy-input-font-family: unset;
232
+ --wy-input-font-size: var(--wy-font-size-base);
233
+ --wy-input-font-weight: var(--wy-font-weight);
234
+ --wy-input-line-height: var(--wy-line-height);
235
+ --wy-input-border-width: 1px;
236
+ --wy-input-border-radius: var(--wy-border-radius);
237
+ /* Shadows */
238
+ --wy-shadow-level0: none;
239
+ --wy-shadow-level1: 0 0.125rem 0.125rem 0 rgba(0, 0, 0, 0.14), 0 0.1875rem 0.0625rem -0.125rem rgba(0, 0, 0, 0.2), 0 0.0625rem 0.3125rem 0 rgba(0, 0, 0, 0.12);
240
+ --wy-shadow-level2: 0 0.25rem 0.3125rem 0 rgba(0, 0, 0, 0.14), 0 0.0625rem 0.625rem 0 rgba(0, 0, 0, 0.12), 0 0.125rem 0.25rem -0.0625rem rgba(0, 0, 0, 0.2);
241
+ --wy-shadow-level3: 0 0.5rem 0.625rem 0.0625rem rgba(0, 0, 0, 0.14), 0 0.1875rem 1.25rem 0.125rem rgba(0, 0, 0, 0.12), 0 0.3125rem 0.3125rem -0.1875rem rgba(0, 0, 0, 0.2);
242
+ --wy-shadow-level4: 0 1rem 2.25rem 0.125rem rgba(0, 0, 0, 0.14), 0 0.375rem 1.875rem 0.3125rem rgba(0, 0, 0, 0.12), 0 0.5rem 0.625rem -0.3125rem rgba(0, 0, 0, 0.2);
243
+ /* Transitions */
244
+ --wy-transition-curve: cubic-bezier(0.4, 0, 0.2, 1);
245
+ --wy-transition-duration: 0.2s;
246
+ --wy-transition-duration-fast: 0.1s;
247
+ --wy-transition: var(--wy-transition-duration) var(--wy-transition-curve);
248
+ --wy-transition-fast: var(--wy-transition-duration-fast) var(--wy-transition-curve);
249
+ /* Opacity */
250
+ --wy-opacity-backdrop: 95%;
251
+ --wy-opacity-muted: 38%;
252
+ --wy-opacity-disabled: 38%;
253
+ /*
254
+ --wy-opacity-disabled: 12%;
255
+ --wy-opacity-on-disabled: 38%;
256
+ */
257
+ /* State layer */
258
+ --wy-opacity-state-hover: 8%;
259
+ --wy-opacity-state-focus: 12%;
260
+ --wy-opacity-state-active: 12%;
261
+ --wy-opacity-state-drag: 16%;
262
+ /* Surface elevation */
263
+ --wy-surface-1-mix: 5%;
264
+ --wy-surface-2-mix: 8%;
265
+ --wy-surface-3-mix: 11%;
266
+ --wy-surface-4-mix: 12%;
267
+ --wy-surface-5-mix: 14%;
268
+ }
269
+
270
+ :where([class^=wy-], [class*=" wy-"]) {
271
+ box-sizing: border-box;
272
+ }
273
+ :where([class^=wy-], [class*=" wy-"]) *::before, :where([class^=wy-], [class*=" wy-"]) *::after {
274
+ box-sizing: inherit;
275
+ }
276
+ :where([class^=wy-], [class*=" wy-"]):where(a), :where([class^=wy-], [class*=" wy-"]) *:where(a) {
277
+ text-decoration: var(--wy-link-decoration);
278
+ color: var(--wy-link);
279
+ }
280
+ :where([class^=wy-], [class*=" wy-"]):where(a):hover, :where([class^=wy-], [class*=" wy-"]) *:where(a):hover {
281
+ text-decoration: var(--wy-link-hover-decoration);
282
+ }
283
+ :where([class^=wy-], [class*=" wy-"]):where(a):where(:not([href]):not([class])), :where([class^=wy-], [class*=" wy-"]):where(a):where(:not([href]):not([class])):hover, :where([class^=wy-], [class*=" wy-"]) *:where(a):where(:not([href]):not([class])), :where([class^=wy-], [class*=" wy-"]) *:where(a):where(:not([href]):not([class])):hover {
284
+ text-decoration: none;
285
+ }
286
+ :where([class^=wy-], [class*=" wy-"]):where(p), :where([class^=wy-], [class*=" wy-"]) *:where(p) {
287
+ margin-top: 0;
288
+ margin-bottom: 1rem;
289
+ }
290
+ :where([class^=wy-], [class*=" wy-"]):where(label), :where([class^=wy-], [class*=" wy-"]) *:where(label) {
291
+ cursor: inherit;
292
+ }
293
+ :where([class^=wy-], [class*=" wy-"])[hidden], :where([class^=wy-], [class*=" wy-"]) *[hidden] {
294
+ display: none !important;
295
+ }
296
+ :where([class^=wy-], [class*=" wy-"]):where([role=button]), :where([class^=wy-], [class*=" wy-"]) *:where([role=button]) {
297
+ cursor: pointer;
298
+ }
299
+
300
+ .wy-scroll-y {
301
+ overflow-y: auto;
302
+ touch-action: pan-y, pan-x;
303
+ will-change: scroll-position, opacity;
304
+ backface-visibility: hidden;
305
+ max-height: 100%;
306
+ scroll-padding-top: var(--wy-scrollbar-adjust-top, 0);
307
+ scroll-padding-bottom: var(--wy-scrollbar-adjust-bottom, 0);
308
+ }
309
+ .wy-scroll-y:not(body) {
310
+ -webkit-overflow-scrolling: touch;
311
+ }
312
+ .wy-scroll-y:not(.wy-scroll-x) {
313
+ overflow-x: hidden;
314
+ touch-action: pan-y;
315
+ }
316
+
317
+ .wy-scroll-x {
318
+ overflow-x: auto;
319
+ touch-action: pan-y, pan-x;
320
+ will-change: scroll-position, opacity;
321
+ backface-visibility: hidden;
322
+ max-width: 100%;
323
+ }
324
+ .wy-scroll-x:not(.wy-scroll-y) {
325
+ overflow-y: hidden;
326
+ touch-action: pan-x;
327
+ }
328
+
329
+ .wy-scrollbars.wy-scroll-y, .wy-scrollbars .wy-scroll-y {
330
+ scrollbar-width: thin;
331
+ scrollbar-color: var(--wy-outline) transparent;
332
+ }
333
+ @supports (overflow-y: overlay) {
334
+ .wy-scrollbars.wy-scroll-y, .wy-scrollbars .wy-scroll-y {
335
+ overflow-y: overlay;
336
+ }
337
+ }
338
+ .wy-scrollbars.wy-scroll-y::-webkit-scrollbar, .wy-scrollbars .wy-scroll-y::-webkit-scrollbar {
339
+ height: 0.625rem;
340
+ width: 0.625rem;
341
+ background: transparent;
342
+ z-index: 999;
343
+ }
344
+ .wy-scrollbars.wy-scroll-y::-webkit-scrollbar-track, .wy-scrollbars .wy-scroll-y::-webkit-scrollbar-track {
345
+ background: transparent;
346
+ }
347
+ .wy-scrollbars.wy-scroll-y::-webkit-scrollbar-thumb, .wy-scrollbars .wy-scroll-y::-webkit-scrollbar-thumb {
348
+ background-color: var(--wy-outline);
349
+ border: 0.125rem solid transparent;
350
+ border-radius: 0.5rem;
351
+ background-clip: padding-box;
352
+ opacity: 75%;
353
+ }
354
+ .wy-scrollbars.wy-scroll-y::-webkit-scrollbar-thumb:hover, .wy-scrollbars .wy-scroll-y::-webkit-scrollbar-thumb:hover {
355
+ background-color: var(--wy-outline-variant);
356
+ opacity: 75%;
357
+ }
358
+ .wy-scrollbars.wy-scroll-y::-webkit-scrollbar-thumb:window-inactive, .wy-scrollbars .wy-scroll-y::-webkit-scrollbar-thumb:window-inactive {
359
+ background-color: var(--wy-outline);
360
+ opacity: 50%;
361
+ }
362
+ .wy-scrollbars.wy-scroll-y::-webkit-scrollbar-button:vertical:start:single-button, .wy-scrollbars .wy-scroll-y::-webkit-scrollbar-button:vertical:start:single-button {
363
+ height: var(--wy-scrollbar-adjust-top, 0);
364
+ }
365
+ .wy-scrollbars.wy-scroll-y::-webkit-scrollbar-button:vertical:end:single-button, .wy-scrollbars .wy-scroll-y::-webkit-scrollbar-button:vertical:end:single-button {
366
+ height: var(--wy-scrollbar-adjust-bottom, 0);
367
+ }
368
+
369
+ .wy-block-scroll {
370
+ overflow: hidden !important;
371
+ }
372
+
373
+ .wy-scrollbar-detection {
374
+ position: fixed;
375
+ top: 0;
376
+ left: 0;
377
+ width: 8rem;
378
+ height: 8rem;
379
+ overflow: scroll;
380
+ z-index: -99999;
381
+ pointer-events: none;
382
+ visibility: hidden;
383
+ }
384
+
385
+ .wy-appbars {
386
+ backface-visibility: hidden;
387
+ --wy-component-background-color: var(--wy-surface-1);
388
+ background-color: var(--wy-component-background-color);
389
+ box-shadow: var(--wy-outline-variant) 0px -1px 0px 0px inset;
390
+ }
391
+ @supports (position: sticky) {
392
+ .wy-appbars {
393
+ position: sticky;
394
+ top: 0;
395
+ z-index: 1020;
396
+ }
397
+ }
398
+ @supports (backdrop-filter: blur(0.5rem)) {
399
+ .wy-appbars {
400
+ backdrop-filter: blur(0.5rem);
401
+ }
402
+ .wy-appbars > .wy-appbar {
403
+ backdrop-filter: none;
404
+ }
405
+ }
406
+ .wy-appbars > .wy-appbar, .wy-appbars > .wy-toolbar {
407
+ background-color: transparent;
408
+ box-shadow: none;
409
+ }
410
+
411
+ .wy-appbar {
412
+ --wy-component-color: var(--wy-on-surface);
413
+ --wy-component-background-color: var(--wy-surface-1);
414
+ display: grid;
415
+ align-items: center;
416
+ justify-content: space-between;
417
+ justify-items: center;
418
+ height: 3rem;
419
+ padding: 0.25rem;
420
+ flex: 0 0 3rem;
421
+ grid-template-columns: minmax(2.5rem, max-content) minmax(0, max-content) minmax(2.5rem, max-content);
422
+ column-gap: 0.5rem;
423
+ line-height: var(--wy-line-height);
424
+ background-color: var(--wy-component-background-color);
425
+ color: var(--wy-component-color);
426
+ box-shadow: var(--wy-outline-variant) 0px -1px 0px 0px inset;
427
+ }
428
+ .wy-appbar .wy-badge {
429
+ align-self: center;
430
+ }
431
+ .wy-appbar .wy-button {
432
+ max-height: 2.5rem;
433
+ }
434
+
435
+ .wy-appbar-buttons, .wy-toolbar-buttons {
436
+ display: flex;
437
+ flex: 0 0 auto;
438
+ align-items: center;
439
+ }
440
+
441
+ .wy-toolbar-buttons-last {
442
+ margin-inline-start: auto;
443
+ }
444
+
445
+ .wy-appbar-text {
446
+ overflow: hidden;
447
+ text-overflow: ellipsis;
448
+ white-space: nowrap;
449
+ max-width: 100%;
450
+ color: inherit !important;
451
+ user-select: none;
452
+ }
453
+ .wy-appbar-text a {
454
+ color: inherit;
455
+ }
456
+ .wy-appbar-text a:hover {
457
+ color: inherit;
458
+ }
459
+
460
+ .wy-appbar-text-trashed {
461
+ text-decoration: line-through;
462
+ }
463
+
464
+ .wy-toolbars-bottom {
465
+ position: absolute;
466
+ z-index: 1030;
467
+ bottom: 2rem;
468
+ left: 0;
469
+ right: 0;
470
+ min-height: 3rem;
471
+ display: flex;
472
+ flex-direction: column;
473
+ justify-content: center;
474
+ justify-items: center;
475
+ }
476
+
477
+ .wy-toolbar {
478
+ --wy-component-color: var(--wy-on-surface);
479
+ --wy-component-background-color: var(--wy-surface-1);
480
+ display: flex;
481
+ flex-wrap: wrap;
482
+ align-items: center;
483
+ justify-content: flex-start;
484
+ justify-items: center;
485
+ min-height: 3rem;
486
+ padding: 0.25rem;
487
+ flex: 1 0 3rem;
488
+ column-gap: 0.25rem;
489
+ line-height: var(--wy-line-height);
490
+ background-color: var(--wy-component-background-color);
491
+ color: var(--wy-component-color);
492
+ box-shadow: var(--wy-outline-variant) 0px -1px 0px 0px inset;
493
+ }
494
+
495
+ .wy-toolbar-center {
496
+ margin: 0 auto;
497
+ border-radius: var(--wy-border-radius);
498
+ }
499
+ .wy-toolbar-center .wy-input {
500
+ text-align: center;
501
+ }
502
+
503
+ .wy-toolbar-text {
504
+ margin-left: 0.25rem;
505
+ }
506
+
507
+ .wy-footerbars {
508
+ padding-bottom: 4rem;
509
+ }
510
+ .wy-footerbars > .wy-toolbar {
511
+ box-shadow: none;
512
+ }
513
+
514
+ .wy-footerbar {
515
+ --wy-component-background-color: var(--wy-surface-1);
516
+ --wy-component-color: var(--wy-on-surface);
517
+ position: absolute;
518
+ bottom: 0;
519
+ left: 0;
520
+ right: 0;
521
+ z-index: 1020;
522
+ }
523
+ .wy-footerbar::after {
524
+ content: "";
525
+ background-color: var(--wy-component-background-color);
526
+ color: var(--wy-component-color);
527
+ box-shadow: var(--wy-outline-variant) 0px 1px 0px 0px inset;
528
+ position: absolute;
529
+ width: 100vw;
530
+ left: 0;
531
+ bottom: 0;
532
+ height: 100%;
533
+ z-index: -1;
534
+ backface-visibility: hidden;
535
+ }
536
+ @supports (backdrop-filter: blur(0.5rem)) {
537
+ .wy-footerbar::after {
538
+ backdrop-filter: blur(0.5rem);
539
+ }
540
+ }
541
+ .wy-footerbar .wy-buttons {
542
+ flex-direction: row-reverse;
543
+ }
544
+ .wy-footerbar .wy-buttons > :not(:last-child) {
545
+ margin: 0 0 0 0.5rem;
546
+ }
547
+
548
+ .wy-footerbar-sticky {
549
+ position: sticky;
550
+ }
551
+
552
+ .wy-footerbars-fixed .wy-footerbar {
553
+ position: fixed;
554
+ }
555
+ .wy-footerbars-fixed .wy-footerbar::after {
556
+ position: fixed;
557
+ height: 4rem;
558
+ }
559
+
560
+ :where(:root, :host > *) {
561
+ --wy-btn-padding-x: 1.5rem;
562
+ --wy-btn-padding-y: .5rem;
563
+ --wy-btn-font-family: var(--wy-font-family);
564
+ --wy-btn-font-size: var(--wy-font-size-base);
565
+ --wy-btn-font-weight: 400;
566
+ --wy-btn-line-height: var(--wy-line-height);
567
+ --wy-btn-border-width: 0;
568
+ --wy-btn-border-color: transparent;
569
+ --wy-btn-border-radius: 1.25rem;
570
+ }
571
+
572
+ .wy-button {
573
+ --wy-component-color: var(--wy-primary);
574
+ color: var(--wy-component-color);
575
+ background: var(--wy-component-background-color, transparent);
576
+ padding: var(--wy-btn-padding-y) var(--wy-btn-padding-x);
577
+ font-family: var(--wy-btn-font-family);
578
+ font-size: var(--wy-btn-font-size);
579
+ font-weight: var(--wy-btn-font-weight);
580
+ line-height: var(--wy-btn-line-height);
581
+ text-align: center;
582
+ text-decoration: none;
583
+ vertical-align: middle;
584
+ cursor: pointer;
585
+ user-select: none;
586
+ border: var(--wy-btn-border-width) solid var(--wy-btn-border-color);
587
+ border-radius: var(--wy-btn-border-radius);
588
+ display: inline-flex;
589
+ align-items: center;
590
+ justify-content: center;
591
+ gap: 0.25rem;
592
+ position: relative;
593
+ }
594
+ .wy-button:not(.wy-button-link, :disabled) > * {
595
+ z-index: 3;
596
+ }
597
+ .wy-button:not(.wy-button-link, :disabled)::before {
598
+ content: "";
599
+ z-index: 2;
600
+ position: absolute;
601
+ top: 0;
602
+ left: 0;
603
+ width: 100%;
604
+ height: 100%;
605
+ border-radius: inherit;
606
+ background: var(--wy-component-color);
607
+ opacity: 0%;
608
+ }
609
+ .wy-button:not(.wy-button-link, :disabled):hover::before {
610
+ opacity: 8%;
611
+ }
612
+ .wy-button:not(.wy-button-link, :disabled):focus::before, .wy-button:not(.wy-button-link, :disabled):active::before, .wy-button:not(.wy-button-link, :disabled).wy-active::before {
613
+ opacity: 12%;
614
+ }
615
+ .wy-button:not(.wy-button-icon) .wy-icon:first-child {
616
+ margin-left: -0.5rem;
617
+ }
618
+ .wy-button:not(.wy-button-icon) .wy-icon:last-child {
619
+ margin-right: -0.5rem;
620
+ }
621
+ .wy-button:disabled {
622
+ opacity: var(--wy-opacity-disabled);
623
+ cursor: unset;
624
+ pointer-events: none;
625
+ }
626
+
627
+ .wy-button-icon {
628
+ --wy-component-color: var(--wy-on-surface-variant);
629
+ width: 2.5rem;
630
+ height: 2.5rem;
631
+ padding: 0.5rem;
632
+ line-height: 1;
633
+ border-radius: var(--wy-border-radius-pill);
634
+ border-width: 0;
635
+ }
636
+ .wy-button-icon.wy-active {
637
+ --wy-component-color: var(--wy-primary);
638
+ }
639
+
640
+ .wy-button-primary {
641
+ --wy-component-background-color: var(--wy-primary);
642
+ --wy-component-color: var(--wy-on-primary);
643
+ }
644
+
645
+ .wy-button-variant {
646
+ --wy-component-background-color: var(--wy-surface-variant);
647
+ --wy-component-color: var(--wy-on-surface-variant);
648
+ }
649
+
650
+ .wy-button-primary-text {
651
+ --wy-component-color: var(--wy-primary);
652
+ }
653
+
654
+ .wy-button-link {
655
+ padding: 0;
656
+ color: var(--wy-link-color, var(--wy-primary));
657
+ text-decoration: var(--wy-link-decoration, var(--wy-link-decoration));
658
+ }
659
+ .wy-button-link:hover, .wy-button-link:focus {
660
+ text-decoration: var(--wy-link-hover-decoration, var(--wy-link-hover-decoration));
661
+ }
662
+
663
+ .wy-buttons {
664
+ display: flex;
665
+ align-items: center;
666
+ flex-wrap: wrap;
667
+ gap: 0.5rem;
668
+ }
669
+
670
+ .wy-card {
671
+ --wy-component-background-color: var(--wy-surface-1);
672
+ --wy-component-color: var(--wy-on-surface);
673
+ --wy-component-border-radius: var(--wy-border-radius-lg);
674
+ background-color: var(--wy-component-background-color);
675
+ color: var(--wy-component-color);
676
+ border-radius: var(--wy-component-border-radius);
677
+ position: relative;
678
+ display: flex;
679
+ flex-direction: column;
680
+ min-width: 0;
681
+ word-wrap: break-word;
682
+ background-clip: border-box;
683
+ }
684
+ .wy-card > hr {
685
+ margin-right: 0;
686
+ margin-left: 0;
687
+ }
688
+
689
+ .wy-card-primary {
690
+ --wy-component-background-color: var(--wy-primary-container);
691
+ --wy-component-color: var(--wy-on-primary-container);
692
+ }
693
+
694
+ .wy-card-hover {
695
+ cursor: pointer;
696
+ user-select: none;
697
+ }
698
+ .wy-card-hover::before {
699
+ content: "";
700
+ position: absolute;
701
+ top: 0;
702
+ left: 0;
703
+ width: 100%;
704
+ height: 100%;
705
+ border-radius: inherit;
706
+ background: var(--wy-component-color);
707
+ opacity: 0%;
708
+ }
709
+ .wy-card-hover:hover::before {
710
+ opacity: var(--wy-opacity-state-hover);
711
+ }
712
+ .wy-card-hover:focus::before {
713
+ opacity: var(--wy-opacity-state-focus);
714
+ }
715
+ .wy-card-hover:active::before, .wy-card-hover.wy-active::before {
716
+ opacity: var(--wy-opacity-state-active);
717
+ }
718
+
719
+ .wy-card-actions {
720
+ position: absolute;
721
+ top: min(0.25rem, 100% - 2.5rem);
722
+ right: 0.25rem;
723
+ align-items: center;
724
+ display: flex;
725
+ }
726
+ .wy-card-actions > .wy-button-icon, .wy-card-actions > .wy-dropdown > .wy-button-icon {
727
+ background-clip: content-box;
728
+ }
729
+
730
+ .wy-card-content {
731
+ flex: 1 0 auto;
732
+ padding-block-end: 0.5rem;
733
+ padding-inline-start: 0.5rem;
734
+ padding-inline-end: 0.5rem;
735
+ }
736
+ .wy-card-content:first-child, .wy-card-actions + .wy-card-content:nth-child(2) {
737
+ padding-block-start: 0.5rem;
738
+ }
739
+
740
+ .wy-card-top {
741
+ border-radius: var(--wy-component-border-radius);
742
+ object-fit: cover;
743
+ object-position: top center;
744
+ flex: 1 1 100%;
745
+ max-height: 10rem;
746
+ }
747
+
748
+ .wy-card-top-image {
749
+ object-position: 50% 38%;
750
+ }
751
+
752
+ .wy-card-trashed {
753
+ text-decoration: line-through;
754
+ }
755
+ .wy-card-trashed > *:not(.wy-card-actions) {
756
+ opacity: var(--wy-opacity-disabled);
757
+ }
758
+
759
+ .wy-dropdown,
760
+ .wy-dropup {
761
+ position: relative;
762
+ }
763
+
764
+ .wy-dropup .wy-dropdown-menu {
765
+ top: auto;
766
+ bottom: 100%;
767
+ margin-top: 0;
768
+ margin-bottom: 0.25rem;
769
+ }
770
+
771
+ .wy-dropdown-toggle {
772
+ white-space: nowrap;
773
+ }
774
+
775
+ .wy-dropdown-menu {
776
+ --wy-component-background-color: var(--wy-surface-2);
777
+ --wy-component-color: var(--wy-on-surface);
778
+ background-color: var(--wy-component-background-color);
779
+ color: var(--wy-component-color);
780
+ position: absolute;
781
+ z-index: 1000;
782
+ min-width: 10rem;
783
+ padding: 0 0;
784
+ margin: 0;
785
+ font-size: var(--wy-font-size-base);
786
+ text-align: left;
787
+ list-style: none;
788
+ background-clip: padding-box;
789
+ border-radius: var(--wy-border-radius);
790
+ box-shadow: var(--wy-shadow-level1);
791
+ overflow: hidden;
792
+ display: block;
793
+ }
794
+ .wy-dropdown-menu[data-bs-popper] {
795
+ top: 100%;
796
+ left: 0;
797
+ margin-top: 0.25rem;
798
+ }
799
+ .wy-dropup .wy-dropdown-menu {
800
+ top: auto;
801
+ bottom: 100%;
802
+ margin-top: 0;
803
+ margin-bottom: 0.25rem;
804
+ }
805
+ [data-bs-toggle=dropdown] ~ .wy-dropdown-menu:not(.show) {
806
+ display: none;
807
+ }
808
+ [data-bs-toggle=dropdown] ~ .wy-dropdown-menu[hidden].show {
809
+ display: block !important;
810
+ }
811
+
812
+ .wy-dropdown-menu-end {
813
+ right: 0;
814
+ }
815
+
816
+ .wy-dropdown-item {
817
+ background-color: transparent;
818
+ color: var(--wy-component-color, var(--wy-on-surface));
819
+ display: block;
820
+ width: 100%;
821
+ padding: 0.75rem 1rem;
822
+ clear: both;
823
+ font-family: inherit;
824
+ font-size: inherit;
825
+ font-weight: 400;
826
+ line-height: 1;
827
+ text-align: inherit;
828
+ text-decoration: none;
829
+ white-space: nowrap;
830
+ border: 0;
831
+ gap: 0.25rem;
832
+ cursor: pointer;
833
+ display: flex;
834
+ align-items: center;
835
+ }
836
+ .wy-dropdown-item:hover, .wy-dropdown-item:focus {
837
+ --wy-component-color: var(--wy-on-surface-variant);
838
+ --wy-component-background-color: var(--wy-surface-variant);
839
+ color: var(--wy-component-color);
840
+ background-color: var(--wy-component-background-color);
841
+ text-decoration: none;
842
+ }
843
+ .wy-dropdown-item.wy-active, .wy-dropdown-item:active {
844
+ --wy-component-color: var(--wy-on-primary-container);
845
+ --wy-component-background-color: var(--wy-primary-container);
846
+ color: var(--wy-component-color);
847
+ background-color: var(--wy-component-background-color);
848
+ text-decoration: none;
849
+ }
850
+ .wy-dropdown-item.wy-disabled, .wy-dropdown-item:disabled {
851
+ color: var(--wy-component-color);
852
+ background-color: var(--wy-component-background-color);
853
+ pointer-events: none;
854
+ opacity: var(--wy-opacity-disabled);
855
+ }
856
+ .wy-dropdown-item > img, .wy-dropdown-item .wy-icon {
857
+ margin-right: 0.5rem;
858
+ color: inherit;
859
+ }
860
+ .wy-dropdown-item:active > .wy-icon {
861
+ color: inherit;
862
+ }
863
+ .wy-dropdown-item.wy-option .wy-icon {
864
+ visibility: hidden;
865
+ }
866
+ .wy-dropdown-item.wy-option.wy-selected .wy-icon {
867
+ visibility: visible;
868
+ }
869
+
870
+ .wy-dropdown-divider {
871
+ height: 0;
872
+ margin: 0;
873
+ overflow: hidden;
874
+ border: none;
875
+ border-top: 1px solid var(--wy-outline-variant);
876
+ }
877
+
878
+ .wy-filename {
879
+ font-size: var(--wy-font-size-sm);
880
+ overflow: hidden;
881
+ text-overflow: ellipsis;
882
+ white-space: nowrap;
883
+ text-align: center;
884
+ }
885
+
886
+ .wy-files-dragging::after {
887
+ content: "Drop files here to upload.";
888
+ background-color: rgba(255, 255, 255, 0.5);
889
+ display: flex;
890
+ justify-content: center;
891
+ align-items: center;
892
+ border: 2px dashed var(--wy-primary);
893
+ font-weight: 700;
894
+ z-index: 10000;
895
+ position: fixed;
896
+ top: 0;
897
+ left: 0;
898
+ bottom: 0;
899
+ right: 0;
900
+ }
901
+
902
+ .wy-table-files thead {
903
+ display: none;
904
+ text-align: left;
905
+ }
906
+ .wy-table-files td:nth-child(2) {
907
+ padding: 0 var(--wy-table-cell-padding-x);
908
+ }
909
+ .wy-table-files td:nth-child(2),
910
+ .wy-table-files th:nth-child(2) {
911
+ width: 100%;
912
+ overflow: hidden;
913
+ text-overflow: ellipsis;
914
+ white-space: nowrap;
915
+ }
916
+ .wy-table-files td:nth-child(3),
917
+ .wy-table-files th:nth-child(3) {
918
+ display: none;
919
+ width: 7rem;
920
+ overflow: hidden;
921
+ text-overflow: ellipsis;
922
+ white-space: nowrap;
923
+ }
924
+ .wy-table-files td:nth-child(4),
925
+ .wy-table-files th:nth-child(4) {
926
+ display: none;
927
+ width: 7.5rem;
928
+ text-align: right;
929
+ overflow: hidden;
930
+ text-overflow: ellipsis;
931
+ white-space: nowrap;
932
+ }
933
+ .wy-table-files td:nth-child(5),
934
+ .wy-table-files th:nth-child(5) {
935
+ display: none;
936
+ width: 7rem;
937
+ text-align: right;
938
+ overflow: hidden;
939
+ text-overflow: ellipsis;
940
+ white-space: nowrap;
941
+ }
942
+ @media (min-width: 576px) {
943
+ .wy-table-files thead {
944
+ display: table-header-group;
945
+ }
946
+ .wy-table-files td:nth-child(5),
947
+ .wy-table-files th:nth-child(5) {
948
+ display: table-cell;
949
+ }
950
+ }
951
+ @media (min-width: 768px) {
952
+ .wy-table-files td:nth-child(3),
953
+ .wy-table-files th:nth-child(3),
954
+ .wy-table-files td:nth-child(4),
955
+ .wy-table-files th:nth-child(4) {
956
+ display: table-cell;
957
+ }
958
+ }
959
+
960
+ .wy-grid {
961
+ display: grid;
962
+ grid-auto-flow: dense;
963
+ grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
964
+ grid-gap: 0.75rem;
965
+ }
966
+
967
+ .wy-icon {
968
+ display: inline-flex;
969
+ align-items: center;
970
+ justify-content: center;
971
+ flex: 0 0 auto;
972
+ position: relative;
973
+ }
974
+ .wy-icon:not([width]) {
975
+ width: 1.5rem;
976
+ }
977
+ .wy-icon:not([height]) {
978
+ height: 1.5rem;
979
+ }
980
+
981
+ .wy-icon-overlay {
982
+ position: absolute;
983
+ bottom: 0;
984
+ right: 0;
985
+ background: var(--wy-component-background-color, var(--wy-background));
986
+ border-radius: 50%;
987
+ border: 1px solid var(--wy-component-background-color, var(--wy-background));
988
+ }
989
+
990
+ .wy-icon-stack {
991
+ display: inline-flex;
992
+ position: relative;
993
+ line-height: 1;
994
+ }
995
+ .wy-icon-stack .wy-icon:last-child {
996
+ position: absolute;
997
+ bottom: 0;
998
+ right: 0;
999
+ background-color: var(--wy-component-background-color, var(--wy-background));
1000
+ border-radius: 50%;
1001
+ }
1002
+
1003
+ .wy-icon-active-stack {
1004
+ display: inline-flex;
1005
+ position: relative;
1006
+ line-height: 1;
1007
+ }
1008
+ .wy-icon-active-stack > * {
1009
+ transition: opacity var(--wy-transition);
1010
+ align-self: center;
1011
+ justify-self: center;
1012
+ margin: auto;
1013
+ }
1014
+ .wy-icon-active-stack > :last-child {
1015
+ position: absolute;
1016
+ opacity: 0;
1017
+ }
1018
+ .wy-icon-active-stack.wy-active > :first-child, .wy-active .wy-icon-active-stack > :first-child {
1019
+ opacity: 0;
1020
+ }
1021
+ .wy-icon-active-stack.wy-active > :last-child, .wy-active .wy-icon-active-stack > :last-child {
1022
+ opacity: 1;
1023
+ }
1024
+
1025
+ .wy-icon:not([class*=wy-icon-]):not([class*=wy-kind-]):not([data-icon=progress]) * {
1026
+ fill: currentColor;
1027
+ }
1028
+
1029
+ .wy-content-icon {
1030
+ border-radius: var(--wy-component-border-radius, var(--wy-border-radius-lg));
1031
+ display: flex;
1032
+ align-items: center;
1033
+ justify-content: center;
1034
+ flex-direction: column;
1035
+ text-align: center;
1036
+ padding: 1rem 2rem;
1037
+ margin: auto;
1038
+ }
1039
+ .wy-content-icon > .wy-icon-stack, .wy-content-icon > .wy-icon {
1040
+ width: 4rem;
1041
+ height: 4rem;
1042
+ }
1043
+
1044
+ .wy-icon-primary * {
1045
+ fill: var(--wy-primary);
1046
+ }
1047
+
1048
+ .wy-icon-error * {
1049
+ fill: var(--wy-error);
1050
+ }
1051
+
1052
+ .wy-icon-blue * {
1053
+ fill: var(--wy-blue);
1054
+ }
1055
+
1056
+ .wy-icon-indigo * {
1057
+ fill: var(--wy-indigo);
1058
+ }
1059
+
1060
+ .wy-icon-purple * {
1061
+ fill: var(--wy-purple);
1062
+ }
1063
+
1064
+ .wy-icon-pink * {
1065
+ fill: var(--wy-pink);
1066
+ }
1067
+
1068
+ .wy-icon-red * {
1069
+ fill: var(--wy-red);
1070
+ }
1071
+
1072
+ .wy-icon-orange * {
1073
+ fill: var(--wy-orange);
1074
+ }
1075
+
1076
+ .wy-icon-yellow * {
1077
+ fill: var(--wy-yellow);
1078
+ }
1079
+
1080
+ .wy-icon-green * {
1081
+ fill: var(--wy-green);
1082
+ }
1083
+
1084
+ .wy-icon-teal * {
1085
+ fill: var(--wy-teal);
1086
+ }
1087
+
1088
+ .wy-icon-cyan * {
1089
+ fill: var(--wy-cyan);
1090
+ }
1091
+
1092
+ .wy-icon-gray * {
1093
+ fill: var(--wy-gray);
1094
+ }
1095
+
1096
+ [class*=wy-kind-] * {
1097
+ fill: var(--wy-gray);
1098
+ }
1099
+
1100
+ .wy-kind-archive * {
1101
+ fill: var(--wy-orange);
1102
+ }
1103
+
1104
+ .wy-kind-audio * {
1105
+ fill: var(--wy-teal);
1106
+ }
1107
+
1108
+ .wy-kind-code * {
1109
+ fill: var(--wy-green);
1110
+ }
1111
+
1112
+ .wy-kind-document * {
1113
+ fill: var(--wy-blue);
1114
+ }
1115
+
1116
+ .wy-kind-email * {
1117
+ fill: var(--wy-red);
1118
+ }
1119
+
1120
+ .wy-kind-presentation * {
1121
+ fill: var(--wy-orange);
1122
+ }
1123
+
1124
+ .wy-kind-spreadsheet * {
1125
+ fill: var(--wy-green);
1126
+ }
1127
+
1128
+ .wy-kind-image * {
1129
+ fill: var(--wy-pink);
1130
+ }
1131
+
1132
+ .wy-kind-text * {
1133
+ fill: var(--wy-cyan);
1134
+ }
1135
+
1136
+ .wy-kind-video * {
1137
+ fill: var(--wy-purple);
1138
+ }
1139
+
1140
+ .wy-ext-pdf * {
1141
+ fill: var(--wy-red);
1142
+ }
1143
+
1144
+ [data-icon=progress].wy-icon-primary {
1145
+ color: var(--wy-primary);
1146
+ }
1147
+ [data-icon=progress] :first-child {
1148
+ fill: none;
1149
+ stroke: var(--wy-surface-variant);
1150
+ }
1151
+ [data-icon=progress] :last-child {
1152
+ fill: none;
1153
+ stroke: currentColor;
1154
+ }
1155
+
1156
+ .wy-input {
1157
+ --wy-component-background-color: var(--wy-background);
1158
+ --wy-component-color: var(--wy-on-background);
1159
+ background-color: var(--wy-component-background-color);
1160
+ color: var(--wy-component-color);
1161
+ border: var(--wy-input-border-width) solid var(--wy-outline-variant);
1162
+ display: block;
1163
+ width: 100%;
1164
+ padding: var(--wy-input-padding-y) var(--wy-input-padding-x);
1165
+ font-family: var(--wy-font-family);
1166
+ font-size: var(--wy-input-font-size);
1167
+ font-weight: var(--wy-input-font-weight);
1168
+ line-height: var(--wy-input-line-height);
1169
+ background-clip: padding-box;
1170
+ appearance: none;
1171
+ border-radius: var(--wy-input-border-radius);
1172
+ }
1173
+ .wy-input:focus {
1174
+ --wy-component-color: var(--wy-on-surface);
1175
+ color: var(--wy-component-color);
1176
+ border-color: var(--wy-primary);
1177
+ outline: 0;
1178
+ }
1179
+ .wy-input::placeholder {
1180
+ color: var(--wy-outline);
1181
+ opacity: 1;
1182
+ }
1183
+ .wy-input:disabled {
1184
+ opacity: 38%;
1185
+ }
1186
+ .wy-input::file-selector-button, .wy-input::-webkit-file-upload-button {
1187
+ color: var(--wy-component-color);
1188
+ background-color: var(--wy-component-background-color);
1189
+ padding: var(--wy-input-padding-y) var(--wy-input-padding-x);
1190
+ margin: calc(-1 * var(--wy-input-padding-y)) calc(-1 * var(--wy-input-padding-x));
1191
+ margin-inline-end: var(--wy-input-padding-x);
1192
+ pointer-events: none;
1193
+ border-color: inherit;
1194
+ border-style: solid;
1195
+ border-width: 0;
1196
+ border-inline-end-width: var(--wy-input-border-width);
1197
+ border-radius: 0;
1198
+ }
1199
+ .wy-input:hover:not(:disabled):not([readonly])::file-selector-button, .wy-input:hover:not(:disabled):not([readonly]) ::-webkit-file-upload-button {
1200
+ background-color: var(--wy-component-background-color);
1201
+ }
1202
+ .wy-input[type=file] {
1203
+ overflow: hidden;
1204
+ }
1205
+ .wy-input[type=file]:not(:disabled):not([readonly]) {
1206
+ cursor: pointer;
1207
+ }
1208
+ .wy-input::-webkit-date-and-time-value {
1209
+ height: calc(var(--wy-input-line-height) * 1em);
1210
+ }
1211
+ .wy-input[type=search]::-webkit-search-cancel-button {
1212
+ -webkit-appearance: none;
1213
+ }
1214
+
1215
+ .wy-input-filled {
1216
+ --wy-component-background-color: var(--wy-surface-2);
1217
+ --wy-component-color: var(--wy-on-surface);
1218
+ background-color: var(--wy-component-background-color);
1219
+ color: var(--wy-component-color);
1220
+ border-radius: 1.25rem;
1221
+ border-color: var(--wy-component-background-color);
1222
+ }
1223
+ .wy-input-filled:focus {
1224
+ border-color: var(--wy-outline-variant);
1225
+ }
1226
+
1227
+ .wy-input-label {
1228
+ display: block;
1229
+ margin-bottom: 0.5rem;
1230
+ }
1231
+
1232
+ .wy-description {
1233
+ margin-top: 0.25rem;
1234
+ font-size: var(--wy-font-size-sm);
1235
+ }
1236
+
1237
+ .wy-is-invalid, .wy-is-invalid:focus {
1238
+ border-color: var(--wy-error);
1239
+ }
1240
+
1241
+ .wy-invalid-feedback {
1242
+ margin-top: 0.25rem;
1243
+ font-size: var(--wy-font-size-sm);
1244
+ color: var(--wy-error);
1245
+ }
1246
+
1247
+ .wy-input-group {
1248
+ position: relative;
1249
+ }
1250
+ .wy-input-group > .wy-icon {
1251
+ position: absolute;
1252
+ top: 0rem;
1253
+ left: 0rem;
1254
+ z-index: 4;
1255
+ }
1256
+ .wy-input-group > .wy-icon + .wy-input {
1257
+ padding-left: 2.5rem;
1258
+ }
1259
+ .wy-input-group .wy-button-icon {
1260
+ position: absolute;
1261
+ top: 0rem;
1262
+ right: 0rem;
1263
+ z-index: 4;
1264
+ border-radius: var(--wy-input-border-radius);
1265
+ background: transparent;
1266
+ }
1267
+ .wy-input-group .wy-input-filled ~ .wy-button-icon {
1268
+ border-radius: 1.25rem;
1269
+ }
1270
+ .wy-input-group .wy-input {
1271
+ padding-right: 2.5rem;
1272
+ }
1273
+ .wy-input-group .wy-input:placeholder-shown ~ .wy-button-icon[type=reset] {
1274
+ display: none;
1275
+ }
1276
+ .wy-input-group .wy-input:not(:placeholder-shown) ~ .wy-button-icon[type=reset] + .wy-button-icon {
1277
+ display: none;
1278
+ }
1279
+
1280
+ .wy-item {
1281
+ position: relative;
1282
+ display: flex;
1283
+ align-items: center;
1284
+ gap: 0.5rem;
1285
+ padding: 0.25rem 0.75rem;
1286
+ text-decoration: none;
1287
+ min-height: 3rem;
1288
+ }
1289
+ .wy-item > .wy-avatar, .wy-item > .wy-icon, .wy-item > .wy-icon[data-icon=spinner], .wy-item > .wy-icon-stack {
1290
+ margin-left: -0.25rem;
1291
+ }
1292
+
1293
+ .wy-item-body {
1294
+ width: 100%;
1295
+ overflow: hidden;
1296
+ text-overflow: ellipsis;
1297
+ white-space: nowrap;
1298
+ }
1299
+ .wy-item-body > * {
1300
+ overflow: hidden;
1301
+ text-overflow: ellipsis;
1302
+ white-space: nowrap;
1303
+ }
1304
+ .wy-item-body + .wy-dropdown, .wy-item-body + .wy-button-icon, .wy-item-body + .wy-item-actions {
1305
+ margin-right: -0.5rem;
1306
+ }
1307
+ .wy-item-body + .wy-emoji {
1308
+ margin-right: 0.125rem;
1309
+ }
1310
+ .wy-item-body > .wy-icon[data-icon=shield-star] {
1311
+ vertical-align: -0.125rem;
1312
+ }
1313
+
1314
+ .wy-item-title {
1315
+ color: var(--wy-on-background);
1316
+ font-weight: var(--wy-headings-font-weight);
1317
+ overflow: hidden;
1318
+ text-overflow: ellipsis;
1319
+ white-space: nowrap;
1320
+ }
1321
+
1322
+ .wy-item-text {
1323
+ color: var(--wy-outline);
1324
+ overflow: hidden;
1325
+ text-overflow: ellipsis;
1326
+ white-space: nowrap;
1327
+ font-size: var(--wy-font-size-sm);
1328
+ }
1329
+ .wy-item-text .wy-emoji, .wy-item-text .wy-icon {
1330
+ width: 1.25rem;
1331
+ height: 1.25rem;
1332
+ vertical-align: -0.3125rem;
1333
+ }
1334
+
1335
+ .wy-item-actions {
1336
+ --wy-component-background-color: transparent;
1337
+ display: flex;
1338
+ align-items: center;
1339
+ flex: 0 0 auto;
1340
+ }
1341
+
1342
+ .wy-item-actions-top {
1343
+ position: absolute;
1344
+ top: 0.25rem;
1345
+ right: 0.25rem;
1346
+ margin: 0 !important;
1347
+ }
1348
+
1349
+ .wy-item-actions-bottom {
1350
+ position: absolute;
1351
+ bottom: 0.25rem;
1352
+ right: 0.25rem;
1353
+ margin: 0 !important;
1354
+ }
1355
+
1356
+ .wy-item-body:has(+ .wy-item-actions-bottom) .wy-item-row:last-child {
1357
+ margin-right: 4.5rem;
1358
+ }
1359
+
1360
+ .wy-item-body:has(+ .wy-item-actions-top) .wy-item-row:first-child {
1361
+ margin-right: 2rem;
1362
+ }
1363
+
1364
+ .wy-action-label {
1365
+ margin-right: 0.5rem;
1366
+ font-style: italic;
1367
+ }
1368
+
1369
+ .wy-item-row {
1370
+ display: flex;
1371
+ align-items: center;
1372
+ }
1373
+ .wy-item-row:first-child {
1374
+ margin-bottom: 0.125rem;
1375
+ }
1376
+ .wy-item-row .wy-item-title {
1377
+ margin-right: auto;
1378
+ }
1379
+ .wy-item-row .wy-item-text {
1380
+ margin-right: auto;
1381
+ }
1382
+ .wy-item-row .wy-meta {
1383
+ margin: 0 0.25rem;
1384
+ white-space: nowrap;
1385
+ }
1386
+
1387
+ .wy-item-hover {
1388
+ user-select: none;
1389
+ cursor: pointer;
1390
+ }
1391
+ .wy-item-hover:hover, .wy-item-hover:focus {
1392
+ --wy-component-background-color: var(--wy-surface-2);
1393
+ --wy-component-color: var(--wy-on-surface);
1394
+ background-color: var(--wy-component-background-color);
1395
+ color: var(--wy-component-color);
1396
+ text-decoration: none;
1397
+ }
1398
+ .wy-item-hover:active {
1399
+ --wy-component-background-color: var(--wy-surface-variant);
1400
+ --wy-component-color: var(--wy-on-surface-variant);
1401
+ background-color: var(--wy-component-background-color);
1402
+ color: var(--wy-component-color);
1403
+ }
1404
+ .wy-item-hover.wy-disabled, .wy-item-hover:disabled {
1405
+ opacity: var(--wy-opacity-disabled);
1406
+ pointer-events: none;
1407
+ }
1408
+ .wy-item-hover.wy-active {
1409
+ --wy-component-background-color: var(--wy-primary-container);
1410
+ --wy-component-color: var(--wy-on-primary-container);
1411
+ background-color: var(--wy-component-background-color);
1412
+ color: var(--wy-component-color);
1413
+ border-color: var(--wy-component-background-color);
1414
+ }
1415
+
1416
+ .wy-item-trashed {
1417
+ text-decoration: line-through;
1418
+ opacity: var(--wy-opacity-disabled);
1419
+ }
1420
+ .wy-item-trashed.wy-item-hover:hover {
1421
+ opacity: 1;
1422
+ }
1423
+
1424
+ .wy-item-lg {
1425
+ padding: 0.75rem;
1426
+ min-height: 4.5rem;
1427
+ gap: 0.75rem;
1428
+ }
1429
+ .wy-item-lg > .wy-avatar, .wy-item-lg > .wy-icon, .wy-item-lg > .wy-icon-stack {
1430
+ margin-left: 0;
1431
+ }
1432
+
1433
+ .wy-list {
1434
+ border-radius: var(--wy-border-radius-sm);
1435
+ display: flex;
1436
+ flex-direction: column;
1437
+ gap: 1px;
1438
+ min-width: 0;
1439
+ }
1440
+ .wy-list .wy-item:not(.wy-item-hover) {
1441
+ --wy-component-background-color: var(--wy-background);
1442
+ --wy-component-color: var(--wy-on-background);
1443
+ background-color: var(--wy-component-background-color);
1444
+ color: var(--wy-component-color);
1445
+ }
1446
+ .wy-list .wy-item:first-child {
1447
+ border-top-left-radius: inherit;
1448
+ border-top-right-radius: inherit;
1449
+ }
1450
+ .wy-list .wy-item:last-child {
1451
+ border-bottom-left-radius: inherit;
1452
+ border-bottom-right-radius: inherit;
1453
+ }
1454
+
1455
+ .wy-list-bordered {
1456
+ border: 1px solid var(--wy-outline-variant);
1457
+ gap: 0;
1458
+ }
1459
+ .wy-list-bordered .wy-item {
1460
+ border-top: 1px solid var(--wy-outline-variant);
1461
+ border-left: none;
1462
+ border-right: none;
1463
+ }
1464
+ .wy-list-bordered .wy-item:first-child {
1465
+ border-top: none;
1466
+ }
1467
+ .wy-list-bordered .wy-item:last-child {
1468
+ border-bottom: none;
1469
+ }
1470
+ .wy-list-bordered .wy-item + .wy-list-bordered .wy-item {
1471
+ border-top-width: 0;
1472
+ }
1473
+
1474
+ .wy-viewport {
1475
+ position: fixed;
1476
+ top: 0;
1477
+ right: 0;
1478
+ bottom: 0;
1479
+ left: 0;
1480
+ z-index: 2147483647; /* max possible z-index */
1481
+ pointer-events: none;
1482
+ }
1483
+
1484
+ .wy-overlays {
1485
+ pointer-events: none;
1486
+ width: auto;
1487
+ left: 0;
1488
+ top: 0;
1489
+ right: 0;
1490
+ bottom: 0;
1491
+ max-width: none;
1492
+ display: flex;
1493
+ align-items: center;
1494
+ justify-content: center;
1495
+ transform-style: preserve-3d;
1496
+ overflow-y: initial;
1497
+ overflow-x: initial;
1498
+ perspective: 100rem;
1499
+ perspective-origin: center center;
1500
+ }
1501
+ .wy-overlays .wy-panel {
1502
+ background-color: var(--wy-background);
1503
+ }
1504
+ .wy-overlays .wy-panel:not(.wy-transition) {
1505
+ transform: translateZ(-4rem) !important;
1506
+ }
1507
+ .wy-overlays .wy-panel .wy-controls {
1508
+ position: absolute;
1509
+ border-bottom: none;
1510
+ flex-direction: row;
1511
+ transition: opacity 0.1s 0.2s step-end;
1512
+ }
1513
+ .wy-overlays .wy-panel .wy-controls .wy-icon {
1514
+ color: var(--wy-on-surface);
1515
+ }
1516
+ .wy-overlays .wy-panel.wy-loaded .wy-controls {
1517
+ pointer-events: none;
1518
+ opacity: 0;
1519
+ }
1520
+ .wy-overlays .wy-panel .wy-panel-frame {
1521
+ background-color: transparent;
1522
+ }
1523
+ @media (min-width: 768px) {
1524
+ .wy-overlays .wy-panel.wy-modal {
1525
+ left: auto;
1526
+ right: auto;
1527
+ top: 2rem;
1528
+ bottom: 3.2rem;
1529
+ margin-left: 4rem;
1530
+ margin-top: auto;
1531
+ margin-right: 4rem;
1532
+ margin-bottom: auto;
1533
+ border-radius: var(--wy-border-radius);
1534
+ box-shadow: var(--wy-shadow-level4);
1535
+ width: 32rem;
1536
+ max-height: 32rem;
1537
+ }
1538
+ .wy-overlays .wy-panel.wy-modal:not(.wy-scroll-y) {
1539
+ overflow: hidden;
1540
+ }
1541
+ }
1542
+ @media (min-width: 768px) {
1543
+ .wy-overlays .wy-panel.wy-modal-full {
1544
+ left: 1rem;
1545
+ top: 1rem;
1546
+ right: 1rem;
1547
+ bottom: 1rem;
1548
+ margin: 0;
1549
+ border-radius: var(--wy-border-radius);
1550
+ box-shadow: var(--wy-shadow-level4);
1551
+ width: auto;
1552
+ max-height: none;
1553
+ }
1554
+ .wy-overlays .wy-panel.wy-modal-full:not(.wy-scroll-y) {
1555
+ overflow: hidden;
1556
+ }
1557
+ }
1558
+ .wy-overlays .wy-panel.wy-loading .wy-controls {
1559
+ transition: opacity var(--wy-transition);
1560
+ opacity: 1;
1561
+ }
1562
+
1563
+ tr.wy-pager {
1564
+ pointer-events: none;
1565
+ }
1566
+
1567
+ :not(tr).wy-pager {
1568
+ display: block;
1569
+ text-align: center;
1570
+ margin: 1rem auto;
1571
+ }
1572
+
1573
+ tr.wy-pager td {
1574
+ text-align: center;
1575
+ border: 0;
1576
+ }
1577
+ tr.wy-pager td .wy-spinner {
1578
+ display: inline;
1579
+ margin: 1rem auto;
1580
+ }
1581
+
1582
+ .wy-grid .wy-pager {
1583
+ display: flex;
1584
+ }
1585
+
1586
+ .wy-pane {
1587
+ display: flex;
1588
+ flex-direction: column;
1589
+ position: relative;
1590
+ min-height: 0;
1591
+ height: 100%;
1592
+ flex: 1 1 auto;
1593
+ }
1594
+
1595
+ .wy-pane-body {
1596
+ display: flex;
1597
+ flex-direction: column;
1598
+ flex: 1;
1599
+ }
1600
+
1601
+ .wy-pane-group {
1602
+ padding: 0.75rem;
1603
+ }
1604
+
1605
+ .wy-pane-background {
1606
+ --wy-component-background-color: var(--wy-background);
1607
+ --wy-component-color: var(--wy-on-background);
1608
+ background-color: var(--wy-component-background-color);
1609
+ color: var(--wy-component-color);
1610
+ }
1611
+
1612
+ .wy-main {
1613
+ display: flex;
1614
+ height: calc(100vh - 3rem);
1615
+ }
1616
+ @media (max-width: 767.98px) {
1617
+ .wy-main {
1618
+ flex-direction: column;
1619
+ }
1620
+ }
1621
+
1622
+ .wy-preview {
1623
+ --wy-component-background-color: var(--wy-background);
1624
+ --wy-component-color: var(--wy-on-background);
1625
+ background-color: var(--wy-component-background-color);
1626
+ color: var(--wy-component-color);
1627
+ display: flex;
1628
+ flex-direction: column;
1629
+ align-items: center;
1630
+ justify-content: space-around;
1631
+ position: relative;
1632
+ flex: 1 1 100%;
1633
+ min-width: 16rem;
1634
+ min-height: 16rem;
1635
+ max-height: 100%;
1636
+ max-width: 100%;
1637
+ }
1638
+
1639
+ .wy-preview-area {
1640
+ min-width: 0;
1641
+ min-height: 0;
1642
+ width: 100%;
1643
+ height: 100%;
1644
+ flex: 1 1 auto;
1645
+ display: flex;
1646
+ flex-direction: column;
1647
+ }
1648
+
1649
+ .wy-nav-prev, .wy-nav-next {
1650
+ --wy-component-background-color: var(--wy-surface-variant);
1651
+ --wy-component-color: var(--wy-on-surface-variant);
1652
+ background-color: var(--wy-component-background-color);
1653
+ position: absolute;
1654
+ top: 50%;
1655
+ z-index: 1000;
1656
+ border-radius: 50%;
1657
+ }
1658
+
1659
+ .wy-nav-prev {
1660
+ left: 0.5rem;
1661
+ }
1662
+
1663
+ .wy-nav-next {
1664
+ right: 0.5rem;
1665
+ }
1666
+
1667
+ .wy-document {
1668
+ --wy-component-background-color: var(--wy-white);
1669
+ --wy-component-color: var(--wy-on-background);
1670
+ background-color: var(--wy-component-background-color);
1671
+ color: var(--wy-component-color);
1672
+ align-self: flex-start;
1673
+ padding: 2rem 3.5rem;
1674
+ width: 100%;
1675
+ min-height: 100%;
1676
+ flex: 1 0 auto;
1677
+ }
1678
+ @media (min-width: 768px) {
1679
+ .wy-document {
1680
+ padding: 3rem 4rem;
1681
+ margin: 2rem auto;
1682
+ border-radius: 0.125rem;
1683
+ box-shadow: var(--wy-shadow-level2);
1684
+ width: 120ch;
1685
+ min-height: 170ch;
1686
+ max-width: calc(100% - 3.5rem);
1687
+ }
1688
+ }
1689
+
1690
+ .wy-content-code {
1691
+ /*--wy-component-background-color: var(--wy-surface-1);
1692
+ --wy-component-color: var(--wy-on-surface);
1693
+
1694
+ background-color: var(--wy-component-background-color);
1695
+ color: var(--wy-component-color);
1696
+ */
1697
+ align-self: flex-start;
1698
+ width: 100%;
1699
+ padding: 2rem 3.5rem;
1700
+ }
1701
+
1702
+ .wy-content-iframe {
1703
+ border: 0;
1704
+ display: block;
1705
+ width: 100%;
1706
+ height: 100%;
1707
+ top: 0;
1708
+ left: 0;
1709
+ flex: 1 1 100%;
1710
+ }
1711
+ .wy-content-iframe.wy-loaded {
1712
+ --wy-component-background-color: var(--wy-surface-1);
1713
+ --wy-component-color: var(--wy-on-surface);
1714
+ background-color: var(--wy-component-background-color);
1715
+ color: var(--wy-component-color);
1716
+ }
1717
+ .wy-content-iframe.wy-loaded ~ .wy-content-iframe-fallback, .wy-content-iframe.wy-loaded ~ .wy-spinner {
1718
+ display: none;
1719
+ }
1720
+ .wy-content-iframe.wy-loading:not(.wy-loaded) {
1721
+ position: absolute;
1722
+ visibility: hidden;
1723
+ z-index: -1;
1724
+ pointer-events: none;
1725
+ }
1726
+ .wy-content-iframe.wy-loading:not(.wy-loaded):not(.wy-fallback) ~ .wy-content-iframe-fallback {
1727
+ display: none;
1728
+ }
1729
+ .wy-content-iframe.wy-loading:not(.wy-loaded).wy-fallback ~ .wy-spinner {
1730
+ display: none;
1731
+ }
1732
+ .wy-content-iframe ~ .wy-spinner {
1733
+ margin: auto;
1734
+ }
1735
+
1736
+ .wy-content-html pre, .wy-content-html code {
1737
+ word-break: break-word;
1738
+ white-space: pre-wrap;
1739
+ }
1740
+
1741
+ .wy-content-image {
1742
+ min-width: 0;
1743
+ display: flex;
1744
+ align-items: center;
1745
+ justify-content: center;
1746
+ position: relative;
1747
+ margin: auto;
1748
+ max-height: 100%;
1749
+ max-width: 100%;
1750
+ /*&.wy-intrinsic-image {
1751
+ object-fit: scale-down;
1752
+ }*/
1753
+ /*&:not(.wy-intrinsic-image) {
1754
+ transition: transform vars.$transition, transform-origin vars.$transition-duration step-end;
1755
+ //cursor: zoom-in;
1756
+ }*/
1757
+ transition: transform var(--wy-transition), transform-origin var(--wy-transition-duration) step-end;
1758
+ }
1759
+ .wy-content-image.wy-zoom {
1760
+ cursor: zoom-out;
1761
+ transition: transform var(--wy-transition), transform-origin var(--wy-transition-duration) step-start;
1762
+ }
1763
+ .wy-content-image img {
1764
+ min-width: 0;
1765
+ min-height: 0;
1766
+ width: 100%;
1767
+ height: 100%;
1768
+ }
1769
+ .wy-content-image img:not(.wy-loading-transition):not([data-controller~=image]) ~ .wy-spinner {
1770
+ display: none;
1771
+ }
1772
+ .wy-content-image img.wy-loading, .wy-content-image img[data-controller~=image] {
1773
+ transition: opacity 0.15s ease-out;
1774
+ opacity: 0;
1775
+ }
1776
+ .wy-content-image img.wy-loading.wy-loaded, .wy-content-image img[data-controller~=image].wy-loaded {
1777
+ opacity: 1;
1778
+ transition: opacity 0.15s ease-out;
1779
+ }
1780
+ .wy-content-image img.wy-loading.wy-loaded ~ img, .wy-content-image img[data-controller~=image].wy-loaded ~ img {
1781
+ transition-delay: 0.15s;
1782
+ opacity: 0;
1783
+ }
1784
+ .wy-content-image img.wy-loading.wy-loaded ~ .wy-spinner, .wy-content-image img[data-controller~=image].wy-loaded ~ .wy-spinner {
1785
+ display: none;
1786
+ }
1787
+ .wy-content-image img.wy-responsive-image-thumb {
1788
+ position: absolute;
1789
+ z-index: -1;
1790
+ }
1791
+ .wy-content-image img ~ .wy-spinner {
1792
+ position: absolute;
1793
+ }
1794
+
1795
+ .wy-content-video:not(.wy-error) {
1796
+ min-height: 0;
1797
+ max-width: 100%;
1798
+ max-height: 100%;
1799
+ flex: 1 1 auto;
1800
+ }
1801
+
1802
+ .wy-content-video, .wy-content-audio {
1803
+ margin: auto;
1804
+ }
1805
+ .wy-content-video.wy-loading:not(.wy-loaded), .wy-content-video[data-controller~=media]:not(.wy-loaded), .wy-content-audio.wy-loading:not(.wy-loaded), .wy-content-audio[data-controller~=media]:not(.wy-loaded) {
1806
+ visibility: hidden;
1807
+ }
1808
+ .wy-content-video.wy-loading.wy-loaded ~ .wy-spinner, .wy-content-video[data-controller~=media].wy-loaded ~ .wy-spinner, .wy-content-audio.wy-loading.wy-loaded ~ .wy-spinner, .wy-content-audio[data-controller~=media].wy-loaded ~ .wy-spinner {
1809
+ display: none;
1810
+ }
1811
+ .wy-content-video:focus, .wy-content-audio:focus {
1812
+ outline: none;
1813
+ }
1814
+
1815
+ :root {
1816
+ --annotation-unfocused-field-background: url("data:image/svg+xml;charset=UTF-8,<svg width='1px' height='1px' xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='100%' style='fill:rgba(0, 54, 255, 0.13);'/></svg>");
1817
+ --input-focus-border-color: Highlight;
1818
+ --input-focus-outline: 1px solid Canvas;
1819
+ --input-unfocused-border-color: transparent;
1820
+ --input-disabled-border-color: transparent;
1821
+ --input-hover-border-color: black;
1822
+ }
1823
+
1824
+ @media (forced-colors: active) {
1825
+ :root {
1826
+ --input-focus-border-color: CanvasText;
1827
+ --input-unfocused-border-color: ActiveText;
1828
+ --input-disabled-border-color: GrayText;
1829
+ --input-hover-border-color: Highlight;
1830
+ }
1831
+ }
1832
+ :root {
1833
+ --xfa-unfocused-field-background: url("data:image/svg+xml;charset=UTF-8,<svg width='1px' height='1px' xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='100%' style='fill:rgba(0, 54, 255, 0.13);'/></svg>");
1834
+ --xfa-focus-outline: auto;
1835
+ }
1836
+
1837
+ @media (forced-colors: active) {
1838
+ :root {
1839
+ --xfa-focus-outline: 2px solid CanvasText;
1840
+ }
1841
+ }
1842
+ :root {
1843
+ --focus-outline: solid 2px blue;
1844
+ --hover-outline: dashed 2px blue;
1845
+ --freetext-line-height: 1.35;
1846
+ --freetext-padding: 2px;
1847
+ --editorFreeText-editing-cursor: text;
1848
+ --editorInk-editing-cursor: pointer;
1849
+ }
1850
+
1851
+ @media (forced-colors: active) {
1852
+ :root {
1853
+ --focus-outline: solid 3px ButtonText;
1854
+ --hover-outline: dashed 3px ButtonText;
1855
+ }
1856
+ }
1857
+ :root {
1858
+ --viewer-container-height: 0;
1859
+ --pdfViewer-padding-bottom: 0;
1860
+ --page-margin: 2rem auto;
1861
+ --page-border: none;
1862
+ --page-border-image: none;
1863
+ --spreadHorizontalWrapped-margin-LR: -3.5px;
1864
+ --scale-factor: 1;
1865
+ }
1866
+
1867
+ @media screen and (forced-colors: active) {
1868
+ :root {
1869
+ --page-border: 1px solid CanvasText;
1870
+ --page-border-image: none;
1871
+ --spreadHorizontalWrapped-margin-LR: 3.5px;
1872
+ }
1873
+ }
1874
+ .wy-content-pdf {
1875
+ /* Copyright 2014 Mozilla Foundation
1876
+ *
1877
+ * Licensed under the Apache License, Version 2.0 (the "License");
1878
+ * you may not use this file except in compliance with the License.
1879
+ * You may obtain a copy of the License at
1880
+ *
1881
+ * http://www.apache.org/licenses/LICENSE-2.0
1882
+ *
1883
+ * Unless required by applicable law or agreed to in writing, software
1884
+ * distributed under the License is distributed on an "AS IS" BASIS,
1885
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1886
+ * See the License for the specific language governing permissions and
1887
+ * limitations under the License.
1888
+ */
1889
+ /* Only necessary in Google Chrome, see issue 14205, and most unfortunately
1890
+ * the problem doesn't show up in "text" reference tests. */
1891
+ /* Avoids https://github.com/mozilla/pdf.js/issues/13840 in Chrome */
1892
+ }
1893
+ .wy-content-pdf .wy-input[data-pdf-target=pageNumber] {
1894
+ width: 3rem;
1895
+ }
1896
+ .wy-content-pdf .wy-input[data-pdf-target=zoomLevel] {
1897
+ width: 5rem;
1898
+ }
1899
+ .wy-content-pdf .wy-pdf-container {
1900
+ position: absolute;
1901
+ width: 100%;
1902
+ height: 100%;
1903
+ bottom: 0;
1904
+ left: 0;
1905
+ overflow-y: auto;
1906
+ touch-action: pan-y, pan-x;
1907
+ will-change: scroll-position, opacity;
1908
+ backface-visibility: hidden;
1909
+ max-height: 100%;
1910
+ overflow-x: auto;
1911
+ touch-action: pan-y, pan-x;
1912
+ will-change: scroll-position, opacity;
1913
+ backface-visibility: hidden;
1914
+ max-width: 100%;
1915
+ }
1916
+ .wy-content-pdf .wy-pdf-container:not(body) {
1917
+ -webkit-overflow-scrolling: touch;
1918
+ }
1919
+ .wy-scrollbars .wy-content-pdf .wy-pdf-container {
1920
+ scrollbar-width: thin;
1921
+ scrollbar-color: var(--wy-outline) transparent;
1922
+ }
1923
+ .wy-scrollbars .wy-content-pdf .wy-pdf-container::-webkit-scrollbar {
1924
+ height: 0.625rem;
1925
+ width: 0.625rem;
1926
+ background: transparent;
1927
+ z-index: 999;
1928
+ }
1929
+ .wy-scrollbars .wy-content-pdf .wy-pdf-container::-webkit-scrollbar-track {
1930
+ background: transparent;
1931
+ }
1932
+ .wy-scrollbars .wy-content-pdf .wy-pdf-container::-webkit-scrollbar-thumb {
1933
+ background-color: var(--wy-outline);
1934
+ border: 0.125rem solid transparent;
1935
+ border-radius: 0.5rem;
1936
+ background-clip: padding-box;
1937
+ opacity: 75%;
1938
+ }
1939
+ .wy-scrollbars .wy-content-pdf .wy-pdf-container::-webkit-scrollbar-thumb:hover {
1940
+ background-color: var(--wy-outline-variant);
1941
+ opacity: 75%;
1942
+ }
1943
+ .wy-scrollbars .wy-content-pdf .wy-pdf-container::-webkit-scrollbar-thumb:window-inactive {
1944
+ background-color: var(--wy-outline);
1945
+ opacity: 50%;
1946
+ }
1947
+ @supports (overflow-y: overlay) {
1948
+ .wy-scrollbars .wy-content-pdf .wy-pdf-container {
1949
+ overflow-y: overlay;
1950
+ }
1951
+ }
1952
+ .wy-content-pdf .textLayer {
1953
+ position: absolute;
1954
+ text-align: initial;
1955
+ left: 0;
1956
+ top: 0;
1957
+ right: 0;
1958
+ bottom: 0;
1959
+ overflow: hidden;
1960
+ opacity: 0.25;
1961
+ line-height: 1;
1962
+ -webkit-text-size-adjust: none;
1963
+ -moz-text-size-adjust: none;
1964
+ text-size-adjust: none;
1965
+ forced-color-adjust: none;
1966
+ }
1967
+ .wy-content-pdf .textLayer span,
1968
+ .wy-content-pdf .textLayer br {
1969
+ color: transparent;
1970
+ position: absolute;
1971
+ white-space: pre;
1972
+ cursor: text;
1973
+ transform-origin: 0% 0%;
1974
+ }
1975
+ .wy-content-pdf .textLayer span.markedContent {
1976
+ top: 0;
1977
+ height: 0;
1978
+ }
1979
+ .wy-content-pdf .textLayer .highlight {
1980
+ margin: -1px;
1981
+ padding: 1px;
1982
+ background-color: rgb(180, 0, 170);
1983
+ border-radius: 4px;
1984
+ }
1985
+ .wy-content-pdf .textLayer .highlight.appended {
1986
+ position: initial;
1987
+ }
1988
+ .wy-content-pdf .textLayer .highlight.begin {
1989
+ border-radius: 4px 0 0 4px;
1990
+ }
1991
+ .wy-content-pdf .textLayer .highlight.end {
1992
+ border-radius: 0 4px 4px 0;
1993
+ }
1994
+ .wy-content-pdf .textLayer .highlight.middle {
1995
+ border-radius: 0;
1996
+ }
1997
+ .wy-content-pdf .textLayer .highlight.selected {
1998
+ background-color: rgb(0, 100, 0);
1999
+ }
2000
+ .wy-content-pdf .textLayer ::-moz-selection {
2001
+ background: blue;
2002
+ background: AccentColor;
2003
+ }
2004
+ .wy-content-pdf .textLayer ::selection {
2005
+ background: blue;
2006
+ background: AccentColor;
2007
+ }
2008
+ .wy-content-pdf .textLayer br::-moz-selection {
2009
+ background: transparent;
2010
+ }
2011
+ .wy-content-pdf .textLayer br::selection {
2012
+ background: transparent;
2013
+ }
2014
+ .wy-content-pdf .textLayer .endOfContent {
2015
+ display: block;
2016
+ position: absolute;
2017
+ left: 0;
2018
+ top: 100%;
2019
+ right: 0;
2020
+ bottom: 0;
2021
+ z-index: -1;
2022
+ cursor: default;
2023
+ -webkit-user-select: none;
2024
+ -moz-user-select: none;
2025
+ user-select: none;
2026
+ }
2027
+ .wy-content-pdf .textLayer .endOfContent.active {
2028
+ top: 0;
2029
+ }
2030
+ @media (forced-colors: active) {
2031
+ .wy-content-pdf .annotationLayer .textWidgetAnnotation input:required,
2032
+ .wy-content-pdf .annotationLayer .textWidgetAnnotation textarea:required,
2033
+ .wy-content-pdf .annotationLayer .choiceWidgetAnnotation select:required,
2034
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.checkBox input:required,
2035
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.radioButton input:required {
2036
+ outline: 1.5px solid selectedItem;
2037
+ }
2038
+ }
2039
+ .wy-content-pdf .annotationLayer {
2040
+ position: absolute;
2041
+ top: 0;
2042
+ left: 0;
2043
+ pointer-events: none;
2044
+ transform-origin: 0 0;
2045
+ }
2046
+ .wy-content-pdf .annotationLayer section {
2047
+ position: absolute;
2048
+ text-align: initial;
2049
+ pointer-events: auto;
2050
+ box-sizing: border-box;
2051
+ transform-origin: 0 0;
2052
+ }
2053
+ .wy-content-pdf .annotationLayer .linkAnnotation > a,
2054
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.pushButton > a {
2055
+ position: absolute;
2056
+ font-size: 1em;
2057
+ top: 0;
2058
+ left: 0;
2059
+ width: 100%;
2060
+ height: 100%;
2061
+ }
2062
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.pushButton > canvas {
2063
+ width: 100%;
2064
+ height: 100%;
2065
+ }
2066
+ .wy-content-pdf .annotationLayer .linkAnnotation > a:hover,
2067
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.pushButton > a:hover {
2068
+ opacity: 0.2;
2069
+ background: rgb(255, 255, 0);
2070
+ box-shadow: 0 2px 10px rgb(255, 255, 0);
2071
+ }
2072
+ .wy-content-pdf .annotationLayer .textAnnotation img {
2073
+ position: absolute;
2074
+ cursor: pointer;
2075
+ width: 100%;
2076
+ height: 100%;
2077
+ }
2078
+ .wy-content-pdf .annotationLayer .textWidgetAnnotation input,
2079
+ .wy-content-pdf .annotationLayer .textWidgetAnnotation textarea,
2080
+ .wy-content-pdf .annotationLayer .choiceWidgetAnnotation select,
2081
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.checkBox input,
2082
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.radioButton input {
2083
+ background-image: var(--annotation-unfocused-field-background);
2084
+ border: 2px solid var(--input-unfocused-border-color);
2085
+ box-sizing: border-box;
2086
+ font: calc(9px * var(--scale-factor)) sans-serif;
2087
+ height: 100%;
2088
+ margin: 0;
2089
+ vertical-align: top;
2090
+ width: 100%;
2091
+ }
2092
+ .wy-content-pdf .annotationLayer .textWidgetAnnotation input:required,
2093
+ .wy-content-pdf .annotationLayer .textWidgetAnnotation textarea:required,
2094
+ .wy-content-pdf .annotationLayer .choiceWidgetAnnotation select:required,
2095
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.checkBox input:required,
2096
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.radioButton input:required {
2097
+ outline: 1.5px solid red;
2098
+ }
2099
+ .wy-content-pdf .annotationLayer .choiceWidgetAnnotation select option {
2100
+ padding: 0;
2101
+ }
2102
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.radioButton input {
2103
+ border-radius: 50%;
2104
+ }
2105
+ .wy-content-pdf .annotationLayer .textWidgetAnnotation textarea {
2106
+ resize: none;
2107
+ }
2108
+ .wy-content-pdf .annotationLayer .textWidgetAnnotation input[disabled],
2109
+ .wy-content-pdf .annotationLayer .textWidgetAnnotation textarea[disabled],
2110
+ .wy-content-pdf .annotationLayer .choiceWidgetAnnotation select[disabled],
2111
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.checkBox input[disabled],
2112
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.radioButton input[disabled] {
2113
+ background: none;
2114
+ border: 2px solid var(--input-disabled-border-color);
2115
+ cursor: not-allowed;
2116
+ }
2117
+ .wy-content-pdf .annotationLayer .textWidgetAnnotation input:hover,
2118
+ .wy-content-pdf .annotationLayer .textWidgetAnnotation textarea:hover,
2119
+ .wy-content-pdf .annotationLayer .choiceWidgetAnnotation select:hover,
2120
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.checkBox input:hover,
2121
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.radioButton input:hover {
2122
+ border: 2px solid var(--input-hover-border-color);
2123
+ }
2124
+ .wy-content-pdf .annotationLayer .textWidgetAnnotation input:hover,
2125
+ .wy-content-pdf .annotationLayer .textWidgetAnnotation textarea:hover,
2126
+ .wy-content-pdf .annotationLayer .choiceWidgetAnnotation select:hover,
2127
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.checkBox input:hover {
2128
+ border-radius: 2px;
2129
+ }
2130
+ .wy-content-pdf .annotationLayer .textWidgetAnnotation input:focus,
2131
+ .wy-content-pdf .annotationLayer .textWidgetAnnotation textarea:focus,
2132
+ .wy-content-pdf .annotationLayer .choiceWidgetAnnotation select:focus {
2133
+ background: none;
2134
+ border: 2px solid var(--input-focus-border-color);
2135
+ border-radius: 2px;
2136
+ outline: var(--input-focus-outline);
2137
+ }
2138
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.checkBox :focus,
2139
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.radioButton :focus {
2140
+ background-image: none;
2141
+ background-color: transparent;
2142
+ }
2143
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.checkBox :focus {
2144
+ border: 2px solid var(--input-focus-border-color);
2145
+ border-radius: 2px;
2146
+ outline: var(--input-focus-outline);
2147
+ }
2148
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.radioButton :focus {
2149
+ border: 2px solid var(--input-focus-border-color);
2150
+ outline: var(--input-focus-outline);
2151
+ }
2152
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before,
2153
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after,
2154
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.radioButton input:checked:before {
2155
+ background-color: CanvasText;
2156
+ content: "";
2157
+ display: block;
2158
+ position: absolute;
2159
+ }
2160
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before,
2161
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after {
2162
+ height: 80%;
2163
+ left: 45%;
2164
+ width: 1px;
2165
+ }
2166
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before {
2167
+ transform: rotate(45deg);
2168
+ }
2169
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after {
2170
+ transform: rotate(-45deg);
2171
+ }
2172
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.radioButton input:checked:before {
2173
+ border-radius: 50%;
2174
+ height: 50%;
2175
+ left: 30%;
2176
+ top: 20%;
2177
+ width: 50%;
2178
+ }
2179
+ .wy-content-pdf .annotationLayer .textWidgetAnnotation input.comb {
2180
+ font-family: monospace;
2181
+ padding-left: 2px;
2182
+ padding-right: 0;
2183
+ }
2184
+ .wy-content-pdf .annotationLayer .textWidgetAnnotation input.comb:focus {
2185
+ /*
2186
+ * Letter spacing is placed on the right side of each character. Hence, the
2187
+ * letter spacing of the last character may be placed outside the visible
2188
+ * area, causing horizontal scrolling. We avoid this by extending the width
2189
+ * when the element has focus and revert this when it loses focus.
2190
+ */
2191
+ width: 103%;
2192
+ }
2193
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.checkBox input,
2194
+ .wy-content-pdf .annotationLayer .buttonWidgetAnnotation.radioButton input {
2195
+ -webkit-appearance: none;
2196
+ -moz-appearance: none;
2197
+ appearance: none;
2198
+ }
2199
+ .wy-content-pdf .annotationLayer .popupTriggerArea {
2200
+ height: 100%;
2201
+ width: 100%;
2202
+ }
2203
+ .wy-content-pdf .annotationLayer .popupWrapper {
2204
+ position: absolute;
2205
+ font-size: calc(9px * var(--scale-factor));
2206
+ width: 100%;
2207
+ min-width: calc(180px * var(--scale-factor));
2208
+ pointer-events: none;
2209
+ }
2210
+ .wy-content-pdf .annotationLayer .popup {
2211
+ position: absolute;
2212
+ max-width: calc(180px * var(--scale-factor));
2213
+ background-color: rgb(255, 255, 153);
2214
+ box-shadow: 0 calc(2px * var(--scale-factor)) calc(5px * var(--scale-factor)) rgb(136, 136, 136);
2215
+ border-radius: calc(2px * var(--scale-factor));
2216
+ padding: calc(6px * var(--scale-factor));
2217
+ margin-left: calc(5px * var(--scale-factor));
2218
+ cursor: pointer;
2219
+ font: message-box;
2220
+ white-space: normal;
2221
+ word-wrap: break-word;
2222
+ pointer-events: auto;
2223
+ }
2224
+ .wy-content-pdf .annotationLayer .popup > * {
2225
+ font-size: calc(9px * var(--scale-factor));
2226
+ }
2227
+ .wy-content-pdf .annotationLayer .popup h1 {
2228
+ display: inline-block;
2229
+ }
2230
+ .wy-content-pdf .annotationLayer .popupDate {
2231
+ display: inline-block;
2232
+ margin-left: calc(5px * var(--scale-factor));
2233
+ }
2234
+ .wy-content-pdf .annotationLayer .popupContent {
2235
+ border-top: 1px solid rgb(51, 51, 51);
2236
+ margin-top: calc(2px * var(--scale-factor));
2237
+ padding-top: calc(2px * var(--scale-factor));
2238
+ }
2239
+ .wy-content-pdf .annotationLayer .richText > * {
2240
+ white-space: pre-wrap;
2241
+ font-size: calc(9px * var(--scale-factor));
2242
+ }
2243
+ .wy-content-pdf .annotationLayer .highlightAnnotation,
2244
+ .wy-content-pdf .annotationLayer .underlineAnnotation,
2245
+ .wy-content-pdf .annotationLayer .squigglyAnnotation,
2246
+ .wy-content-pdf .annotationLayer .strikeoutAnnotation,
2247
+ .wy-content-pdf .annotationLayer .freeTextAnnotation,
2248
+ .wy-content-pdf .annotationLayer .lineAnnotation svg line,
2249
+ .wy-content-pdf .annotationLayer .squareAnnotation svg rect,
2250
+ .wy-content-pdf .annotationLayer .circleAnnotation svg ellipse,
2251
+ .wy-content-pdf .annotationLayer .polylineAnnotation svg polyline,
2252
+ .wy-content-pdf .annotationLayer .polygonAnnotation svg polygon,
2253
+ .wy-content-pdf .annotationLayer .caretAnnotation,
2254
+ .wy-content-pdf .annotationLayer .inkAnnotation svg polyline,
2255
+ .wy-content-pdf .annotationLayer .stampAnnotation,
2256
+ .wy-content-pdf .annotationLayer .fileAttachmentAnnotation {
2257
+ cursor: pointer;
2258
+ }
2259
+ .wy-content-pdf .annotationLayer section svg {
2260
+ position: absolute;
2261
+ width: 100%;
2262
+ height: 100%;
2263
+ }
2264
+ .wy-content-pdf .annotationLayer .annotationTextContent {
2265
+ position: absolute;
2266
+ width: 100%;
2267
+ height: 100%;
2268
+ opacity: 0;
2269
+ color: transparent;
2270
+ -webkit-user-select: none;
2271
+ -moz-user-select: none;
2272
+ user-select: none;
2273
+ pointer-events: none;
2274
+ }
2275
+ .wy-content-pdf .annotationLayer .annotationTextContent span {
2276
+ width: 100%;
2277
+ display: inline-block;
2278
+ }
2279
+ @media (forced-colors: active) {
2280
+ .wy-content-pdf .xfaLayer *:required {
2281
+ outline: 1.5px solid selectedItem;
2282
+ }
2283
+ }
2284
+ .wy-content-pdf .xfaLayer {
2285
+ background-color: transparent;
2286
+ }
2287
+ .wy-content-pdf .xfaLayer .highlight {
2288
+ margin: -1px;
2289
+ padding: 1px;
2290
+ background-color: rgb(239, 203, 237);
2291
+ border-radius: 4px;
2292
+ }
2293
+ .wy-content-pdf .xfaLayer .highlight.appended {
2294
+ position: initial;
2295
+ }
2296
+ .wy-content-pdf .xfaLayer .highlight.begin {
2297
+ border-radius: 4px 0 0 4px;
2298
+ }
2299
+ .wy-content-pdf .xfaLayer .highlight.end {
2300
+ border-radius: 0 4px 4px 0;
2301
+ }
2302
+ .wy-content-pdf .xfaLayer .highlight.middle {
2303
+ border-radius: 0;
2304
+ }
2305
+ .wy-content-pdf .xfaLayer .highlight.selected {
2306
+ background-color: rgb(203, 223, 203);
2307
+ }
2308
+ .wy-content-pdf .xfaPage {
2309
+ overflow: hidden;
2310
+ position: relative;
2311
+ }
2312
+ .wy-content-pdf .xfaContentarea {
2313
+ position: absolute;
2314
+ }
2315
+ .wy-content-pdf .xfaPrintOnly {
2316
+ display: none;
2317
+ }
2318
+ .wy-content-pdf .xfaLayer {
2319
+ position: absolute;
2320
+ text-align: initial;
2321
+ top: 0;
2322
+ left: 0;
2323
+ transform-origin: 0 0;
2324
+ line-height: 1.2;
2325
+ }
2326
+ .wy-content-pdf .xfaLayer * {
2327
+ color: inherit;
2328
+ font: inherit;
2329
+ font-style: inherit;
2330
+ font-weight: inherit;
2331
+ font-kerning: inherit;
2332
+ letter-spacing: -0.01px;
2333
+ text-align: inherit;
2334
+ text-decoration: inherit;
2335
+ box-sizing: border-box;
2336
+ background-color: transparent;
2337
+ padding: 0;
2338
+ margin: 0;
2339
+ pointer-events: auto;
2340
+ line-height: inherit;
2341
+ }
2342
+ .wy-content-pdf .xfaLayer *:required {
2343
+ outline: 1.5px solid red;
2344
+ }
2345
+ .wy-content-pdf .xfaLayer div {
2346
+ pointer-events: none;
2347
+ }
2348
+ .wy-content-pdf .xfaLayer svg {
2349
+ pointer-events: none;
2350
+ }
2351
+ .wy-content-pdf .xfaLayer svg * {
2352
+ pointer-events: none;
2353
+ }
2354
+ .wy-content-pdf .xfaLayer a {
2355
+ color: blue;
2356
+ }
2357
+ .wy-content-pdf .xfaRich li {
2358
+ margin-left: 3em;
2359
+ }
2360
+ .wy-content-pdf .xfaFont {
2361
+ color: black;
2362
+ font-weight: normal;
2363
+ font-kerning: none;
2364
+ font-size: 10px;
2365
+ font-style: normal;
2366
+ letter-spacing: 0;
2367
+ text-decoration: none;
2368
+ vertical-align: 0;
2369
+ }
2370
+ .wy-content-pdf .xfaCaption {
2371
+ overflow: hidden;
2372
+ flex: 0 0 auto;
2373
+ }
2374
+ .wy-content-pdf .xfaCaptionForCheckButton {
2375
+ overflow: hidden;
2376
+ flex: 1 1 auto;
2377
+ }
2378
+ .wy-content-pdf .xfaLabel {
2379
+ height: 100%;
2380
+ width: 100%;
2381
+ }
2382
+ .wy-content-pdf .xfaLeft {
2383
+ display: flex;
2384
+ flex-direction: row;
2385
+ align-items: center;
2386
+ }
2387
+ .wy-content-pdf .xfaRight {
2388
+ display: flex;
2389
+ flex-direction: row-reverse;
2390
+ align-items: center;
2391
+ }
2392
+ .wy-content-pdf .xfaLeft > .xfaCaption,
2393
+ .wy-content-pdf .xfaLeft > .xfaCaptionForCheckButton,
2394
+ .wy-content-pdf .xfaRight > .xfaCaption,
2395
+ .wy-content-pdf .xfaRight > .xfaCaptionForCheckButton {
2396
+ max-height: 100%;
2397
+ }
2398
+ .wy-content-pdf .xfaTop {
2399
+ display: flex;
2400
+ flex-direction: column;
2401
+ align-items: flex-start;
2402
+ }
2403
+ .wy-content-pdf .xfaBottom {
2404
+ display: flex;
2405
+ flex-direction: column-reverse;
2406
+ align-items: flex-start;
2407
+ }
2408
+ .wy-content-pdf .xfaTop > .xfaCaption,
2409
+ .wy-content-pdf .xfaTop > .xfaCaptionForCheckButton,
2410
+ .wy-content-pdf .xfaBottom > .xfaCaption,
2411
+ .wy-content-pdf .xfaBottom > .xfaCaptionForCheckButton {
2412
+ width: 100%;
2413
+ }
2414
+ .wy-content-pdf .xfaBorder {
2415
+ background-color: transparent;
2416
+ position: absolute;
2417
+ pointer-events: none;
2418
+ }
2419
+ .wy-content-pdf .xfaWrapped {
2420
+ width: 100%;
2421
+ height: 100%;
2422
+ }
2423
+ .wy-content-pdf .xfaTextfield:focus,
2424
+ .wy-content-pdf .xfaSelect:focus {
2425
+ background-image: none;
2426
+ background-color: transparent;
2427
+ outline: var(--xfa-focus-outline);
2428
+ outline-offset: -1px;
2429
+ }
2430
+ .wy-content-pdf .xfaCheckbox:focus,
2431
+ .wy-content-pdf .xfaRadio:focus {
2432
+ outline: var(--xfa-focus-outline);
2433
+ }
2434
+ .wy-content-pdf .xfaTextfield,
2435
+ .wy-content-pdf .xfaSelect {
2436
+ height: 100%;
2437
+ width: 100%;
2438
+ flex: 1 1 auto;
2439
+ border: none;
2440
+ resize: none;
2441
+ background-image: var(--xfa-unfocused-field-background);
2442
+ }
2443
+ .wy-content-pdf .xfaSelect {
2444
+ padding-left: 2px;
2445
+ padding-right: 2px;
2446
+ padding-inline: 2px;
2447
+ }
2448
+ .wy-content-pdf .xfaTop > .xfaTextfield,
2449
+ .wy-content-pdf .xfaTop > .xfaSelect,
2450
+ .wy-content-pdf .xfaBottom > .xfaTextfield,
2451
+ .wy-content-pdf .xfaBottom > .xfaSelect {
2452
+ flex: 0 1 auto;
2453
+ }
2454
+ .wy-content-pdf .xfaButton {
2455
+ cursor: pointer;
2456
+ width: 100%;
2457
+ height: 100%;
2458
+ border: none;
2459
+ text-align: center;
2460
+ }
2461
+ .wy-content-pdf .xfaLink {
2462
+ width: 100%;
2463
+ height: 100%;
2464
+ position: absolute;
2465
+ top: 0;
2466
+ left: 0;
2467
+ }
2468
+ .wy-content-pdf .xfaCheckbox,
2469
+ .wy-content-pdf .xfaRadio {
2470
+ width: 100%;
2471
+ height: 100%;
2472
+ flex: 0 0 auto;
2473
+ border: none;
2474
+ }
2475
+ .wy-content-pdf .xfaRich {
2476
+ white-space: pre-wrap;
2477
+ width: 100%;
2478
+ height: 100%;
2479
+ }
2480
+ .wy-content-pdf .xfaImage {
2481
+ -o-object-position: left top;
2482
+ object-position: left top;
2483
+ -o-object-fit: contain;
2484
+ object-fit: contain;
2485
+ width: 100%;
2486
+ height: 100%;
2487
+ }
2488
+ .wy-content-pdf .xfaLrTb,
2489
+ .wy-content-pdf .xfaRlTb,
2490
+ .wy-content-pdf .xfaTb {
2491
+ display: flex;
2492
+ flex-direction: column;
2493
+ align-items: stretch;
2494
+ }
2495
+ .wy-content-pdf .xfaLr {
2496
+ display: flex;
2497
+ flex-direction: row;
2498
+ align-items: stretch;
2499
+ }
2500
+ .wy-content-pdf .xfaRl {
2501
+ display: flex;
2502
+ flex-direction: row-reverse;
2503
+ align-items: stretch;
2504
+ }
2505
+ .wy-content-pdf .xfaTb > div {
2506
+ justify-content: left;
2507
+ }
2508
+ .wy-content-pdf .xfaPosition {
2509
+ position: relative;
2510
+ }
2511
+ .wy-content-pdf .xfaArea {
2512
+ position: relative;
2513
+ }
2514
+ .wy-content-pdf .xfaValignMiddle {
2515
+ display: flex;
2516
+ align-items: center;
2517
+ }
2518
+ .wy-content-pdf .xfaTable {
2519
+ display: flex;
2520
+ flex-direction: column;
2521
+ align-items: stretch;
2522
+ }
2523
+ .wy-content-pdf .xfaTable .xfaRow {
2524
+ display: flex;
2525
+ flex-direction: row;
2526
+ align-items: stretch;
2527
+ }
2528
+ .wy-content-pdf .xfaTable .xfaRlRow {
2529
+ display: flex;
2530
+ flex-direction: row-reverse;
2531
+ align-items: stretch;
2532
+ flex: 1;
2533
+ }
2534
+ .wy-content-pdf .xfaTable .xfaRlRow > div {
2535
+ flex: 1;
2536
+ }
2537
+ .wy-content-pdf .xfaNonInteractive input,
2538
+ .wy-content-pdf .xfaNonInteractive textarea,
2539
+ .wy-content-pdf .xfaDisabled input,
2540
+ .wy-content-pdf .xfaDisabled textarea,
2541
+ .wy-content-pdf .xfaReadOnly input,
2542
+ .wy-content-pdf .xfaReadOnly textarea {
2543
+ background: initial;
2544
+ }
2545
+ @media print {
2546
+ .wy-content-pdf .xfaTextfield,
2547
+ .wy-content-pdf .xfaSelect {
2548
+ background: transparent;
2549
+ }
2550
+ .wy-content-pdf .xfaSelect {
2551
+ -webkit-appearance: none;
2552
+ -moz-appearance: none;
2553
+ appearance: none;
2554
+ text-indent: 1px;
2555
+ text-overflow: "";
2556
+ }
2557
+ }
2558
+ .wy-content-pdf [data-editor-rotation="90"] {
2559
+ transform: rotate(90deg);
2560
+ }
2561
+ .wy-content-pdf [data-editor-rotation="180"] {
2562
+ transform: rotate(180deg);
2563
+ }
2564
+ .wy-content-pdf [data-editor-rotation="270"] {
2565
+ transform: rotate(270deg);
2566
+ }
2567
+ .wy-content-pdf .annotationEditorLayer {
2568
+ background: transparent;
2569
+ position: absolute;
2570
+ top: 0;
2571
+ left: 0;
2572
+ font-size: calc(100px * var(--scale-factor));
2573
+ transform-origin: 0 0;
2574
+ cursor: auto;
2575
+ z-index: 20000;
2576
+ }
2577
+ .wy-content-pdf .annotationEditorLayer.freeTextEditing {
2578
+ cursor: var(--editorFreeText-editing-cursor);
2579
+ }
2580
+ .wy-content-pdf .annotationEditorLayer.inkEditing {
2581
+ cursor: var(--editorInk-editing-cursor);
2582
+ }
2583
+ .wy-content-pdf .annotationEditorLayer .selectedEditor {
2584
+ outline: var(--focus-outline);
2585
+ resize: none;
2586
+ }
2587
+ .wy-content-pdf .annotationEditorLayer .freeTextEditor {
2588
+ position: absolute;
2589
+ background: transparent;
2590
+ border-radius: 3px;
2591
+ padding: calc(var(--freetext-padding) * var(--scale-factor));
2592
+ resize: none;
2593
+ width: auto;
2594
+ height: auto;
2595
+ z-index: 1;
2596
+ transform-origin: 0 0;
2597
+ touch-action: none;
2598
+ cursor: auto;
2599
+ }
2600
+ .wy-content-pdf .annotationEditorLayer .freeTextEditor .internal {
2601
+ background: transparent;
2602
+ border: none;
2603
+ top: 0;
2604
+ left: 0;
2605
+ overflow: visible;
2606
+ white-space: nowrap;
2607
+ resize: none;
2608
+ font: 10px sans-serif;
2609
+ line-height: var(--freetext-line-height);
2610
+ }
2611
+ .wy-content-pdf .annotationEditorLayer .freeTextEditor .overlay {
2612
+ position: absolute;
2613
+ display: none;
2614
+ background: transparent;
2615
+ top: 0;
2616
+ left: 0;
2617
+ width: 100%;
2618
+ height: 100%;
2619
+ }
2620
+ .wy-content-pdf .annotationEditorLayer .freeTextEditor .overlay.enabled {
2621
+ display: block;
2622
+ }
2623
+ .wy-content-pdf .annotationEditorLayer .freeTextEditor .internal:empty::before {
2624
+ content: attr(default-content);
2625
+ color: gray;
2626
+ }
2627
+ .wy-content-pdf .annotationEditorLayer .freeTextEditor .internal:focus {
2628
+ outline: none;
2629
+ }
2630
+ .wy-content-pdf .annotationEditorLayer .inkEditor.disabled {
2631
+ resize: none;
2632
+ }
2633
+ .wy-content-pdf .annotationEditorLayer .inkEditor.disabled.selectedEditor {
2634
+ resize: horizontal;
2635
+ }
2636
+ .wy-content-pdf .annotationEditorLayer .freeTextEditor:hover:not(.selectedEditor),
2637
+ .wy-content-pdf .annotationEditorLayer .inkEditor:hover:not(.selectedEditor) {
2638
+ outline: var(--hover-outline);
2639
+ }
2640
+ .wy-content-pdf .annotationEditorLayer .inkEditor {
2641
+ position: absolute;
2642
+ background: transparent;
2643
+ border-radius: 3px;
2644
+ overflow: auto;
2645
+ width: 100%;
2646
+ height: 100%;
2647
+ z-index: 1;
2648
+ transform-origin: 0 0;
2649
+ cursor: auto;
2650
+ }
2651
+ .wy-content-pdf .annotationEditorLayer .inkEditor.editing {
2652
+ resize: none;
2653
+ cursor: inherit;
2654
+ }
2655
+ .wy-content-pdf .annotationEditorLayer .inkEditor .inkEditorCanvas {
2656
+ position: absolute;
2657
+ top: 0;
2658
+ left: 0;
2659
+ width: 100%;
2660
+ height: 100%;
2661
+ touch-action: none;
2662
+ }
2663
+ .wy-content-pdf [data-main-rotation="90"] {
2664
+ transform: rotate(90deg) translateY(-100%);
2665
+ }
2666
+ .wy-content-pdf [data-main-rotation="180"] {
2667
+ transform: rotate(180deg) translate(-100%, -100%);
2668
+ }
2669
+ .wy-content-pdf [data-main-rotation="270"] {
2670
+ transform: rotate(270deg) translateX(-100%);
2671
+ }
2672
+ .wy-content-pdf .pdfViewer {
2673
+ padding-bottom: var(--pdfViewer-padding-bottom);
2674
+ }
2675
+ .wy-content-pdf .pdfViewer .canvasWrapper {
2676
+ overflow: hidden;
2677
+ }
2678
+ .wy-content-pdf .pdfViewer .page {
2679
+ direction: ltr;
2680
+ width: 816px;
2681
+ height: 1056px;
2682
+ margin: var(--page-margin);
2683
+ position: relative;
2684
+ overflow: visible;
2685
+ border: var(--page-border);
2686
+ -o-border-image: var(--page-border-image);
2687
+ border-image: var(--page-border-image);
2688
+ background-clip: content-box;
2689
+ background-color: rgb(255, 255, 255);
2690
+ }
2691
+ .wy-content-pdf .pdfViewer .dummyPage {
2692
+ position: relative;
2693
+ width: 0;
2694
+ height: var(--viewer-container-height);
2695
+ }
2696
+ .wy-content-pdf .pdfViewer.removePageBorders .page {
2697
+ margin: 0 auto 10px;
2698
+ border: none;
2699
+ }
2700
+ .wy-content-pdf .pdfViewer.singlePageView {
2701
+ display: inline-block;
2702
+ }
2703
+ .wy-content-pdf .pdfViewer.singlePageView .page {
2704
+ margin: 0;
2705
+ border: none;
2706
+ }
2707
+ .wy-content-pdf .pdfViewer.scrollHorizontal,
2708
+ .wy-content-pdf .pdfViewer.scrollWrapped,
2709
+ .wy-content-pdf .spread {
2710
+ margin-left: 3.5px;
2711
+ margin-right: 3.5px;
2712
+ text-align: center;
2713
+ }
2714
+ .wy-content-pdf .pdfViewer.scrollHorizontal,
2715
+ .wy-content-pdf .spread {
2716
+ white-space: nowrap;
2717
+ }
2718
+ .wy-content-pdf .pdfViewer.removePageBorders,
2719
+ .wy-content-pdf .pdfViewer.scrollHorizontal .spread,
2720
+ .wy-content-pdf .pdfViewer.scrollWrapped .spread {
2721
+ margin-left: 0;
2722
+ margin-right: 0;
2723
+ }
2724
+ .wy-content-pdf .spread .page,
2725
+ .wy-content-pdf .spread .dummyPage,
2726
+ .wy-content-pdf .pdfViewer.scrollHorizontal .page,
2727
+ .wy-content-pdf .pdfViewer.scrollWrapped .page,
2728
+ .wy-content-pdf .pdfViewer.scrollHorizontal .spread,
2729
+ .wy-content-pdf .pdfViewer.scrollWrapped .spread {
2730
+ display: inline-block;
2731
+ vertical-align: middle;
2732
+ }
2733
+ .wy-content-pdf .spread .page,
2734
+ .wy-content-pdf .pdfViewer.scrollHorizontal .page,
2735
+ .wy-content-pdf .pdfViewer.scrollWrapped .page {
2736
+ margin-left: var(--spreadHorizontalWrapped-margin-LR);
2737
+ margin-right: var(--spreadHorizontalWrapped-margin-LR);
2738
+ }
2739
+ .wy-content-pdf .pdfViewer.removePageBorders .spread .page,
2740
+ .wy-content-pdf .pdfViewer.removePageBorders.scrollHorizontal .page,
2741
+ .wy-content-pdf .pdfViewer.removePageBorders.scrollWrapped .page {
2742
+ margin-left: 5px;
2743
+ margin-right: 5px;
2744
+ }
2745
+ .wy-content-pdf .pdfViewer .page canvas {
2746
+ margin: 0;
2747
+ display: block;
2748
+ }
2749
+ .wy-content-pdf .pdfViewer .page canvas[hidden] {
2750
+ display: none;
2751
+ }
2752
+ .wy-content-pdf .pdfViewer .page .loadingIcon {
2753
+ position: absolute;
2754
+ display: block;
2755
+ left: 0;
2756
+ top: 0;
2757
+ right: 0;
2758
+ bottom: 0;
2759
+ }
2760
+ .wy-content-pdf .pdfViewer .page .loadingIcon.notVisible {
2761
+ background: none;
2762
+ }
2763
+ .wy-content-pdf .pdfViewer.enablePermissions .textLayer span {
2764
+ -webkit-user-select: none !important;
2765
+ -moz-user-select: none !important;
2766
+ user-select: none !important;
2767
+ cursor: not-allowed;
2768
+ }
2769
+ .wy-content-pdf .pdfPresentationMode .pdfViewer {
2770
+ padding-bottom: 0;
2771
+ }
2772
+ .wy-content-pdf .pdfPresentationMode .spread {
2773
+ margin: 0;
2774
+ }
2775
+ .wy-content-pdf .pdfPresentationMode .pdfViewer .page {
2776
+ margin: 0 auto;
2777
+ border: 2px solid transparent;
2778
+ }
2779
+ .wy-content-pdf .pdfViewer .page {
2780
+ box-shadow: var(--wy-shadow-level2);
2781
+ background-color: #ffffff;
2782
+ }
2783
+
2784
+ .wy-content-text {
2785
+ word-break: break-word;
2786
+ white-space: pre-wrap;
2787
+ }
2788
+
2789
+ .wy-sheet {
2790
+ --wy-scrollbar-adjust-top: 0;
2791
+ --wy-scrollbar-adjust-bottom: 0;
2792
+ --wy-component-background-color: var(--wy-surface-3);
2793
+ --wy-component-color: var(--wy-on-surface);
2794
+ background-color: var(--wy-component-background-color);
2795
+ color: var(--wy-component-color);
2796
+ position: fixed;
2797
+ z-index: 1055;
2798
+ display: flex;
2799
+ flex-direction: column;
2800
+ bottom: 0.5rem;
2801
+ left: 0.5rem;
2802
+ right: 0.5rem;
2803
+ max-height: max(50vh, 50%);
2804
+ min-height: 3rem;
2805
+ margin: 0.5rem auto;
2806
+ max-width: 32rem;
2807
+ transition: opacity var(--wy-transition);
2808
+ border-radius: var(--wy-border-radius);
2809
+ box-shadow: var(--wy-shadow-level1);
2810
+ }
2811
+ .wy-sheet > .wy-appbars, .wy-sheet > .wy-appbar {
2812
+ border-top-left-radius: inherit;
2813
+ border-top-right-radius: inherit;
2814
+ }
2815
+
2816
+ .wy-sheet-body {
2817
+ overflow: hidden;
2818
+ padding: 0.5rem;
2819
+ position: relative;
2820
+ min-height: 3rem;
2821
+ }
2822
+
2823
+ .wy-sheet:not(.wy-show) {
2824
+ opacity: 0;
2825
+ transform: translateY(32rem);
2826
+ }
2827
+ .wy-sheet.wy-show {
2828
+ opacity: 1;
2829
+ transform: none;
2830
+ transition: transform var(--wy-transition), opacity var(--wy-transition);
2831
+ pointer-events: auto;
2832
+ }
2833
+
2834
+ .wy-sidebar {
2835
+ --wy-component-background-color: var(--wy-surface-2);
2836
+ --wy-component-color: var(--wy-on-surface);
2837
+ background: var(--wy-component-background-color);
2838
+ color: var(--wy-component-color);
2839
+ min-width: 0;
2840
+ min-height: 0;
2841
+ flex-grow: 0;
2842
+ flex-shrink: 0;
2843
+ flex-basis: 18rem;
2844
+ z-index: 10;
2845
+ display: flex;
2846
+ flex-direction: column;
2847
+ transition: flex-basis var(--wy-transition);
2848
+ position: relative;
2849
+ order: 9999;
2850
+ }
2851
+ .wy-sidebar > * {
2852
+ transition: opacity var(--wy-transition-fast) calc(var(--wy-transition-duration) - var(--wy-transition-duration-fast));
2853
+ min-width: 18rem;
2854
+ }
2855
+ .wy-sidebar[hidden] {
2856
+ display: flex !important;
2857
+ flex-basis: 0;
2858
+ }
2859
+ .wy-sidebar[hidden] > * {
2860
+ transition: opacity var(--wy-transition-fast);
2861
+ opacity: 0;
2862
+ }
2863
+ @media (min-width: 768px) {
2864
+ .wy-sidebar > * {
2865
+ min-width: 18rem;
2866
+ }
2867
+ .wy-sidebar .wy-sidebar-handle {
2868
+ display: none;
2869
+ }
2870
+ }
2871
+ @media (max-width: 767.98px) {
2872
+ .wy-sidebar {
2873
+ transition: flex-basis var(--wy-transition), margin-top var(--wy-transition);
2874
+ border-top-left-radius: var(--wy-border-radius-lg);
2875
+ border-top-right-radius: var(--wy-border-radius-lg);
2876
+ flex-basis: 50vh;
2877
+ }
2878
+ .wy-sidebar:not([hidden]) {
2879
+ margin-top: calc(-1 * var(--wy-border-radius-lg));
2880
+ }
2881
+ .wy-sidebar:not([hidden]).wy-maximized {
2882
+ flex-basis: calc(100vh - 3rem * 1.5);
2883
+ margin-top: calc(-50vh + 3rem * 1.5 - var(--wy-border-radius-lg));
2884
+ }
2885
+ .wy-sidebar:not([hidden]).wy-maximized ~ * .wy-nav-prev,
2886
+ .wy-sidebar:not([hidden]).wy-maximized ~ * .wy-nav-next {
2887
+ display: none;
2888
+ }
2889
+ .wy-sidebar > * {
2890
+ min-height: 3rem;
2891
+ }
2892
+ }
2893
+
2894
+ .wy-sidebar-handle {
2895
+ width: 4rem;
2896
+ background-clip: content-box;
2897
+ background-color: var(--wy-on-surface-variant);
2898
+ height: 1rem;
2899
+ border: 0.375rem solid transparent;
2900
+ position: absolute;
2901
+ top: 0rem;
2902
+ z-index: 2;
2903
+ left: 50%;
2904
+ margin-left: -2rem;
2905
+ border-radius: var(--wy-border-radius-pill);
2906
+ cursor: pointer;
2907
+ }
2908
+
2909
+ .wy-spinner, .wy-icon[data-icon=spinner] {
2910
+ align-self: center;
2911
+ justify-self: center;
2912
+ margin: auto;
2913
+ }
2914
+ .wy-spinner circle, .wy-icon[data-icon=spinner] circle {
2915
+ stroke-dasharray: 1, 100;
2916
+ stroke-dashoffset: 0;
2917
+ transform-origin: center;
2918
+ fill: none !important;
2919
+ }
2920
+ .wy-spinner.wy-spin, .wy-icon[data-icon=spinner].wy-spin {
2921
+ animation: wy-rotate 1.4s linear infinite;
2922
+ }
2923
+ .wy-spinner.wy-spin circle, .wy-icon[data-icon=spinner].wy-spin circle {
2924
+ animation: wy-dash 1.4s ease-in-out infinite, wy-color 2.8s ease-in-out infinite;
2925
+ }
2926
+ .wy-spinner.wy-spinner-overlay, .wy-icon[data-icon=spinner].wy-spinner-overlay {
2927
+ position: absolute;
2928
+ left: 0;
2929
+ right: 0;
2930
+ top: 0;
2931
+ bottom: 0;
2932
+ margin: auto;
2933
+ }
2934
+
2935
+ @keyframes wy-rotate {
2936
+ 100% {
2937
+ transform: rotate(360deg);
2938
+ }
2939
+ }
2940
+ @keyframes wy-dash {
2941
+ 0% {
2942
+ stroke-dasharray: 1, 100;
2943
+ stroke-dashoffset: 0;
2944
+ }
2945
+ 50% {
2946
+ stroke-dasharray: 44.5, 100;
2947
+ stroke-dashoffset: -17.5;
2948
+ }
2949
+ 100% {
2950
+ stroke-dasharray: 44.5, 100;
2951
+ stroke-dashoffset: -62;
2952
+ }
2953
+ }
2954
+ @keyframes wy-color {
2955
+ 0%, 100% {
2956
+ stroke: var(--wy-primary);
2957
+ }
2958
+ 25% {
2959
+ stroke: var(--wy-primary);
2960
+ }
2961
+ 50% {
2962
+ stroke: transparent;
2963
+ }
2964
+ 75% {
2965
+ stroke: var(--wy-primary);
2966
+ }
2967
+ }
2968
+ .wy-table {
2969
+ --wy-component-color: var(--wy-on-background);
2970
+ --wy-component-background-color: var(--wy-background);
2971
+ color: var(--wy-component-color);
2972
+ background-color: var(--wy-component-background-color);
2973
+ table-layout: fixed;
2974
+ width: 100%;
2975
+ vertical-align: top;
2976
+ border-collapse: collapse;
2977
+ }
2978
+ .wy-table th, .wy-table td {
2979
+ padding: var(--wy-table-cell-padding-y) var(--wy-table-cell-padding-x);
2980
+ box-shadow: var(--wy-outline-variant) 0px -1px 0px 0px inset;
2981
+ line-height: 1;
2982
+ vertical-align: middle;
2983
+ height: 2.5rem;
2984
+ }
2985
+ .wy-table th:first-child, .wy-table td:first-child {
2986
+ padding-left: calc(var(--wy-table-cell-padding-x) * 2);
2987
+ }
2988
+ .wy-table th:last-child, .wy-table td:last-child {
2989
+ padding-right: calc(var(--wy-table-cell-padding-x) * 2);
2990
+ }
2991
+ .wy-table > tbody {
2992
+ vertical-align: inherit;
2993
+ }
2994
+ .wy-table > thead {
2995
+ vertical-align: bottom;
2996
+ }
2997
+ .wy-table .wy-table-cell-icon {
2998
+ color: var(--wy-component-color);
2999
+ vertical-align: middle;
3000
+ text-align: center;
3001
+ padding: calc(var(--wy-table-cell-padding-y) * .5) var(--wy-table-cell-padding-x);
3002
+ width: calc(2.5rem + var(--wy-table-cell-padding-x) * 2);
3003
+ font-size: var(--wy-font-size-base);
3004
+ font-weight: var(--wy-font-weight);
3005
+ text-transform: none;
3006
+ letter-spacing: normal;
3007
+ }
3008
+ .wy-table .wy-table-cell-text {
3009
+ overflow: hidden;
3010
+ text-overflow: ellipsis;
3011
+ white-space: nowrap;
3012
+ width: 100%;
3013
+ }
3014
+
3015
+ .wy-table-hover > tbody > tr:not(.wy-pager):hover > * {
3016
+ --wy-component-color: var(--wy-on-surface);
3017
+ --wy-component-background-color: var(--wy-surface-2);
3018
+ color: var(--color);
3019
+ background-color: var(--wy-component-background-color);
3020
+ cursor: pointer;
3021
+ }
3022
+
3023
+ .wy-table-trashed th, .wy-table-trashed td {
3024
+ text-decoration: line-through;
3025
+ }
3026
+ .wy-table-trashed th:not(:last-child) > *, .wy-table-trashed td:not(:last-child) > * {
3027
+ opacity: var(--wy-opacity-disabled);
3028
+ }
3029
+ .wy-table-trashed th > a, .wy-table-trashed td > a {
3030
+ color: var(--wy-component-color);
3031
+ }
3032
+ .wy-table-trashed:hover th, .wy-table-trashed:hover td {
3033
+ opacity: 1;
3034
+ }
3035
+
3036
+ .wy-table-no-result {
3037
+ text-align: center;
3038
+ padding: 1rem;
3039
+ }
3040
+
3041
+ .wy-table-sort-link {
3042
+ display: inline-flex;
3043
+ align-items: center;
3044
+ color: var(--wy-link);
3045
+ cursor: pointer;
3046
+ }