@weavy/uikit-react 12.1.0 → 14.0.0

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 (280) hide show
  1. package/changelog.md +60 -0
  2. package/dist/cjs/index.js +28 -6
  3. package/dist/cjs/index.js.map +1 -1
  4. package/dist/cjs/types/client/WeavyClient.d.ts +8 -1
  5. package/dist/cjs/types/components/Attachment.d.ts +2 -1
  6. package/dist/cjs/types/components/Chat.d.ts +1 -1
  7. package/dist/cjs/types/components/Messages.d.ts +3 -1
  8. package/dist/cjs/types/components/PdfViewer.d.ts +3 -1
  9. package/dist/cjs/types/components/Preview.d.ts +8 -10
  10. package/dist/cjs/types/contexts/PreviewContext.d.ts +2 -1
  11. package/dist/cjs/types/contexts/WeavyContext.d.ts +2 -3
  12. package/dist/cjs/types/hooks/useConversations.d.ts +1 -1
  13. package/dist/cjs/types/hooks/useMutateMessage.d.ts +1 -1
  14. package/dist/cjs/types/hooks/useMutateRead.d.ts +1 -0
  15. package/dist/cjs/types/types/Chat.d.ts +2 -1
  16. package/dist/cjs/types/types/Message.d.ts +2 -0
  17. package/dist/cjs/types/types/types.d.ts +63 -9
  18. package/dist/cjs/types/ui/Spinner.d.ts +10 -0
  19. package/dist/cjs/types/utils/fileUtilities.d.ts +1 -4
  20. package/dist/css/weavy-chat.css +1803 -1041
  21. package/dist/css/weavy-messenger.css +2141 -1360
  22. package/dist/css/weavy.css +1943 -1162
  23. package/dist/esm/index.js +28 -6
  24. package/dist/esm/index.js.map +1 -1
  25. package/dist/esm/types/client/WeavyClient.d.ts +8 -1
  26. package/dist/esm/types/components/Attachment.d.ts +2 -1
  27. package/dist/esm/types/components/Chat.d.ts +1 -1
  28. package/dist/esm/types/components/Messages.d.ts +3 -1
  29. package/dist/esm/types/components/PdfViewer.d.ts +3 -1
  30. package/dist/esm/types/components/Preview.d.ts +8 -10
  31. package/dist/esm/types/contexts/PreviewContext.d.ts +2 -1
  32. package/dist/esm/types/contexts/WeavyContext.d.ts +2 -3
  33. package/dist/esm/types/hooks/useConversations.d.ts +1 -1
  34. package/dist/esm/types/hooks/useMutateMessage.d.ts +1 -1
  35. package/dist/esm/types/hooks/useMutateRead.d.ts +1 -0
  36. package/dist/esm/types/types/Chat.d.ts +2 -1
  37. package/dist/esm/types/types/Message.d.ts +2 -0
  38. package/dist/esm/types/types/types.d.ts +63 -9
  39. package/dist/esm/types/ui/Spinner.d.ts +10 -0
  40. package/dist/esm/types/utils/fileUtilities.d.ts +1 -4
  41. package/dist/index.d.ts +15 -7
  42. package/package.json +2 -2
  43. package/rollup.config.js +3 -1
  44. package/src/client/WeavyClient.ts +105 -29
  45. package/src/components/Attachment.tsx +8 -7
  46. package/src/components/Chat.tsx +8 -7
  47. package/src/components/Conversation.tsx +29 -23
  48. package/src/components/ConversationBadge.tsx +7 -5
  49. package/src/components/ConversationForm.tsx +1 -1
  50. package/src/components/ConversationList.tsx +59 -11
  51. package/src/components/ConversationListItem.tsx +71 -54
  52. package/src/components/FileBrowser.tsx +53 -50
  53. package/src/components/MeetingCard.tsx +35 -13
  54. package/src/components/Meetings.tsx +1 -1
  55. package/src/components/Message.tsx +41 -41
  56. package/src/components/Messages.tsx +62 -61
  57. package/src/components/Messenger.tsx +7 -2
  58. package/src/components/NewConversation.tsx +1 -1
  59. package/src/components/PdfViewer.tsx +93 -88
  60. package/src/components/Preview.tsx +115 -54
  61. package/src/components/Reactions.tsx +11 -5
  62. package/src/components/SearchUsers.tsx +21 -11
  63. package/src/components/SeenBy.tsx +13 -7
  64. package/src/components/Typing.tsx +11 -12
  65. package/src/contexts/PreviewContext.tsx +90 -16
  66. package/src/contexts/UserContext.tsx +1 -1
  67. package/src/contexts/WeavyContext.tsx +10 -7
  68. package/src/hooks/useBadge.ts +2 -6
  69. package/src/hooks/useChat.ts +3 -14
  70. package/src/hooks/useConversation.ts +1 -7
  71. package/src/hooks/useConversations.ts +15 -11
  72. package/src/hooks/useFileUploader.ts +6 -8
  73. package/src/hooks/useMembers.ts +1 -7
  74. package/src/hooks/useMessages.ts +1 -7
  75. package/src/hooks/useMutateChat.ts +6 -11
  76. package/src/hooks/useMutateConversation.ts +7 -10
  77. package/src/hooks/useMutateConversationName.ts +10 -12
  78. package/src/hooks/useMutateDeleteReaction.ts +3 -8
  79. package/src/hooks/useMutateExternalBlobs.ts +6 -11
  80. package/src/hooks/useMutateMeeting.ts +6 -11
  81. package/src/hooks/useMutateMembers.ts +8 -13
  82. package/src/hooks/useMutateMessage.ts +9 -18
  83. package/src/hooks/useMutatePinned.ts +3 -8
  84. package/src/hooks/useMutateReaction.ts +6 -12
  85. package/src/hooks/useMutateRead.ts +5 -12
  86. package/src/hooks/useMutateRemoveMembers.ts +7 -12
  87. package/src/hooks/useMutateTyping.ts +6 -11
  88. package/src/hooks/usePresence.ts +2 -3
  89. package/src/hooks/useReactions.ts +11 -12
  90. package/src/hooks/useSearchUsers.ts +1 -6
  91. package/src/hooks/useUser.ts +3 -14
  92. package/src/scss/theme/_alert.scss +61 -63
  93. package/src/scss/theme/_appbar.scss +105 -28
  94. package/src/scss/theme/_avatar.scss +23 -28
  95. package/src/scss/theme/_badge.scss +26 -18
  96. package/src/scss/theme/_buttons.scss +107 -52
  97. package/src/scss/theme/_card.scss +102 -4
  98. package/src/scss/theme/_checkbox.scss +16 -20
  99. package/src/scss/theme/_code-vscode-dark.scss +184 -0
  100. package/src/scss/theme/_code-vscode-light.scss +179 -0
  101. package/src/scss/theme/_code.scss +9 -114
  102. package/src/scss/theme/_comment-editor-cm.scss +97 -0
  103. package/src/scss/theme/_comment-editor.scss +129 -0
  104. package/src/scss/theme/_comments.scss +66 -0
  105. package/src/scss/theme/_content.scss +33 -5
  106. package/src/scss/theme/_conversations.scss +19 -78
  107. package/src/scss/theme/_dropdown.scss +102 -15
  108. package/src/scss/theme/_embed.scss +135 -0
  109. package/src/scss/theme/_facepile.scss +11 -0
  110. package/src/scss/theme/_filebrowser.scss +1 -1
  111. package/src/scss/theme/_files.scss +77 -48
  112. package/src/scss/theme/_grid.scss +8 -0
  113. package/src/scss/theme/_icons.scss +155 -19
  114. package/src/scss/theme/_image-grid.scss +7 -10
  115. package/src/scss/theme/_input.scss +160 -0
  116. package/src/scss/theme/_item.scss +169 -0
  117. package/src/scss/theme/_list.scss +57 -0
  118. package/src/scss/theme/_meeting.scss +11 -0
  119. package/src/scss/theme/_message-editor-cm.scss +95 -0
  120. package/src/scss/theme/_message-editor.scss +66 -20
  121. package/src/scss/theme/_messages.scss +51 -105
  122. package/src/scss/theme/_meta.scss +12 -0
  123. package/src/scss/theme/_overlays.scss +31 -76
  124. package/src/scss/theme/_pager.scss +5 -1
  125. package/src/scss/theme/_pane.scss +13 -2
  126. package/src/scss/theme/_panels.scss +34 -25
  127. package/src/scss/theme/_picker-list.scss +5 -3
  128. package/src/scss/theme/_placeholder.scss +19 -0
  129. package/src/scss/theme/_poll.scss +49 -0
  130. package/src/scss/theme/_post-editor-cm.scss +100 -0
  131. package/src/scss/theme/_post-editor.scss +127 -0
  132. package/src/scss/theme/_post.scss +83 -0
  133. package/src/scss/theme/_preview-code.scss +14 -0
  134. package/src/scss/theme/_preview-embed.scss +11 -5
  135. package/src/scss/theme/_preview-image.scss +8 -26
  136. package/src/scss/theme/_preview-media.scss +1 -0
  137. package/src/scss/theme/_preview-pdf.scss +10 -15
  138. package/src/scss/theme/_preview-text.scss +1 -1
  139. package/src/scss/theme/_preview.scss +59 -76
  140. package/src/scss/theme/_reactions.scss +48 -17
  141. package/src/scss/theme/_sheet.scss +59 -0
  142. package/src/scss/theme/_sidebar.scss +86 -0
  143. package/src/scss/theme/_spinner.scss +11 -7
  144. package/src/scss/theme/_tab.scss +72 -0
  145. package/src/scss/theme/_tables.scss +70 -23
  146. package/src/scss/theme/_toasts.scss +56 -26
  147. package/src/scss/theme/_type.scss +41 -0
  148. package/src/scss/theme/{mixins → base}/_backdrop.scss +0 -0
  149. package/src/scss/theme/{bootstrap/mixins → base}/_breakpoints.scss +9 -0
  150. package/src/scss/theme/base/_colors.scss +315 -0
  151. package/src/scss/theme/base/_md.scss +19 -0
  152. package/src/scss/theme/base/_palette.scss +130 -0
  153. package/src/scss/theme/{mixins → base}/_position.scss +5 -5
  154. package/src/scss/theme/base/_reboot.scss +51 -0
  155. package/src/scss/theme/base/_scroll.scss +180 -0
  156. package/src/scss/theme/base/_svg.scss +49 -0
  157. package/src/scss/theme/base/_text.scss +23 -0
  158. package/src/scss/theme/base/_vars.scss +203 -0
  159. package/src/scss/theme/{fonts → base/fonts}/_fontmapping-roboto.scss +0 -0
  160. package/src/scss/theme/{fonts → base/fonts}/_fontmapping-segoe-ui.scss +0 -0
  161. package/src/scss/theme/base/fonts/_index.scss +2 -0
  162. package/src/scss/weavy-chat.scss +11 -4
  163. package/src/scss/weavy-messenger.scss +38 -21
  164. package/src/types/Chat.ts +2 -1
  165. package/src/types/Message.ts +3 -1
  166. package/src/types/types.ts +72 -10
  167. package/src/ui/Icon.tsx +1 -1
  168. package/src/ui/Spinner.tsx +19 -0
  169. package/src/utils/fileUtilities.ts +11 -125
  170. package/src/utils/infiniteScroll.js +11 -2
  171. package/src/utils/postal-parent.js +398 -0
  172. package/src/utils/promise.js +187 -0
  173. package/src/utils/scrollbarDetection.js +68 -9
  174. package/src/utils/utils.js +547 -0
  175. package/src/scss/theme/_attachments.scss +0 -74
  176. package/src/scss/theme/_cm-editor.scss +0 -42
  177. package/src/scss/theme/_colors.scss +0 -520
  178. package/src/scss/theme/_config.scss +0 -6
  179. package/src/scss/theme/_inputs.scss +0 -28
  180. package/src/scss/theme/_nav.scss +0 -52
  181. package/src/scss/theme/_palette.scss +0 -165
  182. package/src/scss/theme/_preview-icon.scss +0 -41
  183. package/src/scss/theme/_reboot.scss +0 -41
  184. package/src/scss/theme/_root.scss +0 -2
  185. package/src/scss/theme/_scroll.scss +0 -55
  186. package/src/scss/theme/_search.scss +0 -68
  187. package/src/scss/theme/_turbo.scss +0 -17
  188. package/src/scss/theme/_variables.scss +0 -139
  189. package/src/scss/theme/bootstrap/_accordion.scss +0 -146
  190. package/src/scss/theme/bootstrap/_alert.scss +0 -71
  191. package/src/scss/theme/bootstrap/_badge.scss +0 -38
  192. package/src/scss/theme/bootstrap/_breadcrumb.scss +0 -40
  193. package/src/scss/theme/bootstrap/_button-group.scss +0 -142
  194. package/src/scss/theme/bootstrap/_buttons.scss +0 -186
  195. package/src/scss/theme/bootstrap/_card.scss +0 -234
  196. package/src/scss/theme/bootstrap/_carousel.scss +0 -229
  197. package/src/scss/theme/bootstrap/_close.scss +0 -40
  198. package/src/scss/theme/bootstrap/_containers.scss +0 -41
  199. package/src/scss/theme/bootstrap/_dropdown.scss +0 -248
  200. package/src/scss/theme/bootstrap/_forms.scss +0 -9
  201. package/src/scss/theme/bootstrap/_functions.scss +0 -302
  202. package/src/scss/theme/bootstrap/_grid.scss +0 -33
  203. package/src/scss/theme/bootstrap/_helpers.scss +0 -10
  204. package/src/scss/theme/bootstrap/_images.scss +0 -42
  205. package/src/scss/theme/bootstrap/_list-group.scss +0 -191
  206. package/src/scss/theme/bootstrap/_maps.scss +0 -54
  207. package/src/scss/theme/bootstrap/_mixins.scss +0 -43
  208. package/src/scss/theme/bootstrap/_modal.scss +0 -237
  209. package/src/scss/theme/bootstrap/_nav.scss +0 -172
  210. package/src/scss/theme/bootstrap/_navbar.scss +0 -276
  211. package/src/scss/theme/bootstrap/_offcanvas.scss +0 -143
  212. package/src/scss/theme/bootstrap/_pagination.scss +0 -109
  213. package/src/scss/theme/bootstrap/_placeholders.scss +0 -51
  214. package/src/scss/theme/bootstrap/_popover.scss +0 -196
  215. package/src/scss/theme/bootstrap/_progress.scss +0 -59
  216. package/src/scss/theme/bootstrap/_reboot.scss +0 -610
  217. package/src/scss/theme/bootstrap/_root.scss +0 -73
  218. package/src/scss/theme/bootstrap/_spinners.scss +0 -85
  219. package/src/scss/theme/bootstrap/_tables.scss +0 -164
  220. package/src/scss/theme/bootstrap/_toasts.scss +0 -70
  221. package/src/scss/theme/bootstrap/_tooltip.scss +0 -120
  222. package/src/scss/theme/bootstrap/_transitions.scss +0 -27
  223. package/src/scss/theme/bootstrap/_type.scss +0 -106
  224. package/src/scss/theme/bootstrap/_utilities.scss +0 -647
  225. package/src/scss/theme/bootstrap/_variables.scss +0 -1633
  226. package/src/scss/theme/bootstrap/forms/_floating-labels.scss +0 -74
  227. package/src/scss/theme/bootstrap/forms/_form-check.scss +0 -175
  228. package/src/scss/theme/bootstrap/forms/_form-control.scss +0 -194
  229. package/src/scss/theme/bootstrap/forms/_form-range.scss +0 -91
  230. package/src/scss/theme/bootstrap/forms/_form-select.scss +0 -71
  231. package/src/scss/theme/bootstrap/forms/_form-text.scss +0 -11
  232. package/src/scss/theme/bootstrap/forms/_input-group.scss +0 -129
  233. package/src/scss/theme/bootstrap/forms/_labels.scss +0 -36
  234. package/src/scss/theme/bootstrap/forms/_validation.scss +0 -12
  235. package/src/scss/theme/bootstrap/helpers/_clearfix.scss +0 -3
  236. package/src/scss/theme/bootstrap/helpers/_color-bg.scss +0 -10
  237. package/src/scss/theme/bootstrap/helpers/_colored-links.scss +0 -12
  238. package/src/scss/theme/bootstrap/helpers/_position.scss +0 -36
  239. package/src/scss/theme/bootstrap/helpers/_ratio.scss +0 -26
  240. package/src/scss/theme/bootstrap/helpers/_stacks.scss +0 -15
  241. package/src/scss/theme/bootstrap/helpers/_stretched-link.scss +0 -15
  242. package/src/scss/theme/bootstrap/helpers/_text-truncation.scss +0 -7
  243. package/src/scss/theme/bootstrap/helpers/_visually-hidden.scss +0 -8
  244. package/src/scss/theme/bootstrap/helpers/_vr.scss +0 -8
  245. package/src/scss/theme/bootstrap/mixins/_alert.scss +0 -15
  246. package/src/scss/theme/bootstrap/mixins/_backdrop.scss +0 -14
  247. package/src/scss/theme/bootstrap/mixins/_banner.scss +0 -9
  248. package/src/scss/theme/bootstrap/mixins/_border-radius.scss +0 -78
  249. package/src/scss/theme/bootstrap/mixins/_box-shadow.scss +0 -18
  250. package/src/scss/theme/bootstrap/mixins/_buttons.scss +0 -70
  251. package/src/scss/theme/bootstrap/mixins/_caret.scss +0 -64
  252. package/src/scss/theme/bootstrap/mixins/_clearfix.scss +0 -9
  253. package/src/scss/theme/bootstrap/mixins/_color-scheme.scss +0 -7
  254. package/src/scss/theme/bootstrap/mixins/_container.scss +0 -11
  255. package/src/scss/theme/bootstrap/mixins/_deprecate.scss +0 -10
  256. package/src/scss/theme/bootstrap/mixins/_forms.scss +0 -152
  257. package/src/scss/theme/bootstrap/mixins/_gradients.scss +0 -47
  258. package/src/scss/theme/bootstrap/mixins/_grid.scss +0 -151
  259. package/src/scss/theme/bootstrap/mixins/_image.scss +0 -16
  260. package/src/scss/theme/bootstrap/mixins/_list-group.scss +0 -24
  261. package/src/scss/theme/bootstrap/mixins/_lists.scss +0 -7
  262. package/src/scss/theme/bootstrap/mixins/_pagination.scss +0 -10
  263. package/src/scss/theme/bootstrap/mixins/_reset-text.scss +0 -17
  264. package/src/scss/theme/bootstrap/mixins/_resize.scss +0 -6
  265. package/src/scss/theme/bootstrap/mixins/_table-variants.scss +0 -24
  266. package/src/scss/theme/bootstrap/mixins/_text-truncate.scss +0 -8
  267. package/src/scss/theme/bootstrap/mixins/_transition.scss +0 -26
  268. package/src/scss/theme/bootstrap/mixins/_utilities.scss +0 -97
  269. package/src/scss/theme/bootstrap/mixins/_visually-hidden.scss +0 -29
  270. package/src/scss/theme/bootstrap/utilities/_api.scss +0 -47
  271. package/src/scss/theme/bootstrap/vendor/_rfs.scss +0 -354
  272. package/src/scss/theme/bs/_badge.scss +0 -20
  273. package/src/scss/theme/bs/_buttons.scss +0 -185
  274. package/src/scss/theme/bs/_dropdown.scss +0 -86
  275. package/src/scss/theme/bs/_forms.scss +0 -161
  276. package/src/scss/theme/bs/_list-group.scss +0 -73
  277. package/src/scss/theme/bs/_tables.scss +0 -46
  278. package/src/scss/theme/fonts/_index.scss +0 -2
  279. package/src/scss/theme/mixins/_palette.scss +0 -165
  280. package/src/scss/theme/mixins/_scrollbar.scss +0 -110
@@ -1,660 +1,1092 @@
1
- [class^=wy-], [class^=wy-]::before, [class^=wy-]::after, [class^=wy-] *, [class^=wy-] *::before, [class^=wy-] *::after, [class*=" wy-"], [class*=" wy-"]::before, [class*=" wy-"]::after, [class*=" wy-"] *, [class*=" wy-"] *::before, [class*=" wy-"] *::after {
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-"]) {
2
271
  box-sizing: border-box;
3
272
  }
4
- [class^=wy-][hidden], [class^=wy-] *[hidden], [class*=" wy-"][hidden], [class*=" wy-"] *[hidden] {
5
- display: none !important;
273
+ :where([class^=wy-], [class*=" wy-"]) *::before, :where([class^=wy-], [class*=" wy-"]) *::after {
274
+ box-sizing: inherit;
6
275
  }
7
- [class^=wy-][role=button], [class^=wy-] *[role=button], [class*=" wy-"][role=button], [class*=" wy-"] *[role=button] {
8
- cursor: pointer;
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);
9
279
  }
10
- [class^=wy-] a[class^=wy-], [class^=wy-] a[class*=" wy-"], [class^=wy-] a, [class*=" wy-"] a[class^=wy-], [class*=" wy-"] a[class*=" wy-"], [class*=" wy-"] a {
11
- text-decoration: none;
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);
12
282
  }
13
- [class^=wy-] a[class^=wy-]:not([href]):not([class]), [class^=wy-] a[class^=wy-]:not([href]):not([class]):hover, [class^=wy-] a[class*=" wy-"]:not([href]):not([class]), [class^=wy-] a[class*=" wy-"]:not([href]):not([class]):hover, [class^=wy-] a:not([href]):not([class]), [class^=wy-] a:not([href]):not([class]):hover, [class*=" wy-"] a[class^=wy-]:not([href]):not([class]), [class*=" wy-"] a[class^=wy-]:not([href]):not([class]):hover, [class*=" wy-"] a[class*=" wy-"]:not([href]):not([class]), [class*=" wy-"] a[class*=" wy-"]:not([href]):not([class]):hover, [class*=" wy-"] a:not([href]):not([class]), [class*=" wy-"] a:not([href]):not([class]):hover {
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 {
14
284
  text-decoration: none;
15
285
  }
16
- [class^=wy-] p[class^=wy-], [class^=wy-] p[class*=" wy-"], [class^=wy-] p, [class*=" wy-"] p[class^=wy-], [class*=" wy-"] p[class*=" wy-"], [class*=" wy-"] p {
286
+ :where([class^=wy-], [class*=" wy-"]):where(p), :where([class^=wy-], [class*=" wy-"]) *:where(p) {
17
287
  margin-top: 0;
18
288
  margin-bottom: 1rem;
19
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
+ }
20
299
 
21
- .wy-attachment,
22
- .wy-meeting {
23
- width: 100%;
24
- color: #5c5c5c;
25
- text-align: inherit;
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%;
26
306
  }
27
- .wy-attachment:hover,
28
- .wy-meeting:hover, .wy-attachment:focus,
29
- .wy-meeting:focus {
30
- z-index: 1;
31
- color: #5c5c5c;
32
- text-decoration: none;
33
- background-color: #f2f2f2;
307
+ .wy-scroll-y:not(body) {
308
+ -webkit-overflow-scrolling: touch;
34
309
  }
35
- .wy-attachment:active,
36
- .wy-meeting:active {
37
- color: #383838;
38
- background-color: #e6e6e6;
310
+ .wy-scroll-y:not(.wy-scroll-x) {
311
+ overflow-x: hidden;
312
+ touch-action: pan-y;
39
313
  }
40
314
 
41
- .wy-attachment,
42
- .wy-meeting {
43
- position: relative;
44
- display: block;
45
- padding: 0.5rem 1rem;
46
- color: #383838;
47
- background-color: #fff;
48
- border: 1px solid rgba(0, 0, 0, 0.125);
315
+ .wy-scroll-x {
316
+ overflow-x: auto;
317
+ touch-action: pan-y, pan-x;
318
+ will-change: scroll-position, opacity;
319
+ backface-visibility: hidden;
320
+ max-width: 100%;
49
321
  }
50
- .wy-attachment:first-child,
51
- .wy-meeting:first-child {
52
- border-top-left-radius: inherit;
53
- border-top-right-radius: inherit;
322
+ .wy-scroll-x:not(.wy-scroll-y) {
323
+ overflow-y: hidden;
324
+ touch-action: pan-x;
54
325
  }
55
- .wy-attachment:last-child,
56
- .wy-meeting:last-child {
57
- border-bottom-right-radius: inherit;
58
- border-bottom-left-radius: inherit;
326
+
327
+ .wy-scrollbars.wy-scroll-y, .wy-scrollbars .wy-scroll-y {
328
+ scrollbar-width: thin;
329
+ scrollbar-color: var(--wy-outline) transparent;
59
330
  }
60
- .disabled.wy-attachment,
61
- .disabled.wy-meeting, .wy-attachment:disabled,
62
- .wy-meeting:disabled {
63
- color: #6b6b6b;
64
- pointer-events: none;
65
- background-color: #fff;
331
+ @supports (overflow-y: overlay) {
332
+ .wy-scrollbars.wy-scroll-y, .wy-scrollbars .wy-scroll-y {
333
+ overflow-y: overlay;
334
+ }
66
335
  }
67
- .active.wy-attachment,
68
- .active.wy-meeting {
69
- z-index: 2;
70
- color: #383838;
71
- background-color: #e6e6e6;
72
- border-color: #e6e6e6;
73
- }
74
- .wy-attachment + .wy-attachment,
75
- .wy-meeting + .wy-attachment,
76
- .wy-attachment + .wy-meeting,
77
- .wy-meeting + .wy-meeting {
78
- border-top-width: 0;
336
+ .wy-scrollbars.wy-scroll-y::-webkit-scrollbar, .wy-scrollbars .wy-scroll-y::-webkit-scrollbar {
337
+ height: 0.625rem;
338
+ width: 0.625rem;
339
+ background: transparent;
340
+ z-index: 999;
79
341
  }
80
- .wy-attachment + .active.wy-attachment,
81
- .wy-meeting + .active.wy-attachment,
82
- .wy-attachment + .active.wy-meeting,
83
- .wy-meeting + .active.wy-meeting {
84
- margin-top: -1px;
85
- border-top-width: 1px;
342
+ .wy-scrollbars.wy-scroll-y::-webkit-scrollbar-track, .wy-scrollbars .wy-scroll-y::-webkit-scrollbar-track {
343
+ background: transparent;
86
344
  }
87
-
88
- .wy-attachments,
89
- .wy-meetings {
90
- border: none;
91
- border-radius: 0.25rem;
92
- flex: 1 1 100%;
93
- min-width: 0;
345
+ .wy-scrollbars.wy-scroll-y::-webkit-scrollbar-thumb, .wy-scrollbars .wy-scroll-y::-webkit-scrollbar-thumb {
346
+ background-color: var(--wy-outline);
347
+ border: 0.125rem solid transparent;
348
+ border-radius: 0.5rem;
349
+ background-clip: padding-box;
350
+ opacity: 75%;
94
351
  }
95
- .wy-attachments .wy-attachment,
96
- .wy-attachments .wy-meeting,
97
- .wy-meetings .wy-attachment,
98
- .wy-meetings .wy-meeting {
99
- border-left: none;
100
- border-right: none;
352
+ .wy-scrollbars.wy-scroll-y::-webkit-scrollbar-thumb:hover, .wy-scrollbars .wy-scroll-y::-webkit-scrollbar-thumb:hover {
353
+ background-color: var(--wy-outline-variant);
354
+ opacity: 75%;
101
355
  }
102
- .wy-attachments > *,
103
- .wy-meetings > * {
104
- padding: 0.25rem 0.5rem;
356
+ .wy-scrollbars.wy-scroll-y::-webkit-scrollbar-thumb:window-inactive, .wy-scrollbars .wy-scroll-y::-webkit-scrollbar-thumb:window-inactive {
357
+ background-color: var(--wy-outline);
358
+ opacity: 50%;
105
359
  }
106
- .wy-attachments > :first-child,
107
- .wy-meetings > :first-child {
108
- border-top: none;
360
+ .wy-scrollbars.wy-scroll-y::-webkit-scrollbar-button:vertical:start:single-button, .wy-scrollbars .wy-scroll-y::-webkit-scrollbar-button:vertical:start:single-button {
361
+ height: var(--wy-scrollbar-adjust-top, 0);
109
362
  }
110
- .wy-attachments > :last-child,
111
- .wy-meetings > :last-child {
112
- border-bottom: none;
363
+ .wy-scrollbars.wy-scroll-y::-webkit-scrollbar-button:vertical:end:single-button, .wy-scrollbars .wy-scroll-y::-webkit-scrollbar-button:vertical:end:single-button {
364
+ height: var(--wy-scrollbar-adjust-bottom, 0);
113
365
  }
114
366
 
115
- .wy-attachment,
116
- .wy-meeting {
117
- display: flex;
118
- align-items: center;
119
- cursor: pointer;
367
+ .wy-block-scroll {
368
+ overflow: hidden !important;
120
369
  }
121
370
 
122
- .wy-attachment-icon {
123
- flex: 0 0 auto;
124
- display: flex;
371
+ .wy-scrollbar-detection {
372
+ position: fixed;
373
+ top: 0;
374
+ left: 0;
375
+ width: 8rem;
376
+ height: 8rem;
377
+ overflow: scroll;
378
+ z-index: -99999;
379
+ pointer-events: none;
380
+ visibility: hidden;
125
381
  }
126
- .wy-attachment-icon .wy-icon, .wy-attachment-icon .wy-icon-stack {
127
- width: 3rem;
128
- height: 3rem;
382
+
383
+ :where(:root, :host > *) {
384
+ --wy-presence-active: var(--wy-green);
129
385
  }
130
386
 
131
- .wy-attachment-content {
132
- flex: 1 1 100%;
133
- min-width: 0;
134
- margin-left: 0.5rem;
135
- margin-right: 0.5rem;
387
+ .wy-avatar {
388
+ border-radius: 50%;
136
389
  }
137
390
 
138
- .wy-attachment-title {
139
- font-weight: 500;
140
- overflow: hidden;
141
- text-overflow: ellipsis;
142
- white-space: nowrap;
143
- font-size: 1rem;
144
- margin: 0;
391
+ .wy-avatar-header {
392
+ padding: 1.5rem;
393
+ margin-left: auto;
394
+ margin-right: auto;
395
+ text-align: center;
145
396
  }
146
397
 
147
- .wy-attachment-meta {
148
- overflow: hidden;
149
- text-overflow: ellipsis;
150
- white-space: nowrap;
151
- font-size: 0.875em;
152
- color: #6b6b6b;
398
+ .wy-avatar-presence {
399
+ position: relative;
400
+ display: inline-flex;
153
401
  }
154
402
 
155
- .wy-input, .wy-input-sm, .wy-avatar-input {
156
- display: block;
157
- width: 100%;
158
- padding: 0.375rem 0.75rem;
159
- font-size: 1rem;
160
- font-weight: 400;
161
- line-height: 1.5;
162
- color: #292929;
163
- background-color: #fff;
164
- background-clip: padding-box;
165
- border: 1px solid #999999;
166
- appearance: none;
167
- border-radius: 0.375rem;
168
- box-shadow: 0;
169
- transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
403
+ .wy-presence {
404
+ background-color: var(--wy-component-background-color, transparent);
405
+ width: 0.75rem;
406
+ height: 0.75rem;
407
+ border-radius: 50%;
408
+ position: absolute;
409
+ bottom: 0;
410
+ right: -5%;
170
411
  }
171
- @media (prefers-reduced-motion: reduce) {
172
- .wy-input, .wy-input-sm, .wy-avatar-input {
173
- transition: none;
174
- }
412
+ .wy-presence:not(.wy-presence-active) {
413
+ display: none;
175
414
  }
176
- [type=file].wy-input, [type=file].wy-input-sm, [type=file].wy-avatar-input {
177
- overflow: hidden;
415
+ .wy-presence::after {
416
+ content: "";
417
+ position: absolute;
418
+ width: 100%;
419
+ height: 100%;
420
+ border-radius: inherit;
421
+ background-color: var(--wy-presence-active);
422
+ background-clip: content-box;
423
+ padding: 0.125rem;
178
424
  }
179
- [type=file].wy-input:not(:disabled):not([readonly]), [type=file].wy-input-sm:not(:disabled):not([readonly]), [type=file].wy-avatar-input:not(:disabled):not([readonly]) {
180
- cursor: pointer;
425
+
426
+ :where(:root, :host > *) {
427
+ --wy-btn-padding-x: 1.5rem;
428
+ --wy-btn-padding-y: .5rem;
429
+ --wy-btn-font-family: var(--wy-font-family);
430
+ --wy-btn-font-size: var(--wy-font-size-base);
431
+ --wy-btn-font-weight: 400;
432
+ --wy-btn-line-height: var(--wy-line-height);
433
+ --wy-btn-border-width: 0;
434
+ --wy-btn-border-color: transparent;
435
+ --wy-btn-border-radius: 1.25rem;
181
436
  }
182
- .wy-input:focus, .wy-input-sm:focus, .wy-avatar-input:focus {
183
- color: #292929;
184
- background-color: #fff;
185
- border-color: #8ab5c9;
186
- outline: 0;
187
- box-shadow: 0, 0 0 0 0.25rem rgba(230, 230, 230, 0.25);
437
+
438
+ .wy-button {
439
+ --wy-component-color: var(--wy-primary);
440
+ color: var(--wy-component-color);
441
+ background: var(--wy-component-background-color, transparent);
442
+ padding: var(--wy-btn-padding-y) var(--wy-btn-padding-x);
443
+ font-family: var(--wy-btn-font-family);
444
+ font-size: var(--wy-btn-font-size);
445
+ font-weight: var(--wy-btn-font-weight);
446
+ line-height: var(--wy-btn-line-height);
447
+ text-align: center;
448
+ text-decoration: none;
449
+ vertical-align: middle;
450
+ cursor: pointer;
451
+ user-select: none;
452
+ border: var(--wy-btn-border-width) solid var(--wy-btn-border-color);
453
+ border-radius: var(--wy-btn-border-radius);
454
+ display: inline-flex;
455
+ align-items: center;
456
+ justify-content: center;
457
+ gap: 0.25rem;
458
+ position: relative;
188
459
  }
189
- .wy-input::-webkit-date-and-time-value, .wy-input-sm::-webkit-date-and-time-value, .wy-avatar-input::-webkit-date-and-time-value {
190
- height: 1.5em;
460
+ .wy-button:not(.wy-button-link, :disabled) > * {
461
+ z-index: 3;
191
462
  }
192
- .wy-input::placeholder, .wy-input-sm::placeholder, .wy-avatar-input::placeholder {
193
- color: #6b6b6b;
194
- opacity: 1;
463
+ .wy-button:not(.wy-button-link, :disabled)::before {
464
+ content: "";
465
+ z-index: 2;
466
+ position: absolute;
467
+ top: 0;
468
+ left: 0;
469
+ width: 100%;
470
+ height: 100%;
471
+ border-radius: inherit;
472
+ background: var(--wy-component-color);
473
+ opacity: 0%;
195
474
  }
196
- .wy-input:disabled, .wy-input-sm:disabled, .wy-avatar-input:disabled, [readonly].wy-input, [readonly].wy-input-sm, [readonly].wy-avatar-input {
197
- background-color: #cccccc;
198
- opacity: 1;
475
+ .wy-button:not(.wy-button-link, :disabled):hover::before {
476
+ opacity: 8%;
199
477
  }
200
- .wy-input::file-selector-button, .wy-input-sm::file-selector-button, .wy-avatar-input::file-selector-button {
201
- padding: 0.375rem 0.75rem;
202
- margin: -0.375rem -0.75rem;
203
- margin-inline-end: 0.75rem;
204
- color: #292929;
205
- background-color: #cccccc;
206
- pointer-events: none;
207
- border-color: inherit;
208
- border-style: solid;
209
- border-width: 0;
210
- border-inline-end-width: 1px;
211
- border-radius: 0;
212
- transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
478
+ .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 {
479
+ opacity: 12%;
213
480
  }
214
- @media (prefers-reduced-motion: reduce) {
215
- .wy-input::file-selector-button, .wy-input-sm::file-selector-button, .wy-avatar-input::file-selector-button {
216
- transition: none;
217
- }
481
+ .wy-button:not(.wy-button-icon) .wy-icon:first-child {
482
+ margin-left: -0.5rem;
218
483
  }
219
- .wy-input:hover:not(:disabled):not([readonly])::file-selector-button, .wy-input-sm:hover:not(:disabled):not([readonly])::file-selector-button, .wy-avatar-input:hover:not(:disabled):not([readonly])::file-selector-button {
220
- background-color: #c2c2c2;
484
+ .wy-button:not(.wy-button-icon) .wy-icon:last-child {
485
+ margin-right: -0.5rem;
221
486
  }
222
- .wy-input::-webkit-file-upload-button, .wy-input-sm::-webkit-file-upload-button, .wy-avatar-input::-webkit-file-upload-button {
223
- padding: 0.375rem 0.75rem;
224
- margin: -0.375rem -0.75rem;
225
- margin-inline-end: 0.75rem;
226
- color: #292929;
227
- background-color: #cccccc;
487
+ .wy-button:disabled {
488
+ opacity: var(--wy-opacity-disabled);
489
+ cursor: unset;
228
490
  pointer-events: none;
229
- border-color: inherit;
230
- border-style: solid;
231
- border-width: 0;
232
- border-inline-end-width: 1px;
233
- border-radius: 0;
234
- transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
235
- }
236
- @media (prefers-reduced-motion: reduce) {
237
- .wy-input::-webkit-file-upload-button, .wy-input-sm::-webkit-file-upload-button, .wy-avatar-input::-webkit-file-upload-button {
238
- transition: none;
239
- }
240
- }
241
- .wy-input:hover:not(:disabled):not([readonly])::-webkit-file-upload-button, .wy-input-sm:hover:not(:disabled):not([readonly])::-webkit-file-upload-button, .wy-avatar-input:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
242
- background-color: #c2c2c2;
243
491
  }
244
492
 
245
- .wy-input-sm, .wy-avatar-input {
246
- min-height: calc(1.5em + 0.5rem + 2px);
247
- padding: 0.25rem 0.5rem;
248
- font-size: 1rem;
249
- border-radius: 0.25rem;
493
+ .wy-button-icon {
494
+ --wy-component-color: var(--wy-on-surface-variant);
495
+ width: 2.5rem;
496
+ height: 2.5rem;
497
+ padding: 0.5rem;
498
+ line-height: 1;
499
+ border-radius: var(--wy-border-radius-pill);
500
+ border-width: 0;
250
501
  }
251
- .wy-input-sm::file-selector-button, .wy-avatar-input::file-selector-button {
252
- padding: 0.25rem 0.5rem;
253
- margin: -0.25rem -0.5rem;
254
- margin-inline-end: 0.5rem;
502
+ .wy-button-icon.wy-active {
503
+ --wy-component-color: var(--wy-primary);
255
504
  }
256
- .wy-input-sm::-webkit-file-upload-button, .wy-avatar-input::-webkit-file-upload-button {
257
- padding: 0.25rem 0.5rem;
258
- margin: -0.25rem -0.5rem;
259
- margin-inline-end: 0.5rem;
505
+
506
+ .wy-button-primary {
507
+ --wy-component-background-color: var(--wy-primary);
508
+ --wy-component-color: var(--wy-on-primary);
260
509
  }
261
510
 
262
- .wy-description {
263
- margin-top: 0.25rem;
264
- font-size: 0.875em;
265
- color: #6b6b6b;
511
+ .wy-button-variant {
512
+ --wy-component-background-color: var(--wy-surface-variant);
513
+ --wy-component-color: var(--wy-on-surface-variant);
266
514
  }
267
515
 
268
- .wy-label {
269
- margin-bottom: 0.5rem;
516
+ .wy-button-primary-text {
517
+ --wy-component-color: var(--wy-primary);
270
518
  }
271
519
 
272
- .wy-is-invalid {
273
- border-color: hsl(6deg, 71.1567324185%, 50%);
520
+ .wy-button-link {
521
+ padding: 0;
522
+ color: var(--wy-link-color, var(--wy-primary));
523
+ text-decoration: var(--wy-link-decoration, var(--wy-link-decoration));
274
524
  }
275
- .wy-is-invalid:focus {
276
- border-color: hsl(6deg, 71.1567324185%, 50%);
525
+ .wy-button-link:hover, .wy-button-link:focus {
526
+ text-decoration: var(--wy-link-hover-decoration, var(--wy-link-hover-decoration));
277
527
  }
278
528
 
279
- .wy-avatar {
280
- border-radius: 50%;
529
+ .wy-buttons {
530
+ display: flex;
531
+ align-items: center;
532
+ flex-wrap: wrap;
533
+ gap: 0.5rem;
281
534
  }
282
535
 
283
- .wy-avatar-header {
284
- padding: 1.5rem;
285
- margin-left: auto;
286
- margin-right: auto;
287
- text-align: center;
288
- }
536
+ :not(.wy-dark) .wy-code, .wy-code:not(.wy-dark) {
537
+ /*pre[class*="language-"]::-moz-selection,
538
+ pre[class*="language-"] ::-moz-selection,
539
+ code[class*="language-"]::-moz-selection,
540
+ code[class*="language-"] ::-moz-selection {
541
+ text-shadow: none;
542
+ background: #ffffff;
543
+ }
289
544
 
290
- .wy-avatar-input {
291
- background: #f2f2f2;
292
- border-color: transparent;
293
- text-align: center;
294
- margin-left: auto;
295
- margin-right: auto;
296
- margin-bottom: 1.5rem;
545
+ pre[class*="language-"]::selection,
546
+ pre[class*="language-"] ::selection,
547
+ code[class*="language-"]::selection,
548
+ code[class*="language-"] ::selection {
549
+ text-shadow: none;
550
+ background: #ffffff;
551
+ }*/
552
+ /* Code blocks */
553
+ }
554
+ :not(.wy-dark) .wy-code code[class*=language-],
555
+ :not(.wy-dark) .wy-code pre[class*=language-], .wy-code:not(.wy-dark) code[class*=language-],
556
+ .wy-code:not(.wy-dark) pre[class*=language-] {
557
+ color: #000000;
558
+ font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
559
+ text-align: left;
560
+ white-space: pre-wrap;
561
+ word-spacing: normal;
562
+ word-break: normal;
563
+ word-wrap: break-word;
564
+ line-height: 1.5;
565
+ -moz-tab-size: 4;
566
+ -o-tab-size: 4;
567
+ tab-size: 4;
568
+ -webkit-hyphens: none;
569
+ -moz-hyphens: none;
570
+ -ms-hyphens: none;
571
+ hyphens: none;
297
572
  }
298
-
299
- .wy-avatar-presence {
300
- position: relative;
573
+ @media print {
574
+ :not(.wy-dark) .wy-code code[class*=language-],
575
+ :not(.wy-dark) .wy-code pre[class*=language-], .wy-code:not(.wy-dark) code[class*=language-],
576
+ .wy-code:not(.wy-dark) pre[class*=language-] {
577
+ text-shadow: none;
578
+ }
579
+ }
580
+ :not(.wy-dark) .wy-code pre[class*=language-], .wy-code:not(.wy-dark) pre[class*=language-] {
581
+ padding: 1em;
582
+ margin: 0.5em 0;
583
+ overflow: auto;
584
+ }
585
+ :not(.wy-dark) .wy-code :not(pre) > code[class*=language-],
586
+ :not(.wy-dark) .wy-code pre[class*=language-], .wy-code:not(.wy-dark) :not(pre) > code[class*=language-],
587
+ .wy-code:not(.wy-dark) pre[class*=language-] {
588
+ color: white;
589
+ background: #ffffff;
590
+ }
591
+ :not(.wy-dark) .wy-code :not(pre) > code[class*=language-], .wy-code:not(.wy-dark) :not(pre) > code[class*=language-] {
592
+ padding: 0.1em;
593
+ border-radius: 0.3em;
594
+ white-space: normal;
595
+ }
596
+ :not(.wy-dark) .wy-code .token.comment, .wy-code:not(.wy-dark) .token.comment {
597
+ color: #008000;
598
+ }
599
+ :not(.wy-dark) .wy-code .token.builtin, .wy-code:not(.wy-dark) .token.builtin {
600
+ color: #0070C1;
601
+ }
602
+ :not(.wy-dark) .wy-code .token.number, .wy-code:not(.wy-dark) .token.number {
603
+ color: #098658;
604
+ }
605
+ :not(.wy-dark) .wy-code .token.variable, .wy-code:not(.wy-dark) .token.variable {
606
+ color: #098658;
607
+ }
608
+ :not(.wy-dark) .wy-code .token.inserted, .wy-code:not(.wy-dark) .token.inserted {
609
+ color: #098658;
610
+ }
611
+ :not(.wy-dark) .wy-code .token.operator, .wy-code:not(.wy-dark) .token.operator {
612
+ color: #000000;
613
+ }
614
+ :not(.wy-dark) .wy-code .token.constant, .wy-code:not(.wy-dark) .token.constant {
615
+ color: #811F3F;
616
+ }
617
+ :not(.wy-dark) .wy-code .token.hexcode, .wy-code:not(.wy-dark) .token.hexcode {
618
+ color: #811F3F;
619
+ }
620
+ :not(.wy-dark) .wy-code .token.regex, .wy-code:not(.wy-dark) .token.regex {
621
+ color: #811F3F;
622
+ }
623
+ :not(.wy-dark) .wy-code .token.char, .wy-code:not(.wy-dark) .token.char {
624
+ color: #811F3F;
625
+ }
626
+ :not(.wy-dark) .wy-code .token.tag, .wy-code:not(.wy-dark) .token.tag {
627
+ color: #800000;
628
+ }
629
+ :not(.wy-dark) .wy-code .token.attr-name, .wy-code:not(.wy-dark) .token.attr-name {
630
+ color: #FF0000;
631
+ }
632
+ :not(.wy-dark) .wy-code .token.selector, .wy-code:not(.wy-dark) .token.selector {
633
+ color: #FF0000;
301
634
  }
635
+ :not(.wy-dark) .wy-code .token.property, .wy-code:not(.wy-dark) .token.property {
636
+ color: #FF0000;
637
+ }
638
+ :not(.wy-dark) .wy-code .token.deleted, .wy-code:not(.wy-dark) .token.deleted {
639
+ color: #A31515;
640
+ }
641
+ :not(.wy-dark) .wy-code .token.string, .wy-code:not(.wy-dark) .token.string {
642
+ color: #A31515;
643
+ }
644
+ :not(.wy-dark) .wy-code .token.changed, .wy-code:not(.wy-dark) .token.changed {
645
+ color: #0451A5;
646
+ }
647
+ :not(.wy-dark) .wy-code .token.punctuation, .wy-code:not(.wy-dark) .token.punctuation {
648
+ color: #0451A5;
649
+ }
650
+ :not(.wy-dark) .wy-code .token.function, .wy-code:not(.wy-dark) .token.function {
651
+ color: #0000FF;
652
+ }
653
+ :not(.wy-dark) .wy-code .token.keyword, .wy-code:not(.wy-dark) .token.keyword {
654
+ color: #0000FF;
655
+ }
656
+ :not(.wy-dark) .wy-code .token.class-name, .wy-code:not(.wy-dark) .token.class-name {
657
+ color: #267F99;
658
+ }
659
+ :not(.wy-dark) .wy-code .token.important,
660
+ :not(.wy-dark) .wy-code .token.bold, .wy-code:not(.wy-dark) .token.important,
661
+ .wy-code:not(.wy-dark) .token.bold {
662
+ font-weight: bold;
663
+ }
664
+ :not(.wy-dark) .wy-code .token.italic, .wy-code:not(.wy-dark) .token.italic {
665
+ font-style: italic;
666
+ }
667
+ .wy-dark .wy-code, .wy-code.wy-dark {
668
+ /*pre[class*="language-"]::-moz-selection,
669
+ pre[class*="language-"] ::-moz-selection,
670
+ code[class*="language-"]::-moz-selection,
671
+ code[class*="language-"] ::-moz-selection {
672
+ text-shadow: none;
673
+ background: #1e1e1e;
674
+ }
302
675
 
303
- .wy-avatar-display-name {
304
- font-size: 1.5rem;
305
- font-weight: 300;
306
- line-height: 1.2;
307
- text-align: center;
676
+ pre[class*="language-"]::selection,
677
+ pre[class*="language-"] ::selection,
678
+ code[class*="language-"]::selection,
679
+ code[class*="language-"] ::selection {
680
+ text-shadow: none;
681
+ background: #1e1e1e;
682
+ }*/
683
+ /* Code blocks */
684
+ }
685
+ .wy-dark .wy-code code[class*=language-],
686
+ .wy-dark .wy-code pre[class*=language-], .wy-code.wy-dark code[class*=language-],
687
+ .wy-code.wy-dark pre[class*=language-] {
688
+ color: #d4d4d4;
689
+ font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
690
+ text-align: left;
691
+ white-space: pre-wrap;
692
+ word-spacing: normal;
693
+ word-break: normal;
694
+ word-wrap: break-word;
695
+ line-height: 1.5;
696
+ -moz-tab-size: 4;
697
+ -o-tab-size: 4;
698
+ tab-size: 4;
699
+ -webkit-hyphens: none;
700
+ -moz-hyphens: none;
701
+ -ms-hyphens: none;
702
+ hyphens: none;
703
+ }
704
+ @media print {
705
+ .wy-dark .wy-code code[class*=language-],
706
+ .wy-dark .wy-code pre[class*=language-], .wy-code.wy-dark code[class*=language-],
707
+ .wy-code.wy-dark pre[class*=language-] {
708
+ text-shadow: none;
709
+ }
710
+ }
711
+ .wy-dark .wy-code pre[class*=language-], .wy-code.wy-dark pre[class*=language-] {
712
+ padding: 1em;
713
+ margin: 0.5em 0;
714
+ overflow: auto;
715
+ }
716
+ .wy-dark .wy-code :not(pre) > code[class*=language-],
717
+ .wy-dark .wy-code pre[class*=language-], .wy-code.wy-dark :not(pre) > code[class*=language-],
718
+ .wy-code.wy-dark pre[class*=language-] {
719
+ color: white;
720
+ background: #1e1e1e;
721
+ }
722
+ .wy-dark .wy-code :not(pre) > code[class*=language-], .wy-code.wy-dark :not(pre) > code[class*=language-] {
723
+ padding: 0.1em;
724
+ border-radius: 0.3em;
725
+ white-space: normal;
726
+ }
727
+ .wy-dark .wy-code .token.prolog, .wy-code.wy-dark .token.prolog {
728
+ color: #8080ff;
729
+ }
730
+ .wy-dark .wy-code .token.comment, .wy-code.wy-dark .token.comment {
731
+ color: #6A9955;
732
+ }
733
+ .wy-dark .wy-code .token.punctuation, .wy-code.wy-dark .token.punctuation {
734
+ color: #6A9955;
735
+ }
736
+ .wy-dark .wy-code .token.builtin, .wy-code.wy-dark .token.builtin {
737
+ color: #4FC1FF;
738
+ }
739
+ .wy-dark .wy-code .token.number, .wy-code.wy-dark .token.number {
740
+ color: #B5CEA8;
741
+ }
742
+ .wy-dark .wy-code .token.variable, .wy-code.wy-dark .token.variable {
743
+ color: #B5CEA8;
744
+ }
745
+ .wy-dark .wy-code .token.inserted, .wy-code.wy-dark .token.inserted {
746
+ color: #B5CEA8;
747
+ }
748
+ .wy-dark .wy-code .token.operator, .wy-code.wy-dark .token.operator {
749
+ color: #D4D4D4;
750
+ }
751
+ .wy-dark .wy-code .token.constant, .wy-code.wy-dark .token.constant {
752
+ color: #646695;
753
+ }
754
+ .wy-dark .wy-code .token.hexcode, .wy-code.wy-dark .token.hexcode {
755
+ color: #646695;
756
+ }
757
+ .wy-dark .wy-code .token.tag, .wy-code.wy-dark .token.tag {
758
+ color: #569CD6;
759
+ }
760
+ .wy-dark .wy-code .token.changed, .wy-code.wy-dark .token.changed {
761
+ color: #569CD6;
762
+ }
763
+ .wy-dark .wy-code .token.function, .wy-code.wy-dark .token.function {
764
+ color: #569CD6;
765
+ }
766
+ .wy-dark .wy-code .token.keyword, .wy-code.wy-dark .token.keyword {
767
+ color: #569CD6;
768
+ }
769
+ .wy-dark .wy-code .token.attr-name, .wy-code.wy-dark .token.attr-name {
770
+ color: #9CDCFE;
771
+ }
772
+ .wy-dark .wy-code .token.selector, .wy-code.wy-dark .token.selector {
773
+ color: #9CDCFE;
774
+ }
775
+ .wy-dark .wy-code .token.property, .wy-code.wy-dark .token.property {
776
+ color: #9CDCFE;
777
+ }
778
+ .wy-dark .wy-code .token.deleted, .wy-code.wy-dark .token.deleted {
779
+ color: #CE9178;
780
+ }
781
+ .wy-dark .wy-code .token.string, .wy-code.wy-dark .token.string {
782
+ color: #CE9178;
783
+ }
784
+ .wy-dark .wy-code .token.regex, .wy-code.wy-dark .token.regex {
785
+ color: #D16969;
786
+ }
787
+ .wy-dark .wy-code .token.char, .wy-code.wy-dark .token.char {
788
+ color: #D16969;
789
+ }
790
+ .wy-dark .wy-code .token.class-name, .wy-code.wy-dark .token.class-name {
791
+ color: #4EC9B0;
792
+ }
793
+ .wy-dark .wy-code .token.important,
794
+ .wy-dark .wy-code .token.bold, .wy-code.wy-dark .token.important,
795
+ .wy-code.wy-dark .token.bold {
796
+ font-weight: bold;
797
+ }
798
+ .wy-dark .wy-code .token.italic, .wy-code.wy-dark .token.italic {
799
+ font-style: italic;
308
800
  }
309
801
 
310
- .wy-presence {
802
+ .wy-content {
803
+ overflow-wrap: break-word;
804
+ min-width: 0;
805
+ }
806
+ .wy-content :not(pre) > code {
807
+ overflow-wrap: inherit;
808
+ }
809
+ .wy-content pre, .wy-content pre > code[class*=language-] {
810
+ white-space: pre-wrap;
811
+ }
812
+ .wy-content :last-child {
813
+ margin-bottom: 0;
814
+ }
815
+ .wy-content:empty {
311
816
  display: none;
312
- background-color: #e6e6e6;
313
- width: 0.75rem;
314
- height: 0.75rem;
315
- border-radius: 50%;
316
- outline: 0.125rem solid #fff;
317
- position: absolute;
318
- bottom: 0;
319
- right: -5%;
320
817
  }
321
-
322
- .wy-presence-active {
323
- background-color: #66cc68;
324
- display: block;
818
+ :not(.wy-dark) .wy-content, .wy-content:not(.wy-dark) {
819
+ /*pre[class*="language-"]::-moz-selection,
820
+ pre[class*="language-"] ::-moz-selection,
821
+ code[class*="language-"]::-moz-selection,
822
+ code[class*="language-"] ::-moz-selection {
823
+ text-shadow: none;
824
+ background: #ffffff;
825
+ }
826
+
827
+ pre[class*="language-"]::selection,
828
+ pre[class*="language-"] ::selection,
829
+ code[class*="language-"]::selection,
830
+ code[class*="language-"] ::selection {
831
+ text-shadow: none;
832
+ background: #ffffff;
833
+ }*/
834
+ /* Code blocks */
835
+ }
836
+ :not(.wy-dark) .wy-content code[class*=language-],
837
+ :not(.wy-dark) .wy-content pre[class*=language-], .wy-content:not(.wy-dark) code[class*=language-],
838
+ .wy-content:not(.wy-dark) pre[class*=language-] {
839
+ color: #000000;
840
+ font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
841
+ text-align: left;
842
+ white-space: pre-wrap;
843
+ word-spacing: normal;
844
+ word-break: normal;
845
+ word-wrap: break-word;
846
+ line-height: 1.5;
847
+ -moz-tab-size: 4;
848
+ -o-tab-size: 4;
849
+ tab-size: 4;
850
+ -webkit-hyphens: none;
851
+ -moz-hyphens: none;
852
+ -ms-hyphens: none;
853
+ hyphens: none;
854
+ }
855
+ @media print {
856
+ :not(.wy-dark) .wy-content code[class*=language-],
857
+ :not(.wy-dark) .wy-content pre[class*=language-], .wy-content:not(.wy-dark) code[class*=language-],
858
+ .wy-content:not(.wy-dark) pre[class*=language-] {
859
+ text-shadow: none;
860
+ }
325
861
  }
326
-
327
- .wy-button {
328
- --wy-btn-padding-x: 0.75rem;
329
- --wy-btn-padding-y: 0.375rem;
330
- --wy-btn-font-family: ;
331
- --wy-btn-font-size: 1rem;
332
- --wy-btn-font-weight: 400;
333
- --wy-btn-line-height: 1.5;
334
- --wy-btn-color: #292929;
335
- --wy-btn-bg: transparent;
336
- --wy-btn-border-width: 1px;
337
- --wy-btn-border-color: transparent;
338
- --wy-btn-border-radius: 0.375rem;
339
- --wy-btn-box-shadow: unset;
340
- --wy-btn-disabled-opacity: 0.65;
341
- --wy-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--wy-btn-focus-shadow-rgb), .5);
342
- display: inline-block;
343
- padding: var(--wy-btn-padding-y) var(--wy-btn-padding-x);
344
- font-family: var(--wy-btn-font-family);
345
- font-size: var(--wy-btn-font-size);
346
- font-weight: var(--wy-btn-font-weight);
347
- line-height: var(--wy-btn-line-height);
348
- color: var(--wy-btn-color);
349
- text-align: center;
350
- vertical-align: middle;
351
- cursor: pointer;
352
- user-select: none;
353
- border: var(--wy-btn-border-width) solid var(--wy-btn-border-color);
354
- border-radius: var(--wy-btn-border-radius);
355
- background-color: var(--wy-btn-bg);
356
- box-shadow: var(--wy-btn-box-shadow);
357
- transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
862
+ :not(.wy-dark) .wy-content pre[class*=language-], .wy-content:not(.wy-dark) pre[class*=language-] {
863
+ padding: 1em;
864
+ margin: 0.5em 0;
865
+ overflow: auto;
358
866
  }
359
- @media (prefers-reduced-motion: reduce) {
360
- .wy-button {
361
- transition: none;
362
- }
867
+ :not(.wy-dark) .wy-content :not(pre) > code[class*=language-],
868
+ :not(.wy-dark) .wy-content pre[class*=language-], .wy-content:not(.wy-dark) :not(pre) > code[class*=language-],
869
+ .wy-content:not(.wy-dark) pre[class*=language-] {
870
+ color: white;
871
+ background: #ffffff;
363
872
  }
364
- .wy-button:hover {
365
- color: var(--wy-btn-hover-color);
366
- background-color: var(--wy-btn-hover-bg);
367
- border-color: var(--wy-btn-hover-border-color);
873
+ :not(.wy-dark) .wy-content :not(pre) > code[class*=language-], .wy-content:not(.wy-dark) :not(pre) > code[class*=language-] {
874
+ padding: 0.1em;
875
+ border-radius: 0.3em;
876
+ white-space: normal;
368
877
  }
369
- .btn-check:focus + .wy-button, .wy-button:focus {
370
- color: var(--wy-btn-hover-color);
371
- background-color: var(--wy-btn-hover-bg);
372
- border-color: var(--wy-btn-hover-border-color);
373
- outline: 0;
374
- box-shadow: var(--wy-btn-box-shadow), var(--wy-btn-focus-box-shadow);
878
+ :not(.wy-dark) .wy-content .token.comment, .wy-content:not(.wy-dark) .token.comment {
879
+ color: #008000;
375
880
  }
376
- .btn-check:checked + .wy-button, .btn-check:active + .wy-button, .wy-button:active, .active.wy-button, .show.wy-button {
377
- color: var(--wy-btn-active-color);
378
- background-color: var(--wy-btn-active-bg);
379
- border-color: var(--wy-btn-active-border-color);
380
- box-shadow: var(--wy-btn-active-shadow);
881
+ :not(.wy-dark) .wy-content .token.builtin, .wy-content:not(.wy-dark) .token.builtin {
882
+ color: #0070C1;
381
883
  }
382
- .btn-check:checked + .wy-button:focus, .btn-check:active + .wy-button:focus, .wy-button:active:focus, .active.wy-button:focus, .show.wy-button:focus {
383
- box-shadow: var(--wy-btn-active-shadow), var(--wy-btn-focus-box-shadow);
884
+ :not(.wy-dark) .wy-content .token.number, .wy-content:not(.wy-dark) .token.number {
885
+ color: #098658;
384
886
  }
385
- .wy-button:disabled, .disabled.wy-button, fieldset:disabled .wy-button {
386
- color: var(--wy-btn-disabled-color);
387
- pointer-events: none;
388
- background-color: var(--wy-btn-disabled-bg);
389
- border-color: var(--wy-btn-disabled-border-color);
390
- opacity: var(--wy-btn-disabled-opacity);
391
- box-shadow: none;
887
+ :not(.wy-dark) .wy-content .token.variable, .wy-content:not(.wy-dark) .token.variable {
888
+ color: #098658;
392
889
  }
393
-
394
- .wy-button-primary {
395
- --wy-btn-color: #fff;
396
- --wy-btn-bg: #156B93;
397
- --wy-btn-border-color: #156B93;
398
- --wy-btn-hover-color: #fff;
399
- --wy-btn-hover-bg: #125b7d;
400
- --wy-btn-hover-border-color: #115676;
401
- --wy-btn-focus-shadow-rgb: 56, 129, 163;
402
- --wy-btn-active-color: #fff;
403
- --wy-btn-active-bg: #115676;
404
- --wy-btn-active-border-color: #10506e;
405
- --wy-btn-active-shadow: unset;
406
- --wy-btn-disabled-color: #fff;
407
- --wy-btn-disabled-bg: #156B93;
408
- --wy-btn-disabled-border-color: #156B93;
890
+ :not(.wy-dark) .wy-content .token.inserted, .wy-content:not(.wy-dark) .token.inserted {
891
+ color: #098658;
409
892
  }
410
-
411
- .wy-button-link {
412
- --wy-btn-font-weight: 400;
413
- --wy-btn-color: var(--wy-link-color);
414
- --wy-btn-bg: transparent;
415
- --wy-btn-border-color: transparent;
416
- --wy-btn-hover-color: var(--wy-link-hover-color);
417
- --wy-btn-hover-border-color: transparent;
418
- --wy-btn-active-color: var(--wy-link-hover-color);
419
- --wy-btn-active-border-color: transparent;
420
- --wy-btn-disabled-color: #6b6b6b;
421
- --wy-btn-disabled-border-color: transparent;
422
- --wy-btn-box-shadow: none;
423
- --wy-btn-focus-shadow-rgb: 56, 129, 163;
424
- text-decoration: none;
893
+ :not(.wy-dark) .wy-content .token.operator, .wy-content:not(.wy-dark) .token.operator {
894
+ color: #000000;
425
895
  }
426
- .wy-button-link:focus {
427
- color: var(--wy-btn-color);
896
+ :not(.wy-dark) .wy-content .token.constant, .wy-content:not(.wy-dark) .token.constant {
897
+ color: #811F3F;
428
898
  }
429
- .wy-button-link:hover {
430
- color: var(--wy-btn-hover-color);
899
+ :not(.wy-dark) .wy-content .token.hexcode, .wy-content:not(.wy-dark) .token.hexcode {
900
+ color: #811F3F;
431
901
  }
432
-
433
- .wy-button {
434
- display: inline-flex;
435
- align-items: center;
436
- justify-content: center;
437
- gap: 0.25rem;
902
+ :not(.wy-dark) .wy-content .token.regex, .wy-content:not(.wy-dark) .token.regex {
903
+ color: #811F3F;
438
904
  }
439
- .wy-button:not(.wy-button-icon) .wy-icon:first-child {
440
- margin-left: -0.25rem;
905
+ :not(.wy-dark) .wy-content .token.char, .wy-content:not(.wy-dark) .token.char {
906
+ color: #811F3F;
441
907
  }
442
- .wy-button:not(.wy-button-icon) .wy-icon:last-child {
443
- margin-right: -0.25rem;
908
+ :not(.wy-dark) .wy-content .token.tag, .wy-content:not(.wy-dark) .token.tag {
909
+ color: #800000;
444
910
  }
445
-
446
- .wy-button:not(.wy-button-link, .wy-button-primary) {
447
- --wy-btn-hover-border-color: transparent;
448
- --wy-btn-active-border-color: transparent;
449
- --wy-btn-hover-color: var(--wy-btn-color);
450
- --wy-btn-hover-bg: rgba(0, 0, 0, 0.04);
451
- --wy-btn-focus-bg: rgba(0, 0, 0, 0.04);
452
- --wy-btn-active-color: var(--wy-btn-color);
453
- --wy-btn-active-bg: rgba(0, 0, 0, 0.12);
911
+ :not(.wy-dark) .wy-content .token.attr-name, .wy-content:not(.wy-dark) .token.attr-name {
912
+ color: #FF0000;
454
913
  }
455
- .wy-dark .wy-button:not(.wy-button-link, .wy-button-primary) {
456
- color: var(--wy-white);
914
+ :not(.wy-dark) .wy-content .token.selector, .wy-content:not(.wy-dark) .token.selector {
915
+ color: #FF0000;
457
916
  }
458
-
459
- .wy-button-icon {
460
- width: 2rem;
461
- height: 2rem;
462
- padding: 0.25rem;
463
- line-height: 1;
464
- border-radius: 50%;
465
- border-width: 0;
917
+ :not(.wy-dark) .wy-content .token.property, .wy-content:not(.wy-dark) .token.property {
918
+ color: #FF0000;
466
919
  }
467
-
468
- .wy-button-icon:not(.wy-button-primary) {
469
- color: rgba(0, 0, 0, 0.54);
920
+ :not(.wy-dark) .wy-content .token.deleted, .wy-content:not(.wy-dark) .token.deleted {
921
+ color: #A31515;
470
922
  }
471
- .wy-button-icon:not(.wy-button-primary):hover .wy-icon {
472
- color: rgba(0, 0, 0, 0.87);
923
+ :not(.wy-dark) .wy-content .token.string, .wy-content:not(.wy-dark) .token.string {
924
+ color: #A31515;
473
925
  }
474
- .wy-dark .wy-button-icon:not(.wy-button-primary) {
475
- color: rgba(255, 255, 255, 0.7);
926
+ :not(.wy-dark) .wy-content .token.changed, .wy-content:not(.wy-dark) .token.changed {
927
+ color: #0451A5;
476
928
  }
477
- .wy-dark .wy-button-icon:not(.wy-button-primary) .wy-icon {
478
- color: rgba(255, 255, 255, 0.7);
929
+ :not(.wy-dark) .wy-content .token.punctuation, .wy-content:not(.wy-dark) .token.punctuation {
930
+ color: #0451A5;
479
931
  }
480
- .wy-dark .wy-button-icon:not(.wy-button-primary):hover {
481
- color: rgb(255, 255, 255);
932
+ :not(.wy-dark) .wy-content .token.function, .wy-content:not(.wy-dark) .token.function {
933
+ color: #0000FF;
482
934
  }
483
- .wy-dark .wy-button-icon:not(.wy-button-primary):hover .wy-icon {
484
- color: rgb(255, 255, 255);
935
+ :not(.wy-dark) .wy-content .token.keyword, .wy-content:not(.wy-dark) .token.keyword {
936
+ color: #0000FF;
485
937
  }
486
-
487
- .wy-buttons {
488
- display: flex;
489
- align-items: center;
490
- flex-wrap: wrap;
491
- gap: 0.5rem;
938
+ :not(.wy-dark) .wy-content .token.class-name, .wy-content:not(.wy-dark) .token.class-name {
939
+ color: #267F99;
492
940
  }
941
+ :not(.wy-dark) .wy-content .token.important,
942
+ :not(.wy-dark) .wy-content .token.bold, .wy-content:not(.wy-dark) .token.important,
943
+ .wy-content:not(.wy-dark) .token.bold {
944
+ font-weight: bold;
945
+ }
946
+ :not(.wy-dark) .wy-content .token.italic, .wy-content:not(.wy-dark) .token.italic {
947
+ font-style: italic;
948
+ }
949
+ .wy-dark .wy-content, .wy-content.wy-dark {
950
+ /*pre[class*="language-"]::-moz-selection,
951
+ pre[class*="language-"] ::-moz-selection,
952
+ code[class*="language-"]::-moz-selection,
953
+ code[class*="language-"] ::-moz-selection {
954
+ text-shadow: none;
955
+ background: #1e1e1e;
956
+ }
493
957
 
494
- code[class*=language-], pre[class*=language-] {
495
- font-family: var(--wy-font-monospace);
496
- font-size: 1em;
497
- direction: ltr;
958
+ pre[class*="language-"]::selection,
959
+ pre[class*="language-"] ::selection,
960
+ code[class*="language-"]::selection,
961
+ code[class*="language-"] ::selection {
962
+ text-shadow: none;
963
+ background: #1e1e1e;
964
+ }*/
965
+ /* Code blocks */
966
+ }
967
+ .wy-dark .wy-content code[class*=language-],
968
+ .wy-dark .wy-content pre[class*=language-], .wy-content.wy-dark code[class*=language-],
969
+ .wy-content.wy-dark pre[class*=language-] {
970
+ color: #d4d4d4;
971
+ font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
498
972
  text-align: left;
499
- white-space: pre;
973
+ white-space: pre-wrap;
500
974
  word-spacing: normal;
501
975
  word-break: normal;
976
+ word-wrap: break-word;
502
977
  line-height: 1.5;
978
+ -moz-tab-size: 4;
979
+ -o-tab-size: 4;
503
980
  tab-size: 4;
981
+ -webkit-hyphens: none;
982
+ -moz-hyphens: none;
983
+ -ms-hyphens: none;
504
984
  hyphens: none;
505
985
  }
506
-
507
- pre[class*=language-] {
508
- background: #fff;
509
- font-size: 0.875em;
510
- padding: 1rem;
511
- margin: 0.5rem 0;
986
+ @media print {
987
+ .wy-dark .wy-content code[class*=language-],
988
+ .wy-dark .wy-content pre[class*=language-], .wy-content.wy-dark code[class*=language-],
989
+ .wy-content.wy-dark pre[class*=language-] {
990
+ text-shadow: none;
991
+ }
992
+ }
993
+ .wy-dark .wy-content pre[class*=language-], .wy-content.wy-dark pre[class*=language-] {
994
+ padding: 1em;
995
+ margin: 0.5em 0;
512
996
  overflow: auto;
513
997
  }
514
-
515
- .token.comment,
516
- .token.prolog,
517
- .token.doctype,
518
- .token.cdata {
519
- color: #008000;
520
- font-style: italic;
998
+ .wy-dark .wy-content :not(pre) > code[class*=language-],
999
+ .wy-dark .wy-content pre[class*=language-], .wy-content.wy-dark :not(pre) > code[class*=language-],
1000
+ .wy-content.wy-dark pre[class*=language-] {
1001
+ color: white;
1002
+ background: #1e1e1e;
521
1003
  }
522
-
523
- .token.namespace {
524
- opacity: 0.7;
1004
+ .wy-dark .wy-content :not(pre) > code[class*=language-], .wy-content.wy-dark :not(pre) > code[class*=language-] {
1005
+ padding: 0.1em;
1006
+ border-radius: 0.3em;
1007
+ white-space: normal;
525
1008
  }
526
-
527
- .token.string {
528
- color: #A31515;
1009
+ .wy-dark .wy-content .token.prolog, .wy-content.wy-dark .token.prolog {
1010
+ color: #8080ff;
529
1011
  }
530
-
531
- .token.url,
532
- .token.symbol,
533
- .token.number,
534
- .token.boolean,
535
- .token.variable,
536
- .token.constant,
537
- .token.inserted {
538
- color: #36acaa;
1012
+ .wy-dark .wy-content .token.comment, .wy-content.wy-dark .token.comment {
1013
+ color: #6A9955;
539
1014
  }
540
-
541
- .token.atrule,
542
- .token.keyword,
543
- .token.attr-value,
544
- .language-autohotkey .token.selector,
545
- .language-json .token.boolean,
546
- .language-json .token.number,
547
- code[class*=language-css] {
548
- color: #0000ff;
1015
+ .wy-dark .wy-content .token.punctuation, .wy-content.wy-dark .token.punctuation {
1016
+ color: #6A9955;
549
1017
  }
550
-
551
- .token.deleted,
552
- .language-autohotkey .token.tag {
553
- color: #9a050f;
1018
+ .wy-dark .wy-content .token.builtin, .wy-content.wy-dark .token.builtin {
1019
+ color: #4FC1FF;
554
1020
  }
555
-
556
- .token.selector,
557
- .language-autohotkey .token.keyword {
558
- color: #00009f;
1021
+ .wy-dark .wy-content .token.number, .wy-content.wy-dark .token.number {
1022
+ color: #B5CEA8;
559
1023
  }
560
-
561
- .token.important {
562
- color: #e90;
1024
+ .wy-dark .wy-content .token.variable, .wy-content.wy-dark .token.variable {
1025
+ color: #B5CEA8;
563
1026
  }
564
-
565
- .token.important,
566
- .token.bold {
567
- font-weight: 700;
1027
+ .wy-dark .wy-content .token.inserted, .wy-content.wy-dark .token.inserted {
1028
+ color: #B5CEA8;
568
1029
  }
569
-
570
- .token.italic {
571
- font-style: italic;
1030
+ .wy-dark .wy-content .token.operator, .wy-content.wy-dark .token.operator {
1031
+ color: #D4D4D4;
572
1032
  }
573
-
574
- .token.class-name,
575
- .language-json .token.property {
576
- color: #2B91AF;
1033
+ .wy-dark .wy-content .token.constant, .wy-content.wy-dark .token.constant {
1034
+ color: #646695;
577
1035
  }
578
-
579
- .token.tag,
580
- .token.selector {
581
- color: #800000;
1036
+ .wy-dark .wy-content .token.hexcode, .wy-content.wy-dark .token.hexcode {
1037
+ color: #646695;
582
1038
  }
583
-
584
- .token.attr-name,
585
- .token.property,
586
- .token.regex,
587
- .token.entity {
588
- color: #ff0000;
1039
+ .wy-dark .wy-content .token.tag, .wy-content.wy-dark .token.tag {
1040
+ color: #569CD6;
589
1041
  }
590
-
591
- .token.directive.tag .tag {
592
- background: #ffff00;
1042
+ .wy-dark .wy-content .token.changed, .wy-content.wy-dark .token.changed {
1043
+ color: #569CD6;
593
1044
  }
594
-
595
- .wy-hashtag {
596
- color: #6b6b6b;
1045
+ .wy-dark .wy-content .token.function, .wy-content.wy-dark .token.function {
1046
+ color: #569CD6;
597
1047
  }
598
-
599
- .wy-mention {
600
- font-weight: 500;
1048
+ .wy-dark .wy-content .token.keyword, .wy-content.wy-dark .token.keyword {
1049
+ color: #569CD6;
601
1050
  }
602
-
603
- .wy-dropdown-menu {
604
- position: absolute;
605
- z-index: 1000;
606
- display: none;
607
- min-width: 10rem;
608
- padding: 0.25rem 0;
609
- margin: 0;
610
- font-size: 1rem;
611
- color: #292929;
612
- text-align: left;
613
- list-style: none;
614
- background-color: #fff;
615
- background-clip: padding-box;
616
- border: 0 solid var(--wy-border-color-translucent);
617
- border-radius: 0.375rem;
618
- box-shadow: 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);
1051
+ .wy-dark .wy-content .token.attr-name, .wy-content.wy-dark .token.attr-name {
1052
+ color: #9CDCFE;
619
1053
  }
620
- [data-bs-popper].wy-dropdown-menu {
621
- top: 100%;
622
- left: 0;
623
- margin-top: 0.25rem;
1054
+ .wy-dark .wy-content .token.selector, .wy-content.wy-dark .token.selector {
1055
+ color: #9CDCFE;
624
1056
  }
625
-
626
- .wy-dropdown-divider {
627
- height: 0;
628
- margin: 0.25rem 0;
629
- overflow: hidden;
630
- border-top: 1px solid var(--wy-border-color-translucent);
1057
+ .wy-dark .wy-content .token.property, .wy-content.wy-dark .token.property {
1058
+ color: #9CDCFE;
631
1059
  }
632
-
633
- .wy-dropdown-item {
634
- display: block;
635
- width: 100%;
636
- padding: 0.75rem 0.75rem;
637
- clear: both;
638
- font-weight: 400;
639
- color: #292929;
640
- text-align: inherit;
641
- white-space: nowrap;
642
- background-color: transparent;
643
- border: 0;
1060
+ .wy-dark .wy-content .token.deleted, .wy-content.wy-dark .token.deleted {
1061
+ color: #CE9178;
644
1062
  }
645
- .wy-dropdown-item:hover, .wy-dropdown-item:focus {
646
- color: #252525;
647
- background-color: #f2f2f2;
1063
+ .wy-dark .wy-content .token.string, .wy-content.wy-dark .token.string {
1064
+ color: #CE9178;
648
1065
  }
649
- .active.wy-dropdown-item, .wy-dropdown-item:active {
650
- color: #383838;
651
- text-decoration: none;
652
- background-color: #e6e6e6;
1066
+ .wy-dark .wy-content .token.regex, .wy-content.wy-dark .token.regex {
1067
+ color: #D16969;
653
1068
  }
654
- .disabled.wy-dropdown-item, .wy-dropdown-item:disabled {
655
- color: gray;
656
- pointer-events: none;
657
- background-color: transparent;
1069
+ .wy-dark .wy-content .token.char, .wy-content.wy-dark .token.char {
1070
+ color: #D16969;
1071
+ }
1072
+ .wy-dark .wy-content .token.class-name, .wy-content.wy-dark .token.class-name {
1073
+ color: #4EC9B0;
1074
+ }
1075
+ .wy-dark .wy-content .token.important,
1076
+ .wy-dark .wy-content .token.bold, .wy-content.wy-dark .token.important,
1077
+ .wy-content.wy-dark .token.bold {
1078
+ font-weight: bold;
1079
+ }
1080
+ .wy-dark .wy-content .token.italic, .wy-content.wy-dark .token.italic {
1081
+ font-style: italic;
1082
+ }
1083
+
1084
+ .wy-hashtag {
1085
+ color: var(--wy-primary);
1086
+ }
1087
+
1088
+ .wy-mention {
1089
+ font-weight: 500;
658
1090
  }
659
1091
 
660
1092
  .wy-dropdown,
@@ -674,8 +1106,29 @@ code[class*=language-css] {
674
1106
  }
675
1107
 
676
1108
  .wy-dropdown-menu {
1109
+ --wy-component-background-color: var(--wy-surface-2);
1110
+ --wy-component-color: var(--wy-on-surface);
1111
+ background-color: var(--wy-component-background-color);
1112
+ color: var(--wy-component-color);
1113
+ position: absolute;
1114
+ z-index: 1000;
1115
+ min-width: 10rem;
1116
+ padding: 0 0;
1117
+ margin: 0;
1118
+ font-size: var(--wy-font-size-base);
1119
+ text-align: left;
1120
+ list-style: none;
1121
+ background-clip: padding-box;
1122
+ border-radius: var(--wy-border-radius);
1123
+ box-shadow: var(--wy-shadow-level1);
1124
+ overflow: hidden;
677
1125
  display: block;
678
1126
  }
1127
+ .wy-dropdown-menu[data-bs-popper] {
1128
+ top: 100%;
1129
+ left: 0;
1130
+ margin-top: 0.25rem;
1131
+ }
679
1132
  .wy-dropup .wy-dropdown-menu {
680
1133
  top: auto;
681
1134
  bottom: 100%;
@@ -694,16 +1147,51 @@ code[class*=language-css] {
694
1147
  }
695
1148
 
696
1149
  .wy-dropdown-item {
1150
+ background-color: transparent;
1151
+ color: var(--wy-component-color, var(--wy-on-surface));
1152
+ display: block;
1153
+ width: 100%;
1154
+ padding: 0.75rem 1rem;
1155
+ clear: both;
1156
+ font-family: inherit;
1157
+ font-size: inherit;
1158
+ font-weight: 400;
1159
+ line-height: 1;
1160
+ text-align: inherit;
1161
+ text-decoration: none;
1162
+ white-space: nowrap;
1163
+ border: 0;
1164
+ gap: 0.25rem;
697
1165
  cursor: pointer;
698
1166
  display: flex;
699
1167
  align-items: center;
700
1168
  }
1169
+ .wy-dropdown-item:hover, .wy-dropdown-item:focus {
1170
+ --wy-component-color: var(--wy-on-surface-variant);
1171
+ --wy-component-background-color: var(--wy-surface-variant);
1172
+ color: var(--wy-component-color);
1173
+ background-color: var(--wy-component-background-color);
1174
+ text-decoration: none;
1175
+ }
1176
+ .wy-dropdown-item.wy-active, .wy-dropdown-item:active {
1177
+ --wy-component-color: var(--wy-on-primary-container);
1178
+ --wy-component-background-color: var(--wy-primary-container);
1179
+ color: var(--wy-component-color);
1180
+ background-color: var(--wy-component-background-color);
1181
+ text-decoration: none;
1182
+ }
1183
+ .wy-dropdown-item.wy-disabled, .wy-dropdown-item:disabled {
1184
+ color: var(--wy-component-color);
1185
+ background-color: var(--wy-component-background-color);
1186
+ pointer-events: none;
1187
+ opacity: var(--wy-opacity-disabled);
1188
+ }
701
1189
  .wy-dropdown-item > img, .wy-dropdown-item .wy-icon {
702
1190
  margin-right: 0.5rem;
703
- color: rgba(0, 0, 0, 0.54);
1191
+ color: inherit;
704
1192
  }
705
1193
  .wy-dropdown-item:active > .wy-icon {
706
- color: rgba(0, 0, 0, 0.54);
1194
+ color: inherit;
707
1195
  }
708
1196
  .wy-dropdown-item.wy-option .wy-icon {
709
1197
  visibility: hidden;
@@ -712,6 +1200,14 @@ code[class*=language-css] {
712
1200
  visibility: visible;
713
1201
  }
714
1202
 
1203
+ .wy-dropdown-divider {
1204
+ height: 0;
1205
+ margin: 0;
1206
+ overflow: hidden;
1207
+ border: none;
1208
+ border-top: 1px solid var(--wy-outline-variant);
1209
+ }
1210
+
715
1211
  .wy-emoji {
716
1212
  width: 1.25rem;
717
1213
  height: 1.25rem;
@@ -725,77 +1221,174 @@ code[class*=language-css] {
725
1221
  flex: 0 0 auto;
726
1222
  position: relative;
727
1223
  }
728
- .wy-icon:not([width]) {
729
- width: 1.5rem;
1224
+ .wy-icon:not([width]) {
1225
+ width: 1.5rem;
1226
+ }
1227
+ .wy-icon:not([height]) {
1228
+ height: 1.5rem;
1229
+ }
1230
+
1231
+ .wy-icon-overlay {
1232
+ position: absolute;
1233
+ bottom: 0;
1234
+ right: 0;
1235
+ background: var(--wy-component-background-color, var(--wy-background));
1236
+ border-radius: 50%;
1237
+ border: 1px solid var(--wy-component-background-color, var(--wy-background));
1238
+ }
1239
+
1240
+ .wy-icon-stack {
1241
+ display: inline-flex;
1242
+ position: relative;
1243
+ line-height: 1;
1244
+ }
1245
+ .wy-icon-stack .wy-icon:last-child {
1246
+ position: absolute;
1247
+ bottom: 0;
1248
+ right: 0;
1249
+ background-color: var(--wy-component-background-color, var(--wy-background));
1250
+ border-radius: 50%;
1251
+ }
1252
+
1253
+ .wy-icon-active-stack {
1254
+ display: inline-flex;
1255
+ position: relative;
1256
+ line-height: 1;
1257
+ }
1258
+ .wy-icon-active-stack > * {
1259
+ transition: opacity var(--wy-transition);
1260
+ align-self: center;
1261
+ justify-self: center;
1262
+ margin: auto;
1263
+ }
1264
+ .wy-icon-active-stack > :last-child {
1265
+ position: absolute;
1266
+ opacity: 0;
1267
+ }
1268
+ .wy-icon-active-stack.wy-active > :first-child, .wy-active .wy-icon-active-stack > :first-child {
1269
+ opacity: 0;
1270
+ }
1271
+ .wy-icon-active-stack.wy-active > :last-child, .wy-active .wy-icon-active-stack > :last-child {
1272
+ opacity: 1;
1273
+ }
1274
+
1275
+ .wy-icon:not([class*=wy-icon-]):not([class*=wy-kind-]) * {
1276
+ fill: currentColor;
1277
+ }
1278
+
1279
+ .wy-content-icon {
1280
+ border-radius: var(--wy-component-border-radius, var(--wy-border-radius-lg));
1281
+ display: flex;
1282
+ align-items: center;
1283
+ justify-content: center;
1284
+ flex-direction: column;
1285
+ text-align: center;
1286
+ padding: 1rem 2rem;
1287
+ margin: auto;
1288
+ }
1289
+ .wy-content-icon > .wy-icon-stack, .wy-content-icon > .wy-icon {
1290
+ width: 4rem;
1291
+ height: 4rem;
1292
+ }
1293
+
1294
+ .wy-icon-primary * {
1295
+ fill: var(--wy-primary);
1296
+ }
1297
+
1298
+ .wy-icon-error * {
1299
+ fill: var(--wy-error);
1300
+ }
1301
+
1302
+ .wy-icon-blue * {
1303
+ fill: var(--wy-blue);
1304
+ }
1305
+
1306
+ .wy-icon-indigo * {
1307
+ fill: var(--wy-indigo);
1308
+ }
1309
+
1310
+ .wy-icon-purple * {
1311
+ fill: var(--wy-purple);
1312
+ }
1313
+
1314
+ .wy-icon-pink * {
1315
+ fill: var(--wy-pink);
1316
+ }
1317
+
1318
+ .wy-icon-red * {
1319
+ fill: var(--wy-red);
1320
+ }
1321
+
1322
+ .wy-icon-orange * {
1323
+ fill: var(--wy-orange);
1324
+ }
1325
+
1326
+ .wy-icon-yellow * {
1327
+ fill: var(--wy-yellow);
1328
+ }
1329
+
1330
+ .wy-icon-green * {
1331
+ fill: var(--wy-green);
730
1332
  }
731
- .wy-icon:not([height]) {
732
- height: 1.5rem;
1333
+
1334
+ .wy-icon-teal * {
1335
+ fill: var(--wy-teal);
733
1336
  }
734
1337
 
735
- .wy-icon-overlay {
736
- position: absolute;
737
- bottom: 0;
738
- right: 0;
739
- background: var(--wy-white);
740
- border-radius: 50%;
741
- border: 1px solid var(--wy-white);
1338
+ .wy-icon-cyan * {
1339
+ fill: var(--wy-cyan);
742
1340
  }
743
1341
 
744
- .wy-icon-stack {
745
- display: inline-block;
746
- position: relative;
747
- line-height: 1;
748
- width: 1.5rem;
749
- height: 1.5rem;
1342
+ .wy-icon-gray * {
1343
+ fill: var(--wy-gray);
750
1344
  }
751
- .wy-icon-stack .wy-icon:first-child {
752
- width: 100%;
753
- height: 100%;
1345
+
1346
+ [class*=wy-kind-] * {
1347
+ fill: var(--wy-gray);
754
1348
  }
755
- .wy-icon-stack .wy-icon:last-child {
756
- position: absolute;
757
- bottom: 0;
758
- right: 0;
759
- width: 50%;
760
- height: 50%;
761
- background-color: var(--wy-body-bg);
762
- border-radius: 50%;
1349
+
1350
+ .wy-kind-archive * {
1351
+ fill: var(--wy-orange);
763
1352
  }
764
1353
 
765
- .wy-icon:not([class*=wy-icon-]) * {
766
- fill: currentColor;
1354
+ .wy-kind-audio * {
1355
+ fill: var(--wy-teal);
767
1356
  }
768
1357
 
769
- .wy-icon-primary * {
770
- fill: var(--wy-primary);
1358
+ .wy-kind-code * {
1359
+ fill: var(--wy-green);
1360
+ }
1361
+
1362
+ .wy-kind-document * {
1363
+ fill: var(--wy-blue);
771
1364
  }
772
1365
 
773
- .wy-icon-secondary * {
774
- fill: var(--wy-secondary);
1366
+ .wy-kind-email * {
1367
+ fill: var(--wy-red);
775
1368
  }
776
1369
 
777
- .wy-icon-success * {
778
- fill: var(--wy-success);
1370
+ .wy-kind-presentation * {
1371
+ fill: var(--wy-orange);
779
1372
  }
780
1373
 
781
- .wy-icon-info * {
782
- fill: var(--wy-info);
1374
+ .wy-kind-spreadsheet * {
1375
+ fill: var(--wy-green);
783
1376
  }
784
1377
 
785
- .wy-icon-warning * {
786
- fill: var(--wy-warning);
1378
+ .wy-kind-image * {
1379
+ fill: var(--wy-pink);
787
1380
  }
788
1381
 
789
- .wy-icon-danger * {
790
- fill: var(--wy-danger);
1382
+ .wy-kind-text * {
1383
+ fill: var(--wy-cyan);
791
1384
  }
792
1385
 
793
- .wy-icon-light * {
794
- fill: var(--wy-light);
1386
+ .wy-kind-video * {
1387
+ fill: var(--wy-purple);
795
1388
  }
796
1389
 
797
- .wy-icon-dark * {
798
- fill: var(--wy-dark);
1390
+ .wy-ext-pdf * {
1391
+ fill: var(--wy-red);
799
1392
  }
800
1393
 
801
1394
  .wy-image-grid {
@@ -803,7 +1396,7 @@ code[class*=language-css] {
803
1396
  flex-wrap: wrap;
804
1397
  justify-content: space-evenly;
805
1398
  position: relative;
806
- border-radius: 0.375rem;
1399
+ border-radius: var(--wy-border-radius);
807
1400
  overflow: hidden;
808
1401
  column-gap: 1px;
809
1402
  row-gap: 1px;
@@ -835,8 +1428,7 @@ code[class*=language-css] {
835
1428
  .wy-image-grid .wy-more {
836
1429
  position: absolute;
837
1430
  line-height: 100%;
838
- color: #fff;
839
- background: rgba(0, 0, 0, 0.5);
1431
+ color: #ffffff;
840
1432
  top: 0;
841
1433
  left: 0;
842
1434
  bottom: 0;
@@ -845,113 +1437,303 @@ code[class*=language-css] {
845
1437
  align-items: center;
846
1438
  justify-content: center;
847
1439
  font-size: 1.5rem;
1440
+ background: rgba(0, 0, 0, var(--wy-opacity-disabled));
848
1441
  }
849
1442
 
850
- .wy-table-reactions {
851
- --bs-table-bg: transparent;
852
- --bs-table-accent-bg: transparent;
853
- --bs-table-striped-color: var(--wy-body-color);
854
- --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
855
- --bs-table-active-color: var(--wy-body-color);
856
- --bs-table-active-bg: rgba(0, 0, 0, 0.1);
857
- --bs-table-hover-color: var(--wy-body-color);
858
- --bs-table-hover-bg: #f2f2f2;
1443
+ .wy-input {
1444
+ --wy-component-background-color: var(--wy-background);
1445
+ --wy-component-color: var(--wy-on-background);
1446
+ background-color: var(--wy-component-background-color);
1447
+ color: var(--wy-component-color);
1448
+ border: var(--wy-input-border-width) solid var(--wy-outline-variant);
1449
+ display: block;
859
1450
  width: 100%;
860
- margin-bottom: 1rem;
861
- color: var(--wy-body-color);
862
- vertical-align: top;
863
- border-color: #e6e6e6;
1451
+ padding: var(--wy-input-padding-y) var(--wy-input-padding-x);
1452
+ font-family: var(--wy-font-family);
1453
+ font-size: var(--wy-input-font-size);
1454
+ font-weight: var(--wy-input-font-weight);
1455
+ line-height: var(--wy-input-line-height);
1456
+ background-clip: padding-box;
1457
+ appearance: none;
1458
+ border-radius: var(--wy-input-border-radius);
864
1459
  }
865
- .wy-table-reactions > :not(caption) > * > * {
866
- padding: 0.5rem 0.5rem;
867
- background-color: var(--bs-table-bg);
868
- border-bottom-width: 1px;
869
- box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
1460
+ .wy-input:focus {
1461
+ --wy-component-color: var(--wy-on-surface);
1462
+ color: var(--wy-component-color);
1463
+ border-color: var(--wy-primary);
1464
+ outline: 0;
870
1465
  }
871
- .wy-table-reactions > tbody {
872
- vertical-align: inherit;
1466
+ .wy-input::placeholder {
1467
+ color: var(--wy-outline);
1468
+ opacity: 1;
873
1469
  }
874
- .wy-table-reactions > thead {
875
- vertical-align: bottom;
1470
+ .wy-input:disabled {
1471
+ opacity: 38%;
876
1472
  }
877
-
878
- .wy-table-reactions {
879
- table-layout: fixed;
1473
+ .wy-input::file-selector-button, .wy-input::-webkit-file-upload-button {
1474
+ color: var(--wy-component-color);
1475
+ background-color: var(--wy-component-background-color);
1476
+ padding: var(--wy-input-padding-y) var(--wy-input-padding-x);
1477
+ margin: calc(-1 * var(--wy-input-padding-y)) calc(-1 * var(--wy-input-padding-x));
1478
+ margin-inline-end: var(--wy-input-padding-x);
1479
+ pointer-events: none;
1480
+ border-color: inherit;
1481
+ border-style: solid;
1482
+ border-width: 0;
1483
+ border-inline-end-width: var(--wy-input-border-width);
1484
+ border-radius: 0;
880
1485
  }
881
- .wy-table-reactions th:first-child, .wy-table-reactions th:last-child, .wy-table-reactions td:first-child, .wy-table-reactions td:last-child {
882
- color: rgba(0, 0, 0, 0.54) !important;
883
- vertical-align: middle;
884
- text-align: center;
885
- padding: 0.25rem 0.5rem;
886
- width: 2.5rem;
887
- font-size: 1rem;
888
- font-weight: 400;
889
- text-transform: none;
890
- letter-spacing: normal;
1486
+ .wy-input:hover:not(:disabled):not([readonly])::file-selector-button, .wy-input:hover:not(:disabled):not([readonly]) ::-webkit-file-upload-button {
1487
+ background-color: var(--wy-component-background-color);
891
1488
  }
892
- .wy-table-reactions th:first-child, .wy-table-reactions td:first-child {
893
- padding-right: 0;
1489
+ .wy-input[type=file] {
1490
+ overflow: hidden;
1491
+ }
1492
+ .wy-input[type=file]:not(:disabled):not([readonly]) {
1493
+ cursor: pointer;
894
1494
  }
895
- .wy-table-reactions th:last-child, .wy-table-reactions td:last-child {
896
- padding-left: 0;
1495
+ .wy-input::-webkit-date-and-time-value {
1496
+ height: calc(var(--wy-input-line-height) * 1em);
1497
+ }
1498
+ .wy-input[type=search]::-webkit-search-cancel-button {
1499
+ -webkit-appearance: none;
897
1500
  }
898
1501
 
899
- .wy-table-trashed th, .wy-table-trashed td {
900
- color: #6b6b6b;
901
- text-decoration: line-through;
1502
+ .wy-input-filled {
1503
+ --wy-component-background-color: var(--wy-surface-2);
1504
+ --wy-component-color: var(--wy-on-surface);
1505
+ background-color: var(--wy-component-background-color);
1506
+ color: var(--wy-component-color);
1507
+ border-radius: 1.25rem;
1508
+ border-color: var(--wy-component-background-color);
902
1509
  }
903
- .wy-table-trashed th:not(:last-child), .wy-table-trashed td:not(:last-child) {
904
- opacity: 0.65;
1510
+ .wy-input-filled:focus {
1511
+ border-color: var(--wy-outline-variant);
905
1512
  }
906
- .wy-table-trashed th > a, .wy-table-trashed td > a {
907
- color: #6b6b6b;
1513
+
1514
+ .wy-is-invalid, .wy-is-invalid:focus {
1515
+ border-color: var(--wy-error);
908
1516
  }
909
- .wy-table-trashed:hover th, .wy-table-trashed:hover td {
910
- opacity: 1;
1517
+
1518
+ .wy-description {
1519
+ margin-top: 0.25rem;
1520
+ font-size: var(--wy-font-size-sm);
911
1521
  }
912
1522
 
913
- .wy-reaction-count {
914
- margin: 0 0.25rem;
915
- line-height: 1;
916
- color: #6b6b6b;
917
- font-size: 0.875rem;
1523
+ .wy-input-label {
1524
+ display: block;
1525
+ margin-bottom: 0.5rem;
918
1526
  }
919
1527
 
920
- .wy-reaction-menu {
921
- padding: 0.5rem;
922
- font-size: 1.125rem;
923
- border-radius: 2.5rem;
1528
+ .wy-input-group {
1529
+ position: relative;
1530
+ }
1531
+ .wy-input-group > .wy-icon {
1532
+ position: absolute;
1533
+ top: 0rem;
1534
+ left: 0rem;
1535
+ z-index: 4;
1536
+ }
1537
+ .wy-input-group > .wy-icon + .wy-input {
1538
+ padding-left: 2.5rem;
1539
+ }
1540
+ .wy-input-group .wy-button-icon {
1541
+ position: absolute;
1542
+ top: 0rem;
1543
+ right: 0rem;
1544
+ z-index: 4;
1545
+ border-radius: var(--wy-input-border-radius);
1546
+ background: transparent;
1547
+ }
1548
+ .wy-input-group .wy-input-filled ~ .wy-button-icon {
1549
+ border-radius: 1.25rem;
1550
+ }
1551
+ .wy-input-group .wy-input {
1552
+ padding-right: 2.5rem;
1553
+ }
1554
+ .wy-input-group .wy-input:placeholder-shown ~ .wy-button-icon[type=reset] {
1555
+ display: none;
1556
+ }
1557
+ .wy-input-group .wy-input:not(:placeholder-shown) ~ .wy-button-icon[type=reset] + .wy-button-icon {
1558
+ display: none;
924
1559
  }
925
1560
 
926
- .wy-reaction-picker {
1561
+ .wy-item {
1562
+ position: relative;
927
1563
  display: flex;
1564
+ align-items: center;
1565
+ gap: 0.5rem;
1566
+ padding: 0.25rem 0.75rem;
1567
+ text-decoration: none;
1568
+ min-height: 3rem;
928
1569
  }
929
- .wy-reaction-picker .wy-reaction-button {
930
- color: unset;
1570
+ .wy-item > .wy-avatar, .wy-item > .wy-icon, .wy-item > .wy-icon-stack {
1571
+ margin-left: -0.25rem;
931
1572
  }
932
1573
 
933
- .wy-reactions {
934
- display: inline-flex;
935
- align-items: center;
936
- column-gap: 0.125rem;
1574
+ .wy-item-body {
1575
+ width: 100%;
1576
+ overflow: hidden;
1577
+ text-overflow: ellipsis;
1578
+ white-space: nowrap;
937
1579
  }
938
- .wy-reactions:empty {
939
- display: none;
1580
+ .wy-item-body > * {
1581
+ overflow: hidden;
1582
+ text-overflow: ellipsis;
1583
+ white-space: nowrap;
1584
+ }
1585
+ .wy-item-body + .wy-dropdown, .wy-item-body + .wy-button-icon, .wy-item-body + .wy-item-actions {
1586
+ margin-right: -0.5rem;
1587
+ }
1588
+ .wy-item-body + .wy-emoji {
1589
+ margin-right: 0.125rem;
940
1590
  }
941
1591
 
942
- .wy-table-reactions td:first-child {
943
- width: 2rem;
944
- padding-left: 0;
1592
+ .wy-item-title {
1593
+ color: var(--wy-on-background);
1594
+ font-weight: var(--wy-headings-font-weight);
1595
+ overflow: hidden;
1596
+ text-overflow: ellipsis;
1597
+ white-space: nowrap;
945
1598
  }
946
- .wy-table-reactions td:nth-child(2) {
947
- width: 100%;
1599
+
1600
+ .wy-item-text {
1601
+ color: var(--wy-outline);
948
1602
  overflow: hidden;
949
1603
  text-overflow: ellipsis;
950
1604
  white-space: nowrap;
1605
+ font-size: var(--wy-font-size-sm);
951
1606
  }
952
- .wy-table-reactions td:last-child {
953
- width: 2rem;
954
- padding-right: 0;
1607
+ .wy-item-text .wy-emoji, .wy-item-text .wy-icon {
1608
+ width: 1.25rem;
1609
+ height: 1.25rem;
1610
+ vertical-align: -0.3125rem;
1611
+ }
1612
+
1613
+ .wy-item-actions {
1614
+ --wy-component-background-color: transparent;
1615
+ display: flex;
1616
+ align-items: center;
1617
+ flex: 0 0 auto;
1618
+ }
1619
+
1620
+ .wy-item-actions-top {
1621
+ position: absolute;
1622
+ top: 0.25rem;
1623
+ right: 0.25rem;
1624
+ margin: 0 !important;
1625
+ }
1626
+
1627
+ .wy-item-actions-bottom {
1628
+ position: absolute;
1629
+ bottom: 0.25rem;
1630
+ right: 0.25rem;
1631
+ margin: 0 !important;
1632
+ }
1633
+
1634
+ .wy-item-body:has(+ .wy-item-actions-bottom) .wy-item-row:last-child {
1635
+ margin-right: 4.5rem;
1636
+ }
1637
+
1638
+ .wy-item-body:has(+ .wy-item-actions-top) .wy-item-row:first-child {
1639
+ margin-right: 2rem;
1640
+ }
1641
+
1642
+ .wy-item-row {
1643
+ display: flex;
1644
+ align-items: center;
1645
+ }
1646
+ .wy-item-row:first-child {
1647
+ margin-bottom: 0.125rem;
1648
+ }
1649
+ .wy-item-row .wy-item-title {
1650
+ margin-right: auto;
1651
+ }
1652
+ .wy-item-row .wy-item-text {
1653
+ margin-right: auto;
1654
+ }
1655
+ .wy-item-row .wy-meta {
1656
+ margin: 0 0.25rem;
1657
+ white-space: nowrap;
1658
+ }
1659
+
1660
+ .wy-item-hover {
1661
+ user-select: none;
1662
+ cursor: pointer;
1663
+ }
1664
+ .wy-item-hover:hover, .wy-item-hover:focus {
1665
+ --wy-component-background-color: var(--wy-surface-2);
1666
+ --wy-component-color: var(--wy-on-surface);
1667
+ background-color: var(--wy-component-background-color);
1668
+ color: var(--wy-component-color);
1669
+ text-decoration: none;
1670
+ }
1671
+ .wy-item-hover:active {
1672
+ --wy-component-background-color: var(--wy-surface-variant);
1673
+ --wy-component-color: var(--wy-on-surface-variant);
1674
+ background-color: var(--wy-component-background-color);
1675
+ color: var(--wy-component-color);
1676
+ }
1677
+ .wy-item-hover.wy-disabled, .wy-item-hover:disabled {
1678
+ opacity: var(--wy-opacity-disabled);
1679
+ pointer-events: none;
1680
+ }
1681
+ .wy-item-hover.wy-active {
1682
+ --wy-component-background-color: var(--wy-primary-container);
1683
+ --wy-component-color: var(--wy-on-primary-container);
1684
+ background-color: var(--wy-component-background-color);
1685
+ color: var(--wy-component-color);
1686
+ border-color: var(--wy-component-background-color);
1687
+ }
1688
+
1689
+ .wy-item-lg {
1690
+ padding: 0.75rem;
1691
+ min-height: 4.5rem;
1692
+ gap: 0.75rem;
1693
+ }
1694
+ .wy-item-lg > .wy-avatar, .wy-item-lg > .wy-icon, .wy-item-lg > .wy-icon-stack {
1695
+ margin-left: 0;
1696
+ }
1697
+
1698
+ .wy-list {
1699
+ border-radius: var(--wy-border-radius-sm);
1700
+ display: flex;
1701
+ flex-direction: column;
1702
+ gap: 1px;
1703
+ min-width: 0;
1704
+ }
1705
+ .wy-list .wy-item:not(.wy-item-hover) {
1706
+ --wy-component-background-color: var(--wy-background);
1707
+ --wy-component-color: var(--wy-on-background);
1708
+ background-color: var(--wy-component-background-color);
1709
+ color: var(--wy-component-color);
1710
+ }
1711
+ .wy-list .wy-item:first-child {
1712
+ border-top-left-radius: inherit;
1713
+ border-top-right-radius: inherit;
1714
+ }
1715
+ .wy-list .wy-item:last-child {
1716
+ border-bottom-left-radius: inherit;
1717
+ border-bottom-right-radius: inherit;
1718
+ }
1719
+
1720
+ .wy-list-bordered {
1721
+ border: 1px solid var(--wy-outline-variant);
1722
+ gap: 0;
1723
+ }
1724
+ .wy-list-bordered .wy-item {
1725
+ border-top: 1px solid var(--wy-outline-variant);
1726
+ border-left: none;
1727
+ border-right: none;
1728
+ }
1729
+ .wy-list-bordered .wy-item:first-child {
1730
+ border-top: none;
1731
+ }
1732
+ .wy-list-bordered .wy-item:last-child {
1733
+ border-bottom: none;
1734
+ }
1735
+ .wy-list-bordered .wy-item + .wy-list-bordered .wy-item {
1736
+ border-top-width: 0;
955
1737
  }
956
1738
 
957
1739
  .wy-messages {
@@ -964,18 +1746,19 @@ code[class*=language-css] {
964
1746
  }
965
1747
 
966
1748
  .wy-date-separator {
967
- font-size: 0.75rem;
1749
+ font-size: var(--wy-font-size-xs);
968
1750
  pointer-events: none;
969
1751
  margin: 0.5rem;
970
1752
  text-align: center;
971
1753
  position: sticky;
972
1754
  top: 1.5rem;
973
- z-index: 2;
1755
+ z-index: 10;
974
1756
  }
975
1757
  .wy-date-separator time {
976
- background: #f2f2f2;
1758
+ background: var(--wy-surface-3);
1759
+ color: var(--wy-on-surface);
977
1760
  padding: 0.25rem 0.5rem;
978
- border-radius: 0.375rem;
1761
+ border-radius: var(--wy-border-radius-sm);
979
1762
  display: inline-block;
980
1763
  }
981
1764
 
@@ -991,54 +1774,39 @@ code[class*=language-css] {
991
1774
  }
992
1775
  .wy-message .wy-image-grid,
993
1776
  .wy-message .wy-attachments {
994
- border-radius: 0.5rem;
995
- }
996
- .wy-message:hover .wy-message-buttons {
997
- opacity: 1;
998
- }
999
- .wy-message .wy-reaction-menu {
1000
- right: 0;
1777
+ border-radius: var(--wy-border-radius);
1001
1778
  }
1002
1779
 
1003
1780
  .wy-message-meta {
1004
- font-size: 0.75rem;
1781
+ font-size: var(--wy-font-size-xs);
1005
1782
  margin: 0 0 0.25rem 0.25rem;
1006
- color: #6b6b6b;
1783
+ color: var(--wy-on-surface-variant);
1007
1784
  }
1008
1785
 
1009
1786
  .wy-message-bubble {
1010
- background-color: #f2f2f2;
1011
- border-radius: 1rem;
1787
+ --wy-component-background-color: var(--wy-surface-variant);
1788
+ --wy-component-color: var(--wy-on-surface-variant);
1789
+ background-color: var(--wy-component-background-color);
1790
+ color: var(--wy-component-color);
1791
+ border-radius: calc(var(--wy-border-radius) + 0.5rem);
1012
1792
  display: flex;
1013
- flex-direction: row;
1014
- flex-wrap: wrap;
1793
+ flex-direction: column;
1015
1794
  padding: 0.75rem;
1795
+ gap: 0.75rem;
1016
1796
  max-width: min(32rem, 100% - 2rem);
1017
- min-width: 10rem;
1018
1797
  }
1019
1798
  .wy-message-bubble > div {
1020
- margin-bottom: 0.5rem;
1021
1799
  flex: 1 1 100%;
1022
1800
  }
1023
- .wy-message-bubble > div:last-of-type {
1024
- margin-bottom: 0;
1025
- }
1026
-
1027
- .wy-message-text {
1028
- overflow-wrap: break-word;
1029
- min-width: 0;
1030
- }
1031
- .wy-message-text :not(pre) > code {
1032
- overflow-wrap: inherit;
1033
- }
1034
- .wy-message-text pre, .wy-message-text pre > code {
1035
- white-space: pre-wrap;
1036
- }
1037
- .wy-message-text :last-child {
1038
- margin-bottom: 0;
1039
- }
1040
- .wy-message-text:empty {
1041
- display: none;
1801
+ .wy-message-bubble .wy-reactions-line {
1802
+ position: relative;
1803
+ height: 0;
1804
+ min-height: 0;
1805
+ max-height: 0;
1806
+ margin: 0 -0.75rem -0.75rem;
1807
+ flex: 0 0 0;
1808
+ flex-direction: row-reverse;
1809
+ justify-content: flex-end;
1042
1810
  }
1043
1811
 
1044
1812
  .wy-message-author {
@@ -1054,15 +1822,6 @@ code[class*=language-css] {
1054
1822
  min-width: 0;
1055
1823
  position: relative;
1056
1824
  }
1057
- .wy-message-content .wy-reactions {
1058
- position: absolute;
1059
- bottom: -0.75rem;
1060
- left: 0.75rem;
1061
- background: #f2f2f2;
1062
- border-radius: 1.5rem;
1063
- border: 1px solid #f2f2f2;
1064
- padding: 0.125rem;
1065
- }
1066
1825
 
1067
1826
  .wy-message-content-row {
1068
1827
  display: flex;
@@ -1071,14 +1830,6 @@ code[class*=language-css] {
1071
1830
  max-width: 100%;
1072
1831
  }
1073
1832
 
1074
- .wy-message-buttons {
1075
- display: flex;
1076
- flex-direction: row;
1077
- column-gap: 0.25rem;
1078
- margin: 0.25rem;
1079
- opacity: 0;
1080
- }
1081
-
1082
1833
  .wy-message-me {
1083
1834
  margin-right: 0;
1084
1835
  margin-left: 2.5rem;
@@ -1093,32 +1844,31 @@ code[class*=language-css] {
1093
1844
  .wy-message-me .wy-message-content-row {
1094
1845
  flex-direction: row-reverse;
1095
1846
  }
1096
- .wy-message-me .wy-message-buttons {
1097
- flex-direction: row-reverse;
1098
- }
1099
1847
  .wy-message-me .wy-message-bubble {
1100
- background-color: #e9f6fc;
1848
+ --wy-component-background-color: var(--wy-primary-container);
1849
+ --wy-component-color: var(--wy-on-primary-container);
1850
+ background-color: var(--wy-component-background-color);
1851
+ color: var(--wy-component-color);
1101
1852
  }
1102
- .wy-message-me .wy-reaction-menu {
1103
- justify-content: flex-start;
1104
- right: auto;
1853
+ .wy-message-me .wy-reactions-line {
1854
+ flex-direction: row;
1105
1855
  }
1106
- .wy-message-me .wy-reactions {
1107
- background: #e9f6fc;
1108
- border-color: #e9f6fc;
1109
- left: auto;
1110
- right: 0.75rem;
1856
+ .wy-message-me .wy-reactions-line .wy-dropdown-menu {
1857
+ right: 0;
1111
1858
  }
1112
1859
 
1113
1860
  .wy-message-emoji .wy-message-bubble {
1114
1861
  background: none;
1115
- padding: 0;
1862
+ padding: 0 0 0.75rem;
1116
1863
  }
1117
- .wy-message-emoji .wy-message-text .wy-emoji {
1864
+ .wy-message-emoji .wy-content .wy-emoji {
1118
1865
  width: 3rem;
1119
1866
  height: 3rem;
1120
1867
  margin: 0;
1121
1868
  }
1869
+ .wy-message-emoji.wy-message-me .wy-content {
1870
+ text-align: end;
1871
+ }
1122
1872
 
1123
1873
  .wy-readby-status {
1124
1874
  display: flex;
@@ -1130,71 +1880,73 @@ code[class*=language-css] {
1130
1880
  margin-left: 0.25rem;
1131
1881
  }
1132
1882
 
1133
- .wy-message-toaster {
1134
- position: sticky;
1135
- top: 3.5rem;
1136
- bottom: 3.5rem;
1137
- cursor: pointer;
1138
- z-index: 3;
1139
- border-radius: 50rem;
1140
- background-color: #156B93;
1141
- color: #fff;
1142
- padding: 0.5rem 1rem;
1143
- margin-left: auto;
1144
- margin-right: auto;
1145
- margin-bottom: 0.5rem;
1146
- font-size: 0.875rem;
1147
- width: max-content;
1148
- align-self: center;
1149
- text-align: center;
1150
- color: #fff;
1151
- }
1152
-
1153
1883
  .wy-message-readmore {
1154
1884
  justify-self: center;
1155
1885
  text-align: center;
1156
1886
  }
1157
1887
 
1158
- .wy-message-editor {
1159
- backface-visibility: hidden;
1160
- background-color: rgba(242, 242, 242, 0.95);
1888
+ .wy-message-editor-top {
1889
+ background-color: var(--wy-component-background-color);
1890
+ color: var(--wy-component-color);
1161
1891
  }
1162
1892
  @supports (position: sticky) {
1163
- .wy-message-editor {
1893
+ .wy-message-editor-top {
1164
1894
  position: sticky;
1165
- bottom: 0;
1895
+ top: 0;
1166
1896
  z-index: 1020;
1167
1897
  }
1168
1898
  }
1169
- @supports (backdrop-filter: blur(0.5rem)) {
1170
- .wy-message-editor {
1171
- backdrop-filter: blur(0.5rem);
1899
+
1900
+ .wy-message-editor-bottom {
1901
+ background-color: var(--wy-component-background-color);
1902
+ color: var(--wy-component-color);
1903
+ }
1904
+ @supports (position: sticky) {
1905
+ .wy-message-editor-bottom {
1906
+ position: sticky;
1907
+ bottom: 0;
1908
+ z-index: 1020;
1172
1909
  }
1173
1910
  }
1174
1911
 
1912
+ .wy-message-editor-dragging::after {
1913
+ content: "Drop files here to upload.";
1914
+ background-color: rgba(255, 255, 255, 0.5);
1915
+ display: flex;
1916
+ justify-content: center;
1917
+ align-items: center;
1918
+ border: 2px dashed var(--wy-primary);
1919
+ font-weight: 700;
1920
+ z-index: 10000;
1921
+ position: absolute;
1922
+ top: 0;
1923
+ left: 0;
1924
+ bottom: 0;
1925
+ right: 0;
1926
+ }
1927
+
1175
1928
  .wy-message-form .wy-spinner {
1176
1929
  display: none;
1177
1930
  }
1178
1931
  .wy-message-form.wy-uploading .wy-spinner {
1179
1932
  display: block;
1180
1933
  }
1181
- .wy-message-form.wy-uploading .wy-icon-attachment {
1934
+ .wy-message-form.wy-uploading [data-icon=plus] {
1182
1935
  display: none;
1183
1936
  }
1184
1937
  .wy-message-form .wy-picker-list:not(:empty) {
1185
- border-top: 1px solid #cccccc;
1938
+ border-top: 1px solid var(--wy-outline-variant);
1186
1939
  }
1187
1940
 
1188
1941
  .wy-message-editor-inputs {
1189
1942
  display: flex;
1190
1943
  flex-direction: row;
1191
1944
  align-items: flex-end;
1192
- border-top: 1px solid rgba(204, 204, 204, 0.95);
1193
- padding: 0.5rem;
1194
- min-height: 3rem;
1945
+ padding: 0.5rem 0.25rem;
1946
+ min-height: 3.5rem;
1195
1947
  }
1196
1948
  .wy-message-editor-inputs > :not(:last-child) {
1197
- margin-right: 0.5rem;
1949
+ margin-right: 0.25rem;
1198
1950
  }
1199
1951
 
1200
1952
  .wy-message-editor-buttons {
@@ -1207,21 +1959,36 @@ code[class*=language-css] {
1207
1959
  flex-direction: column;
1208
1960
  }
1209
1961
 
1962
+ .wy-message-editor-mention {
1963
+ background: blue;
1964
+ color: white;
1965
+ }
1966
+
1967
+ .wy-message-editor-link {
1968
+ background: blue;
1969
+ color: white;
1970
+ }
1971
+
1210
1972
  .wy-message-editor-grow::after,
1211
1973
  .wy-message-editor-grow > textarea,
1212
1974
  .wy-message-editor-textfield {
1213
1975
  flex: 1 1 100%;
1214
- outline: #f2f2f2 solid 1px;
1215
- max-height: 10.2rem;
1216
- background-color: #fff;
1217
- border-radius: 1rem;
1218
- border: none;
1976
+ max-height: 11.25rem;
1977
+ background-color: var(--wy-background);
1978
+ color: var(--wy-on-background);
1979
+ border-radius: 1.25rem;
1980
+ border: var(--wy-input-border-width) solid var(--wy-background);
1981
+ }
1982
+ .wy-message-editor-grow:focus::after,
1983
+ .wy-message-editor-grow > textarea:focus,
1984
+ .wy-message-editor-textfield:focus {
1985
+ border-color: var(--wy-outline-variant);
1219
1986
  }
1220
1987
 
1221
1988
  .wy-message-editor-textcontent {
1222
- font-family: var(--wy-font-sans-serif);
1223
- font-size: 1rem;
1224
- padding: 0.375rem 0.75rem;
1989
+ font-family: var(--wy-font-family);
1990
+ font-size: var(--wy-font-size-base);
1991
+ padding: var(--wy-input-padding-y) var(--wy-input-padding-x);
1225
1992
  }
1226
1993
 
1227
1994
  .wy-message-editor-grow {
@@ -1241,6 +2008,15 @@ code[class*=language-css] {
1241
2008
  overflow: hidden;
1242
2009
  }
1243
2010
 
2011
+ .wy-meta {
2012
+ color: var(--wy-outline);
2013
+ font-size: var(--wy-font-size-sm);
2014
+ }
2015
+
2016
+ .wy-meta-sm {
2017
+ font-size: var(--wy-font-size-xs);
2018
+ }
2019
+
1244
2020
  .wy-viewport {
1245
2021
  position: fixed;
1246
2022
  top: 0;
@@ -1269,7 +2045,7 @@ code[class*=language-css] {
1269
2045
  perspective-origin: center center;
1270
2046
  }
1271
2047
  .wy-overlays .wy-panel {
1272
- background-color: rgba(255, 255, 255, 0.95);
2048
+ background-color: var(--wy-background);
1273
2049
  }
1274
2050
  .wy-overlays .wy-panel:not(.wy-transition) {
1275
2051
  transform: translateZ(-4rem) !important;
@@ -1281,7 +2057,7 @@ code[class*=language-css] {
1281
2057
  transition: opacity 0.1s 0.2s step-end;
1282
2058
  }
1283
2059
  .wy-overlays .wy-panel .wy-controls .wy-icon {
1284
- color: rgba(0, 0, 0, 0.54);
2060
+ color: var(--wy-on-surface);
1285
2061
  }
1286
2062
  .wy-overlays .wy-panel.wy-loaded .wy-controls {
1287
2063
  pointer-events: none;
@@ -1290,57 +2066,6 @@ code[class*=language-css] {
1290
2066
  .wy-overlays .wy-panel .wy-panel-frame {
1291
2067
  background-color: transparent;
1292
2068
  }
1293
- .wy-overlays .wy-panel.wy-controls-light .wy-icon {
1294
- color: rgba(0, 0, 0, 0.54);
1295
- }
1296
- .wy-overlays .wy-panel.wy-light {
1297
- background-color: rgba(255, 255, 255, 0.95);
1298
- }
1299
- .wy-overlays .wy-panel.wy-light .wy-icon {
1300
- color: rgba(0, 0, 0, 0.54);
1301
- }
1302
- .wy-overlays .wy-panel.wy-controls-dark .wy-icon {
1303
- color: rgba(255, 255, 255, 0.62);
1304
- }
1305
- .wy-overlays .wy-panel.wy-controls-dark .wy-icon:hover, .wy-overlays .wy-panel.wy-controls-dark .wy-icon:focus {
1306
- color: rgba(255, 255, 255, 0.95);
1307
- }
1308
- .wy-overlays .wy-panel.wy-controls-dark .wy-icon:active {
1309
- color: #fff;
1310
- }
1311
- .wy-overlays .wy-panel.wy-dark {
1312
- background-color: rgba(21, 21, 21, 0.95);
1313
- }
1314
- .wy-overlays .wy-panel.wy-dark .wy-icon {
1315
- color: rgba(255, 255, 255, 0.62);
1316
- }
1317
- .wy-overlays .wy-panel.wy-dark .wy-icon:hover, .wy-overlays .wy-panel.wy-dark .wy-icon:focus {
1318
- color: rgba(255, 255, 255, 0.95);
1319
- }
1320
- .wy-overlays .wy-panel.wy-dark .wy-icon:active {
1321
- color: #fff;
1322
- }
1323
- .wy-overlays .wy-panel.wy-dark.wy-open[data-title]::before {
1324
- background: rgba(41, 41, 41, 0.95);
1325
- color: rgba(255, 255, 255, 0.62);
1326
- border-bottom: 1px #000 solid;
1327
- }
1328
- @media (min-width: 768px) {
1329
- .wy-overlays .wy-panel.wy-floating {
1330
- left: 1rem;
1331
- top: 1rem;
1332
- right: 1rem;
1333
- bottom: 1rem;
1334
- border-radius: 0.1875rem;
1335
- box-shadow: 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);
1336
- }
1337
- .wy-overlays .wy-panel.wy-floating:not(.wy-scroll-y) {
1338
- overflow: hidden;
1339
- }
1340
- }
1341
- .wy-overlays .wy-panel.wy-modal {
1342
- background-color: rgba(255, 255, 255, 0.95);
1343
- }
1344
2069
  @media (min-width: 768px) {
1345
2070
  .wy-overlays .wy-panel.wy-modal {
1346
2071
  left: auto;
@@ -1351,8 +2076,8 @@ code[class*=language-css] {
1351
2076
  margin-top: auto;
1352
2077
  margin-right: 4rem;
1353
2078
  margin-bottom: auto;
1354
- border-radius: 0.25rem;
1355
- box-shadow: 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);
2079
+ border-radius: var(--wy-border-radius);
2080
+ box-shadow: var(--wy-shadow-level4);
1356
2081
  width: 32rem;
1357
2082
  max-height: 32rem;
1358
2083
  }
@@ -1360,8 +2085,24 @@ code[class*=language-css] {
1360
2085
  overflow: hidden;
1361
2086
  }
1362
2087
  }
2088
+ @media (min-width: 768px) {
2089
+ .wy-overlays .wy-panel.wy-modal-full {
2090
+ left: 1rem;
2091
+ top: 1rem;
2092
+ right: 1rem;
2093
+ bottom: 1rem;
2094
+ margin: 0;
2095
+ border-radius: var(--wy-border-radius);
2096
+ box-shadow: var(--wy-shadow-level4);
2097
+ width: auto;
2098
+ max-height: none;
2099
+ }
2100
+ .wy-overlays .wy-panel.wy-modal-full:not(.wy-scroll-y) {
2101
+ overflow: hidden;
2102
+ }
2103
+ }
1363
2104
  .wy-overlays .wy-panel.wy-loading .wy-controls {
1364
- transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
2105
+ transition: opacity var(--wy-transition);
1365
2106
  opacity: 1;
1366
2107
  }
1367
2108
 
@@ -1369,7 +2110,7 @@ code[class*=language-css] {
1369
2110
  pointer-events: none;
1370
2111
  }
1371
2112
 
1372
- a.wy-pager {
2113
+ :not(tr).wy-pager {
1373
2114
  display: block;
1374
2115
  text-align: center;
1375
2116
  margin: 1rem auto;
@@ -1384,11 +2125,17 @@ tr.wy-pager td .wy-spinner {
1384
2125
  margin: 1rem auto;
1385
2126
  }
1386
2127
 
2128
+ .wy-grid .wy-pager {
2129
+ display: flex;
2130
+ }
2131
+
1387
2132
  .wy-pane {
1388
- min-height: 100vh;
1389
2133
  display: flex;
1390
2134
  flex-direction: column;
1391
2135
  position: relative;
2136
+ min-height: 0;
2137
+ height: 100%;
2138
+ flex: 1 1 auto;
1392
2139
  }
1393
2140
 
1394
2141
  .wy-pane-body {
@@ -1398,7 +2145,14 @@ tr.wy-pager td .wy-spinner {
1398
2145
  }
1399
2146
 
1400
2147
  .wy-pane-group {
1401
- padding: 0.5rem;
2148
+ padding: 0.75rem;
2149
+ }
2150
+
2151
+ .wy-pane-background {
2152
+ --wy-component-background-color: var(--wy-background);
2153
+ --wy-component-color: var(--wy-on-background);
2154
+ background-color: var(--wy-component-background-color);
2155
+ color: var(--wy-component-color);
1402
2156
  }
1403
2157
 
1404
2158
  .wy-panels {
@@ -1420,34 +2174,36 @@ tr.wy-pager td .wy-spinner {
1420
2174
  left: 0;
1421
2175
  pointer-events: none;
1422
2176
  overflow: hidden;
1423
- background-color: rgba(255, 255, 255, 0.95);
2177
+ background-color: var(--wy-background);
1424
2178
  display: flex;
1425
2179
  flex-direction: column;
1426
2180
  }
1427
2181
  .wy-panel .wy-controls {
1428
- top: 0.5rem;
1429
- left: 0.5rem;
1430
- min-width: 2rem;
2182
+ top: 0.25rem;
2183
+ left: 0.25rem;
2184
+ min-width: 2.5rem;
1431
2185
  width: auto;
1432
2186
  display: flex;
1433
2187
  z-index: 10000;
1434
2188
  order: -1;
1435
2189
  flex-direction: row-reverse;
1436
- border-bottom: 1px solid #cccccc;
2190
+ border-bottom: 1px solid var(--wy-outline-variant);
1437
2191
  }
1438
2192
  .wy-panel .wy-controls:empty {
1439
2193
  display: none;
1440
2194
  }
1441
2195
  .wy-panel .wy-controls .wy-icon {
1442
- color: rgba(0, 0, 0, 0.54);
2196
+ color: var(--wy-on-background);
1443
2197
  }
1444
2198
  .wy-panel .wy-panel-frame {
1445
- transition: opacity 0.1s 0.2s cubic-bezier(0.4, 0, 0.2, 1);
2199
+ transition: opacity var(--wy-transition-fast);
2200
+ transition-delay: 0.2s;
1446
2201
  opacity: 1;
1447
2202
  }
1448
2203
  .wy-panel:not(.wy-loaded) .wy-panel-frame {
1449
2204
  opacity: 0;
1450
- transition: opacity 0.2s 0.1s step-start;
2205
+ transition: opacity 0.2s step-start;
2206
+ transition-delay: 0.1s;
1451
2207
  }
1452
2208
  .wy-panel.wy-open {
1453
2209
  pointer-events: all;
@@ -1459,19 +2215,21 @@ tr.wy-pager td .wy-spinner {
1459
2215
  top: 0;
1460
2216
  left: 0;
1461
2217
  right: 0;
1462
- height: 2.9375rem;
2218
+ height: 3rem;
2219
+ padding: 0.25rem;
1463
2220
  opacity: 0;
1464
2221
  pointer-events: none;
1465
2222
  display: flex;
1466
2223
  align-items: center;
1467
2224
  justify-content: center;
1468
- background-color: rgba(242, 242, 242, 0.95);
1469
- color: rgba(0, 0, 0, 0.69);
1470
- border-bottom: 1px solid #cccccc;
1471
- transition: opacity 0.1s 0.2s step-end;
1472
- font-family: var(--wy-font-sans-serif);
1473
- line-height: 1.5;
1474
- font-weight: 400;
2225
+ transition: opacity 0.1s step-end;
2226
+ transition-delay: 0.2s;
2227
+ font-family: inherit;
2228
+ line-height: var(--wy-line-height);
2229
+ font-weight: var(--wy-font-weight);
2230
+ background-color: var(--wy-surface-1);
2231
+ color: var(--wy-on-surface);
2232
+ box-shadow: var(--wy-outline-variant) 0px -1px 0px 0px inset;
1475
2233
  backface-visibility: hidden;
1476
2234
  }
1477
2235
  @supports (backdrop-filter: blur(0.5rem)) {
@@ -1488,14 +2246,15 @@ tr.wy-pager td .wy-spinner {
1488
2246
  right: 0;
1489
2247
  pointer-events: none;
1490
2248
  opacity: 0;
1491
- transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0s;
2249
+ transition: opacity var(--wy-transition);
2250
+ transition-duration: 0s;
1492
2251
  }
1493
2252
  .wy-panel.wy-open.wy-loading[data-title]::before {
1494
- transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
1495
2253
  opacity: 1;
1496
2254
  }
1497
2255
  .wy-panel.wy-open.wy-loading::after {
1498
- transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
2256
+ transition: opacity var(--wy-transition);
2257
+ transition-duration: 0.5s;
1499
2258
  opacity: 1;
1500
2259
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' width='24' height='24' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cstyle type='text/css'%3Eg%7Banimation:rotate 2s linear infinite;transform-origin:center center%7Dcircle%7Bstroke-dasharray:1,100;stroke-dashoffset:0;animation:dash 1.5s ease-in-out infinite,color 6s ease-in-out infinite%7D@keyframes rotate%7B100%25%7Btransform:rotate(360deg)%7D%7D@keyframes dash%7B0%25%7Bstroke-dasharray:1,100;stroke-dashoffset:0%7D50%25%7Bstroke-dasharray:44.5,100;stroke-dashoffset:-17.5px%7D100%25%7Bstroke-dasharray:44.5,100;stroke-dashoffset:-62px%7D%7D@keyframes color%7B0%25,100%25%7Bstroke:%23216eb4%7D40%25%7Bstroke:%2328b7cf%7D66%25%7Bstroke:%23216eb4%7D80%25,90%25%7Bstroke:%2328b7cf%7D%7D%3C/style%3E%3Cg%3E%3Ccircle fill='none' cx='12' cy='12' r='11' stroke-linecap='butt' stroke-width='2' /%3E%3C/g%3E%3C/svg%3E");
1501
2260
  background-repeat: no-repeat;
@@ -1507,10 +2266,10 @@ tr.wy-pager td .wy-spinner {
1507
2266
  .wy-panel {
1508
2267
  opacity: 0;
1509
2268
  visibility: hidden;
1510
- transition: opacity 0.1s cubic-bezier(0.4, 0, 0.2, 1) 0.01s, transform 0.1s cubic-bezier(0.4, 0, 0.2, 1) 0.01s, visibility 0.01s step-end 0.1s;
2269
+ transition: opacity var(--wy-transition-fast) 0.01s, transform var(--wy-transition-fast) 0.01s, visibility 0.01s step-end var(--wy-transition-duration-fast);
1511
2270
  }
1512
2271
  .wy-panel.wy-open {
1513
- transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.2s step-start;
2272
+ transition: opacity var(--wy-transition), transform var(--wy-transition), visibility var(--wy-transition-duration) step-start;
1514
2273
  visibility: visible;
1515
2274
  }
1516
2275
  .wy-panel.wy-open.wy-transition {
@@ -1524,6 +2283,8 @@ tr.wy-pager td .wy-spinner {
1524
2283
  }
1525
2284
 
1526
2285
  .wy-picker-list {
2286
+ background: var(--wy-component-background-color);
2287
+ color: var(--wy-component-color);
1527
2288
  border: none;
1528
2289
  }
1529
2290
  .wy-picker-list > .wy-picker-list-item:first-child, .wy-picker-list > :first-child .wy-picker-list-item {
@@ -1555,24 +2316,51 @@ tr.wy-pager td .wy-spinner {
1555
2316
  white-space: nowrap;
1556
2317
  }
1557
2318
 
2319
+ .wy-main {
2320
+ display: flex;
2321
+ height: calc(100vh - 3rem);
2322
+ }
2323
+ @media (max-width: 767.98px) {
2324
+ .wy-main {
2325
+ flex-direction: column;
2326
+ }
2327
+ }
2328
+
1558
2329
  .wy-preview {
2330
+ --wy-component-background-color: var(--wy-background);
2331
+ --wy-component-color: var(--wy-on-background);
2332
+ background-color: var(--wy-component-background-color);
2333
+ color: var(--wy-component-color);
1559
2334
  display: flex;
2335
+ flex-direction: column;
1560
2336
  align-items: center;
1561
- justify-content: center;
1562
- height: calc(100% - 3rem - 1px);
2337
+ justify-content: space-around;
1563
2338
  position: relative;
2339
+ flex: 1 1 100%;
2340
+ min-width: 16rem;
2341
+ min-height: 16rem;
2342
+ max-height: 100%;
2343
+ max-width: 100%;
2344
+ }
2345
+
2346
+ .wy-preview-area {
2347
+ min-width: 0;
2348
+ min-height: 0;
2349
+ width: 100%;
2350
+ height: 100%;
2351
+ flex: 1 1 auto;
2352
+ display: flex;
2353
+ flex-direction: column;
1564
2354
  }
1565
2355
 
1566
2356
  .wy-nav-prev, .wy-nav-next {
1567
- position: fixed;
2357
+ --wy-component-background-color: var(--wy-surface-variant);
2358
+ --wy-component-color: var(--wy-on-surface-variant);
2359
+ background-color: var(--wy-component-background-color);
2360
+ position: absolute;
1568
2361
  top: 50%;
1569
2362
  z-index: 1000;
1570
- }
1571
- .wy-nav-prev .wy-button-icon, .wy-nav-next .wy-button-icon {
1572
- background-color: #f2f2f2;
1573
- }
1574
- .wy-dark .wy-nav-prev .wy-button-icon, .wy-dark .wy-nav-next .wy-button-icon {
1575
- background-color: rgba(41, 41, 41, 0.95);
2363
+ border-radius: 50%;
1576
2364
  }
1577
2365
 
1578
2366
  .wy-nav-prev {
@@ -1584,100 +2372,71 @@ tr.wy-pager td .wy-spinner {
1584
2372
  }
1585
2373
 
1586
2374
  .wy-document {
2375
+ --wy-component-background-color: var(--wy-white);
2376
+ --wy-component-color: var(--wy-on-background);
2377
+ background-color: var(--wy-component-background-color);
2378
+ color: var(--wy-component-color);
1587
2379
  align-self: flex-start;
1588
- background-color: #fff;
1589
- color: #000;
1590
- padding: 2rem 3rem;
2380
+ padding: 2rem 3.5rem;
1591
2381
  width: 100%;
1592
2382
  min-height: 100%;
2383
+ flex: 1 0 auto;
1593
2384
  }
1594
2385
  @media (min-width: 768px) {
1595
2386
  .wy-document {
1596
2387
  padding: 3rem 4rem;
1597
- margin: 2rem 3.5rem;
1598
- border-radius: 0.25rem;
1599
- box-shadow: 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);
2388
+ margin: 2rem auto;
2389
+ border-radius: 0.125rem;
2390
+ box-shadow: var(--wy-shadow-level2);
1600
2391
  width: 120ch;
1601
2392
  min-height: 170ch;
1602
- max-width: 100%;
2393
+ max-width: calc(100% - 3.5rem);
1603
2394
  }
1604
2395
  }
1605
2396
 
1606
- .wy-toolbar {
1607
- position: fixed;
1608
- z-index: 1030;
1609
- bottom: 1.5rem;
1610
- left: 0;
1611
- right: 0;
1612
- height: 3rem;
1613
- display: flex;
1614
- justify-content: center;
1615
- }
1616
- .wy-toolbar span {
1617
- margin-left: 0.25rem;
1618
- }
1619
- .wy-toolbar .wy-input {
1620
- text-align: center;
1621
- border-color: transparent;
1622
- }
1623
-
1624
- .wy-tools {
1625
- background-color: rgba(242, 242, 242, 0.95);
1626
- color: #000;
1627
- border-radius: 0.375rem;
1628
- display: flex;
1629
- align-items: center;
1630
- backface-visibility: hidden;
1631
- }
1632
- @supports (backdrop-filter: blur(0.5rem)) {
1633
- .wy-tools {
1634
- backdrop-filter: blur(0.5rem);
1635
- }
1636
- }
1637
- .wy-dark .wy-tools, .wy-tools.wy-dark {
1638
- background-color: rgba(41, 41, 41, 0.95);
1639
- color: rgba(255, 255, 255, 0.62);
1640
- }
1641
- .wy-dark .wy-tools .wy-icon, .wy-tools.wy-dark .wy-icon {
1642
- color: rgba(255, 255, 255, 0.62);
1643
- }
1644
- .wy-dark .wy-tools .wy-input, .wy-tools.wy-dark .wy-input {
1645
- background-color: rgba(0, 0, 0, 0.5);
1646
- color: rgba(255, 255, 255, 0.62);
1647
- }
2397
+ .wy-content-code {
2398
+ /*--wy-component-background-color: var(--wy-surface-1);
2399
+ --wy-component-color: var(--wy-on-surface);
1648
2400
 
1649
- .wy-tool {
1650
- display: flex;
1651
- align-items: center;
1652
- margin: 0 0.5rem;
2401
+ background-color: var(--wy-component-background-color);
2402
+ color: var(--wy-component-color);
2403
+ */
2404
+ align-self: flex-start;
2405
+ width: 100%;
2406
+ padding: 2rem 3.5rem;
1653
2407
  }
1654
2408
 
1655
- .wy-content-iframe, [data-controller~=embed] {
2409
+ .wy-content-iframe {
1656
2410
  border: 0;
1657
2411
  display: block;
1658
2412
  width: 100%;
1659
2413
  height: 100%;
2414
+ top: 0;
2415
+ left: 0;
1660
2416
  flex: 1 1 100%;
1661
2417
  }
1662
- .wy-content-iframe:not(.wy-loading):not([data-controller~=embed]), .wy-content-iframe[data-controller~=embed].wy-loaded, [data-controller~=embed]:not(.wy-loading):not([data-controller~=embed]), [data-controller~=embed][data-controller~=embed].wy-loaded {
1663
- background: #fff;
2418
+ .wy-content-iframe.wy-loaded {
2419
+ --wy-component-background-color: var(--wy-surface-1);
2420
+ --wy-component-color: var(--wy-on-surface);
2421
+ background-color: var(--wy-component-background-color);
2422
+ color: var(--wy-component-color);
1664
2423
  }
1665
- .wy-content-iframe:not(.wy-loading):not([data-controller~=embed]) ~ .wy-content-iframe-fallback, .wy-content-iframe:not(.wy-loading):not([data-controller~=embed]) ~ .wy-spinner, .wy-content-iframe[data-controller~=embed].wy-loaded ~ .wy-content-iframe-fallback, .wy-content-iframe[data-controller~=embed].wy-loaded ~ .wy-spinner, [data-controller~=embed]:not(.wy-loading):not([data-controller~=embed]) ~ .wy-content-iframe-fallback, [data-controller~=embed]:not(.wy-loading):not([data-controller~=embed]) ~ .wy-spinner, [data-controller~=embed][data-controller~=embed].wy-loaded ~ .wy-content-iframe-fallback, [data-controller~=embed][data-controller~=embed].wy-loaded ~ .wy-spinner {
2424
+ .wy-content-iframe.wy-loaded ~ .wy-content-iframe-fallback, .wy-content-iframe.wy-loaded ~ .wy-spinner {
1666
2425
  display: none;
1667
2426
  }
1668
- .wy-content-iframe.wy-loading:not(.wy-loaded), .wy-content-iframe[data-controller~=embed]:not(.wy-loaded), [data-controller~=embed].wy-loading:not(.wy-loaded), [data-controller~=embed][data-controller~=embed]:not(.wy-loaded) {
2427
+ .wy-content-iframe.wy-loading:not(.wy-loaded) {
1669
2428
  position: absolute;
1670
2429
  visibility: hidden;
1671
2430
  z-index: -1;
1672
2431
  pointer-events: none;
1673
2432
  }
1674
- .wy-content-iframe.wy-loading:not(.wy-loaded):not(.wy-fallback) ~ .wy-content-iframe-fallback, .wy-content-iframe[data-controller~=embed]:not(.wy-loaded):not(.wy-fallback) ~ .wy-content-iframe-fallback, [data-controller~=embed].wy-loading:not(.wy-loaded):not(.wy-fallback) ~ .wy-content-iframe-fallback, [data-controller~=embed][data-controller~=embed]:not(.wy-loaded):not(.wy-fallback) ~ .wy-content-iframe-fallback {
2433
+ .wy-content-iframe.wy-loading:not(.wy-loaded):not(.wy-fallback) ~ .wy-content-iframe-fallback {
1675
2434
  display: none;
1676
2435
  }
1677
- .wy-content-iframe.wy-loading:not(.wy-loaded).wy-fallback ~ .wy-spinner, .wy-content-iframe[data-controller~=embed]:not(.wy-loaded).wy-fallback ~ .wy-spinner, [data-controller~=embed].wy-loading:not(.wy-loaded).wy-fallback ~ .wy-spinner, [data-controller~=embed][data-controller~=embed]:not(.wy-loaded).wy-fallback ~ .wy-spinner {
2436
+ .wy-content-iframe.wy-loading:not(.wy-loaded).wy-fallback ~ .wy-spinner {
1678
2437
  display: none;
1679
2438
  }
1680
- .wy-content-iframe ~ .wy-spinner, [data-controller~=embed] ~ .wy-spinner {
2439
+ .wy-content-iframe ~ .wy-spinner {
1681
2440
  margin: auto;
1682
2441
  }
1683
2442
 
@@ -1686,33 +2445,6 @@ tr.wy-pager td .wy-spinner {
1686
2445
  white-space: pre-wrap;
1687
2446
  }
1688
2447
 
1689
- .wy-content-icon {
1690
- background-color: #fff;
1691
- border-radius: 0.5rem;
1692
- display: flex;
1693
- align-items: center;
1694
- flex-direction: column;
1695
- text-align: center;
1696
- padding: 1rem 2rem;
1697
- }
1698
- .wy-content-icon .wy-icon-stack, .wy-content-icon .wy-icon {
1699
- width: 8rem;
1700
- height: 8rem;
1701
- }
1702
- .wy-dark .wy-content-icon {
1703
- background-color: rgba(41, 41, 41, 0.95);
1704
- color: rgba(255, 255, 255, 0.62);
1705
- }
1706
- .wy-dark .wy-content-icon a {
1707
- color: #79c7ec;
1708
- }
1709
- .wy-dark .wy-content-icon .wy-icon {
1710
- color: rgba(255, 255, 255, 0.7);
1711
- }
1712
- .wy-dark .wy-content-icon .wy-icon-stack .wy-icon:last-child {
1713
- background-color: rgba(41, 41, 41, 0.95);
1714
- }
1715
-
1716
2448
  .wy-content-image {
1717
2449
  min-width: 0;
1718
2450
  display: flex;
@@ -1722,32 +2454,18 @@ tr.wy-pager td .wy-spinner {
1722
2454
  margin: auto;
1723
2455
  max-height: 100%;
1724
2456
  max-width: 100%;
1725
- }
1726
- .wy-content-image.wy-intrinsic-image {
1727
- object-fit: scale-down;
1728
- }
1729
- .wy-content-image:not(.wy-intrinsic-image) {
1730
- height: 100%;
1731
- width: 100%;
1732
- --max-width: min(calc((100vh - 3rem - 1px) * (var(--width) / var(--height))), calc(var(--width) * 1px), 100%);
1733
- --max-height: min(calc(100vw * (var(--height) / var(--width))), calc(var(--height) * 1px), 100%);
1734
- /* // With sidebar
1735
- body.controller-content & {
1736
- --max-width: min(calc((100vh - 6rem) * (var(--width) / var(--height))), calc(var(--width) * 1px), 100%);
1737
- --max-height: min(calc(100vw * (var(--height) / var(--width))), calc(var(--height) * 1px), 100%);
1738
-
1739
- @include bs.media-breakpoint-up(lg) {
1740
- --max-width: min(calc((100vh - 3rem) * (var(--width) / var(--height))), calc(var(--width) * 1px), 100%);
1741
- --max-height: min(calc((100vw - 20rem) * (var(--height) / var(--width))), calc(var(--height) * 1px), 100%);
1742
- }
1743
- } */
1744
- max-width: var(--max-width);
1745
- max-height: var(--max-height);
1746
- transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform-origin 0.2s step-end;
2457
+ /*&.wy-intrinsic-image {
2458
+ object-fit: scale-down;
2459
+ }*/
2460
+ /*&:not(.wy-intrinsic-image) {
2461
+ transition: transform vars.$transition, transform-origin vars.$transition-duration step-end;
2462
+ //cursor: zoom-in;
2463
+ }*/
2464
+ transition: transform var(--wy-transition), transform-origin var(--wy-transition-duration) step-end;
1747
2465
  }
1748
2466
  .wy-content-image.wy-zoom {
1749
2467
  cursor: zoom-out;
1750
- transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform-origin 0.2s step-start;
2468
+ transition: transform var(--wy-transition), transform-origin var(--wy-transition-duration) step-start;
1751
2469
  }
1752
2470
  .wy-content-image img {
1753
2471
  min-width: 0;
@@ -1785,6 +2503,7 @@ tr.wy-pager td .wy-spinner {
1785
2503
  min-height: 0;
1786
2504
  max-width: 100%;
1787
2505
  max-height: 100%;
2506
+ flex: 1 1 auto;
1788
2507
  }
1789
2508
 
1790
2509
  .wy-content-video, .wy-content-audio {
@@ -1800,7 +2519,7 @@ tr.wy-pager td .wy-spinner {
1800
2519
  outline: none;
1801
2520
  }
1802
2521
 
1803
- :root {
2522
+ :root, :host > * {
1804
2523
  --pdfViewer-padding-bottom: 0;
1805
2524
  --page-margin: 2rem auto;
1806
2525
  --page-border: none;
@@ -1810,7 +2529,7 @@ tr.wy-pager td .wy-spinner {
1810
2529
  }
1811
2530
 
1812
2531
  @media screen and (forced-colors: active) {
1813
- :root {
2532
+ :root, :host > * {
1814
2533
  --pdfViewer-padding-bottom: 9px;
1815
2534
  --page-margin: 9px auto 0;
1816
2535
  --page-border: none;
@@ -1872,7 +2591,7 @@ tr.wy-pager td .wy-spinner {
1872
2591
  }
1873
2592
  .wy-scrollbars .wy-content-pdf .wy-pdf-container {
1874
2593
  scrollbar-width: thin;
1875
- scrollbar-color: rgba(128, 128, 128, 0.75) transparent;
2594
+ scrollbar-color: var(--wy-outline) transparent;
1876
2595
  }
1877
2596
  .wy-scrollbars .wy-content-pdf .wy-pdf-container::-webkit-scrollbar {
1878
2597
  height: 0.625rem;
@@ -1884,16 +2603,19 @@ tr.wy-pager td .wy-spinner {
1884
2603
  background: transparent;
1885
2604
  }
1886
2605
  .wy-scrollbars .wy-content-pdf .wy-pdf-container::-webkit-scrollbar-thumb {
1887
- background-color: rgba(128, 128, 128, 0.75);
2606
+ background-color: var(--wy-outline);
1888
2607
  border: 0.125rem solid transparent;
1889
2608
  border-radius: 0.5rem;
1890
2609
  background-clip: padding-box;
2610
+ opacity: 75%;
1891
2611
  }
1892
2612
  .wy-scrollbars .wy-content-pdf .wy-pdf-container::-webkit-scrollbar-thumb:hover {
1893
- background-color: rgba(92, 92, 92, 0.75);
2613
+ background-color: var(--wy-outline-variant);
2614
+ opacity: 75%;
1894
2615
  }
1895
2616
  .wy-scrollbars .wy-content-pdf .wy-pdf-container::-webkit-scrollbar-thumb:window-inactive {
1896
- background-color: rgba(128, 128, 128, 0.5);
2617
+ background-color: var(--wy-outline);
2618
+ opacity: 50%;
1897
2619
  }
1898
2620
  @supports (overflow-y: overlay) {
1899
2621
  .wy-scrollbars .wy-content-pdf .wy-pdf-container {
@@ -2446,8 +3168,8 @@ tr.wy-pager td .wy-spinner {
2446
3168
  overflow: visible;
2447
3169
  border: var(--page-border);
2448
3170
  background-clip: content-box;
2449
- box-shadow: 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);
2450
- background-color: rgb(255, 255, 255);
3171
+ box-shadow: var(--wy-shadow-level2);
3172
+ background-color: #ffffff;
2451
3173
  }
2452
3174
  .wy-content-pdf .pdfViewer .dummyPage {
2453
3175
  position: relative;
@@ -2537,95 +3259,87 @@ tr.wy-pager td .wy-spinner {
2537
3259
  white-space: pre-wrap;
2538
3260
  }
2539
3261
 
2540
- .wy-scroll-y {
2541
- overflow-y: auto;
2542
- touch-action: pan-y, pan-x;
2543
- will-change: scroll-position, opacity;
2544
- backface-visibility: hidden;
2545
- max-height: 100%;
2546
- }
2547
- .wy-scroll-y:not(body) {
2548
- -webkit-overflow-scrolling: touch;
3262
+ .wy-reaction-count {
3263
+ margin: 0 0.5rem 0 0.125rem;
3264
+ line-height: 1;
3265
+ font-size: var(--wy-font-size-sm);
2549
3266
  }
2550
- .wy-scroll-y:not(.wy-scroll-x) {
2551
- overflow-x: hidden;
2552
- touch-action: pan-y;
3267
+
3268
+ .wy-reaction-menu {
3269
+ padding: 0.25rem;
3270
+ font-size: 1.125rem;
3271
+ border-radius: 2.5rem;
2553
3272
  }
2554
3273
 
2555
- .wy-scroll-x {
2556
- overflow-x: auto;
2557
- touch-action: pan-y, pan-x;
2558
- will-change: scroll-position, opacity;
2559
- backface-visibility: hidden;
2560
- max-width: 100%;
3274
+ .wy-reaction-picker {
3275
+ display: flex;
2561
3276
  }
2562
- .wy-scroll-x:not(.wy-scroll-y) {
2563
- overflow-y: hidden;
2564
- touch-action: pan-x;
3277
+ .wy-reaction-picker .wy-reaction-button {
3278
+ color: unset;
2565
3279
  }
2566
3280
 
2567
- .wy-scrollbars.wy-scroll-y, .wy-scrollbars .wy-scroll-y {
2568
- scrollbar-width: thin;
2569
- scrollbar-color: rgba(128, 128, 128, 0.75) transparent;
2570
- }
2571
- @supports (overflow-y: overlay) {
2572
- .wy-scrollbars.wy-scroll-y, .wy-scrollbars .wy-scroll-y {
2573
- overflow-y: overlay;
2574
- }
3281
+ .wy-reactions {
3282
+ display: inline-flex;
3283
+ align-items: center;
3284
+ column-gap: 0.125rem;
2575
3285
  }
2576
- .wy-scrollbars.wy-scroll-y::-webkit-scrollbar, .wy-scrollbars .wy-scroll-y::-webkit-scrollbar {
2577
- height: 0.625rem;
2578
- width: 0.625rem;
2579
- background: transparent;
2580
- z-index: 999;
3286
+ .wy-reactions:empty {
3287
+ display: none;
2581
3288
  }
2582
- .wy-scrollbars.wy-scroll-y::-webkit-scrollbar-track, .wy-scrollbars .wy-scroll-y::-webkit-scrollbar-track {
2583
- background: transparent;
3289
+
3290
+ .wy-table-reactions td:first-child {
3291
+ width: 3rem;
2584
3292
  }
2585
- .wy-scrollbars.wy-scroll-y::-webkit-scrollbar-thumb, .wy-scrollbars .wy-scroll-y::-webkit-scrollbar-thumb {
2586
- background-color: rgba(128, 128, 128, 0.75);
2587
- border: 0.125rem solid transparent;
2588
- border-radius: 0.5rem;
2589
- background-clip: padding-box;
3293
+ .wy-table-reactions td:nth-child(2) {
3294
+ width: 100%;
2590
3295
  }
2591
- .wy-scrollbars.wy-scroll-y::-webkit-scrollbar-thumb:hover, .wy-scrollbars .wy-scroll-y::-webkit-scrollbar-thumb:hover {
2592
- background-color: rgba(92, 92, 92, 0.75);
3296
+ .wy-table-reactions tr:last-child td {
3297
+ box-shadow: none;
2593
3298
  }
2594
- .wy-scrollbars.wy-scroll-y::-webkit-scrollbar-thumb:window-inactive, .wy-scrollbars .wy-scroll-y::-webkit-scrollbar-thumb:window-inactive {
2595
- background-color: rgba(128, 128, 128, 0.5);
3299
+
3300
+ .wy-reactions-line {
3301
+ display: flex;
3302
+ align-items: center;
3303
+ /*> * {
3304
+ position: relative;
3305
+ }*/
3306
+ }
3307
+ .wy-reactions-line .wy-reactions {
3308
+ background: var(--wy-component-background-color);
3309
+ color: currentColor;
3310
+ border-radius: var(--wy-border-radius-pill);
3311
+ display: flex;
3312
+ width: auto;
3313
+ background-clip: content-box;
2596
3314
  }
2597
- .wy-scrollbars.wy-scroll-y::-webkit-scrollbar-button:vertical:start, .wy-scrollbars .wy-scroll-y::-webkit-scrollbar-button:vertical:start {
2598
- height: var(--wy-scrollbar-adjust-top, 0);
3315
+ .wy-reactions-line .wy-reactions > .wy-emoji:first-child {
3316
+ margin-left: 0.125rem;
2599
3317
  }
2600
- .wy-scrollbars.wy-scroll-y::-webkit-scrollbar-button:vertical:end, .wy-scrollbars .wy-scroll-y::-webkit-scrollbar-button:vertical:end {
2601
- height: var(--wy-scrollbar-adjust-bottom, 0);
3318
+ .wy-reactions-line .wy-reactions > .wy-emoji:last-child {
3319
+ margin-right: 0.125rem;
2602
3320
  }
2603
-
2604
- .wy-block-scroll {
2605
- overflow: hidden !important;
3321
+ .wy-reactions-line .wy-reaction-menu-button {
3322
+ background: var(--wy-component-background-color);
3323
+ color: currentColor;
3324
+ border-radius: var(--wy-border-radius-pill);
3325
+ background-clip: content-box;
2606
3326
  }
2607
3327
 
2608
- .wy-scrollbar-detection {
2609
- position: fixed;
2610
- top: 0;
2611
- left: 0;
2612
- width: 8rem;
2613
- height: 8rem;
2614
- overflow: scroll;
2615
- z-index: -99999;
2616
- pointer-events: none;
2617
- visibility: hidden;
3328
+ .wy-spinner, .wy-icon[data-icon=spinner] {
3329
+ align-self: center;
3330
+ justify-self: center;
3331
+ margin: auto;
2618
3332
  }
2619
-
2620
- svg.wy-spinner circle {
3333
+ .wy-spinner circle, .wy-icon[data-icon=spinner] circle {
2621
3334
  stroke-dasharray: 1, 100;
2622
3335
  stroke-dashoffset: 0;
2623
3336
  transform-origin: center;
3337
+ fill: none !important;
2624
3338
  }
2625
- svg.wy-spinner.wy-spin {
3339
+ .wy-spinner.wy-spin, .wy-icon[data-icon=spinner].wy-spin {
2626
3340
  animation: wy-rotate 1.4s linear infinite;
2627
3341
  }
2628
- svg.wy-spinner.wy-spin circle {
3342
+ .wy-spinner.wy-spin circle, .wy-icon[data-icon=spinner].wy-spin circle {
2629
3343
  animation: wy-dash 1.4s ease-in-out infinite, wy-color 2.8s ease-in-out infinite;
2630
3344
  }
2631
3345
 
@@ -2650,18 +3364,57 @@ svg.wy-spinner.wy-spin circle {
2650
3364
  }
2651
3365
  @keyframes wy-color {
2652
3366
  0%, 100% {
2653
- stroke: hsl(217deg, 77.2287735849%, 50%);
3367
+ stroke: var(--wy-primary);
2654
3368
  }
2655
3369
  25% {
2656
- stroke: hsl(6deg, 71.1567324185%, 50%);
3370
+ stroke: var(--wy-primary);
2657
3371
  }
2658
3372
  50% {
2659
- stroke: hsl(55deg, 81.2875214408%, 50%);
3373
+ stroke: transparent;
2660
3374
  }
2661
3375
  75% {
2662
- stroke: hsl(121deg, 50.2009084556%, 50%);
3376
+ stroke: var(--wy-primary);
2663
3377
  }
2664
3378
  }
3379
+ .wy-title {
3380
+ margin-top: 0.5rem;
3381
+ margin-bottom: 0.5rem;
3382
+ font-style: var(--wy-headings-font-style);
3383
+ font-weight: var(--wy-headings-font-weight);
3384
+ line-height: var(--wy-headings-line-height);
3385
+ margin-top: 0.5rem;
3386
+ margin-bottom: 0.5rem;
3387
+ font-weight: 400;
3388
+ font-size: 2.5rem;
3389
+ line-height: 3rem;
3390
+ }
3391
+
3392
+ .wy-headline {
3393
+ margin-top: 0.5rem;
3394
+ margin-bottom: 0.5rem;
3395
+ font-style: var(--wy-headings-font-style);
3396
+ font-weight: var(--wy-headings-font-weight);
3397
+ line-height: var(--wy-headings-line-height);
3398
+ margin-top: 0.5rem;
3399
+ margin-bottom: 0.5rem;
3400
+ font-weight: 400;
3401
+ font-size: 1.5rem;
3402
+ line-height: 2rem;
3403
+ }
3404
+
3405
+ .wy-label {
3406
+ margin-top: 0.5rem;
3407
+ margin-bottom: 0.5rem;
3408
+ font-style: var(--wy-headings-font-style);
3409
+ font-weight: var(--wy-headings-font-weight);
3410
+ line-height: var(--wy-headings-line-height);
3411
+ margin-top: 0rem;
3412
+ margin-bottom: 0rem;
3413
+ font-weight: 500;
3414
+ font-size: 1rem;
3415
+ line-height: 1.5rem;
3416
+ }
3417
+
2665
3418
  .wy-typing-show {
2666
3419
  font-style: italic;
2667
3420
  display: none;
@@ -2682,3 +3435,12 @@ svg.wy-spinner.wy-spin circle {
2682
3435
  top: 0.375rem;
2683
3436
  left: 0.25rem;
2684
3437
  }
3438
+
3439
+ .wy-meeting {
3440
+ flex: 1 1 100%;
3441
+ align-items: flex-start;
3442
+ }
3443
+
3444
+ .wy-meeting-actions {
3445
+ margin-top: 0.5rem;
3446
+ }