stargazer-ui 1.2.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (349) hide show
  1. package/.babelrc.json +10 -0
  2. package/.eslintrc.cjs +18 -0
  3. package/.gitattributes +2 -0
  4. package/LICENSE +21 -0
  5. package/dev/index.html +12 -0
  6. package/dev/index.jsx +49 -0
  7. package/dev/index.scss +59 -0
  8. package/dev/pages/ButtonPage.jsx +44 -0
  9. package/dev/pages/CardPage.jsx +81 -0
  10. package/dev/pages/DropdownPage.jsx +31 -0
  11. package/dev/pages/FormPage.jsx +130 -0
  12. package/dev/pages/ListPage.jsx +52 -0
  13. package/dev/pages/ModalPage.jsx +37 -0
  14. package/dev/pages/OverlayPage.jsx +35 -0
  15. package/dev/pages/components.jsx +19 -0
  16. package/{styles → dev}/stargazerui.css +392 -3075
  17. package/dev/stargazerui.css.map +1 -0
  18. package/dev/test.jsx +88 -0
  19. package/package.json +79 -1
  20. package/rollup.config.js +140 -0
  21. package/scripts/writePackageJsons.js +42 -0
  22. package/src/Bar/Bar.tsx +0 -0
  23. package/src/Bar/Bar.type.ts +9 -0
  24. package/src/Bar/index.ts +0 -0
  25. package/src/Button/Button.tsx +17 -0
  26. package/src/Button/Button.types.ts +8 -0
  27. package/src/Button/index.ts +3 -0
  28. package/src/ButtonGroup/ButtonGroup.tsx +14 -0
  29. package/src/ButtonGroup/ButtonGroup.types.ts +8 -0
  30. package/src/ButtonGroup/index.ts +3 -0
  31. package/src/Card/Card.tsx +70 -0
  32. package/src/Card/Card.types.ts +33 -0
  33. package/src/Card/index.ts +3 -0
  34. package/src/CloseButton/CloseButton.tsx +14 -0
  35. package/src/CloseButton/CloseButton.types.ts +6 -0
  36. package/src/CloseButton/index.ts +3 -0
  37. package/src/Dropdown/Dropdown.tsx +358 -0
  38. package/src/Dropdown/Dropdown.types.ts +52 -0
  39. package/src/Dropdown/index.ts +4 -0
  40. package/src/FileUploadButton/FileUploadButton.tsx +27 -0
  41. package/src/FileUploadButton/FileUploadButton.types.ts +9 -0
  42. package/src/FileUploadButton/index.ts +3 -0
  43. package/src/FloatingLabel/FloatingLabel.tsx +22 -0
  44. package/src/FloatingLabel/FloatingLabel.types.ts +11 -0
  45. package/src/FloatingLabel/index.ts +3 -0
  46. package/src/Form/Form.tsx +445 -0
  47. package/src/Form/Form.types.ts +117 -0
  48. package/src/Form/index.ts +4 -0
  49. package/src/InputGroup/InputGroup.tsx +46 -0
  50. package/src/InputGroup/InputGroup.types.ts +21 -0
  51. package/src/InputGroup/index.ts +4 -0
  52. package/src/List/List.tsx +112 -0
  53. package/src/List/List.types.ts +34 -0
  54. package/src/List/index.ts +4 -0
  55. package/src/Modal/Modal.tsx +220 -0
  56. package/src/Modal/Modal.types.ts +49 -0
  57. package/src/Modal/index.ts +4 -0
  58. package/src/Nav/Nav.tsx +43 -0
  59. package/src/Nav/Nav.types.ts +21 -0
  60. package/src/Nav/index.ts +4 -0
  61. package/src/NavBar/Navbar.tsx +57 -0
  62. package/src/NavBar/Navbar.types.ts +24 -0
  63. package/src/NavBar/index.ts +4 -0
  64. package/src/NavDropdown/NavDropdown.tsx +93 -0
  65. package/src/NavDropdown/NavDropdown.types.ts +6 -0
  66. package/src/NavDropdown/index.ts +3 -0
  67. package/src/Overlay/Overlay.tsx +277 -0
  68. package/src/Overlay/Overlay.types.ts +20 -0
  69. package/{Overlay/index.d.ts → src/Overlay/index.ts} +3 -3
  70. package/src/Popout/Popout.tsx +155 -0
  71. package/src/Popout/Popout.types.ts +42 -0
  72. package/src/Popout/index.ts +3 -0
  73. package/src/Spinner/Spinner.tsx +15 -0
  74. package/src/Spinner/Spinner.types.ts +7 -0
  75. package/src/Spinner/index.ts +3 -0
  76. package/src/Table/Table.tsx +16 -0
  77. package/src/Table/Table.types.ts +9 -0
  78. package/src/Table/index.ts +3 -0
  79. package/src/Tabs/Tabs.tsx +215 -0
  80. package/src/Tabs/Tabs.types.ts +49 -0
  81. package/src/Tabs/index.ts +3 -0
  82. package/src/ToggleButton/ToggleButton.tsx +21 -0
  83. package/src/ToggleButton/ToggleButton.types.ts +8 -0
  84. package/src/ToggleButton/index.ts +3 -0
  85. package/{hooks/index.d.ts → src/hooks/index.ts} +6 -5
  86. package/src/hooks/useClassname.ts +5 -0
  87. package/src/hooks/useDraggable.ts +186 -0
  88. package/src/hooks/useKeepElementFocused.ts +37 -0
  89. package/src/hooks/useScreenSize.ts +24 -0
  90. package/src/index.ts +21 -0
  91. package/src/styles/_Card.scss +166 -0
  92. package/src/styles/_CloseButton.scss +51 -0
  93. package/src/styles/_CustomButton.scss +132 -0
  94. package/src/styles/_Dropdown.scss +120 -0
  95. package/src/styles/_FloatingLabel.scss +56 -0
  96. package/src/styles/_Forms.scss +7 -0
  97. package/src/styles/_Grid.scss +178 -0
  98. package/src/styles/_InputGroup.scss +71 -0
  99. package/src/styles/_List.scss +62 -0
  100. package/src/styles/_Modal.scss +234 -0
  101. package/src/styles/_ModalOld.scss +242 -0
  102. package/src/styles/_Nav.scss +36 -0
  103. package/src/styles/_NavBar.scss +116 -0
  104. package/src/styles/_NavDropdown.scss +34 -0
  105. package/src/styles/_OffCanvas.scss +260 -0
  106. package/src/styles/_OverLay.scss +56 -0
  107. package/src/styles/_Popout.scss +75 -0
  108. package/src/styles/_Spinner.scss +19 -0
  109. package/src/styles/_Table.scss +34 -0
  110. package/src/styles/_Tabs.scss +129 -0
  111. package/src/styles/_colors.scss +510 -0
  112. package/src/styles/_components.scss +40 -0
  113. package/src/styles/_functions.scss +134 -0
  114. package/src/styles/_mixins.scss +26 -0
  115. package/src/styles/_reset.scss +231 -0
  116. package/src/styles/_utilities.scss +2480 -0
  117. package/src/styles/_variables.scss +146 -0
  118. package/src/styles/forms/_FormCheck.scss +269 -0
  119. package/src/styles/forms/_FormControl.scss +102 -0
  120. package/src/styles/forms/_FormGroup.scss +21 -0
  121. package/src/styles/forms/_FormLabel.scss +3 -0
  122. package/src/styles/forms/_FormSelect.scss +164 -0
  123. package/src/styles/forms/_FormSlider.scss +116 -0
  124. package/src/styles/forms/_FormText.scss +6 -0
  125. package/{utils/BaseTypes.d.ts → src/utils/BaseTypes.ts} +30 -23
  126. package/src/utils/ContrastingColor.ts +25 -0
  127. package/src/utils/FileImportExport.js +50 -0
  128. package/src/utils/MergeClassnames.ts +5 -0
  129. package/src/utils/MergeRefs.ts +12 -0
  130. package/src/vite-env.d.ts +1 -0
  131. package/tsconfig-build.json +4 -0
  132. package/tsconfig.json +79 -0
  133. package/tsconfig.node.json +10 -0
  134. package/types/BaseTypes.d.ts +19 -0
  135. package/{Button → types/components/Button}/Button.types.d.ts +2 -1
  136. package/types/components/Button/index.d.ts +1 -0
  137. package/{Card → types/components/Card}/Card.types.d.ts +1 -3
  138. package/types/components/Card/index.d.ts +1 -0
  139. package/{CloseButton → types/components/CloseButton}/CloseButton.types.d.ts +1 -1
  140. package/types/components/CloseButton/index.d.ts +1 -0
  141. package/{Dropdown → types/components/Dropdown}/Dropdown.types.d.ts +10 -3
  142. package/types/components/Dropdown/index.d.ts +1 -0
  143. package/{FloatingLabel → types/components/FloatingLabel}/FloatingLabel.types.d.ts +1 -1
  144. package/types/components/FloatingLabel/index.d.ts +1 -0
  145. package/types/components/Form/Form.d.ts +17 -0
  146. package/types/components/Form/Form.types.d.ts +50 -0
  147. package/types/components/Form/index.d.ts +1 -0
  148. package/types/components/InputGroup/InputGroup.d.ts +6 -0
  149. package/types/components/InputGroup/InputGroup.types.d.ts +10 -0
  150. package/types/components/InputGroup/index.d.ts +1 -0
  151. package/{Modal → types/components/Modal}/Modal.d.ts +1 -1
  152. package/{Modal → types/components/Modal}/Modal.types.d.ts +2 -3
  153. package/types/components/Modal/index.d.ts +1 -0
  154. package/{Nav → types/components/Nav}/Nav.types.d.ts +1 -1
  155. package/types/components/Nav/index.d.ts +1 -0
  156. package/{NavBar → types/components/NavBar}/Navbar.d.ts +2 -1
  157. package/{NavBar → types/components/NavBar}/Navbar.types.d.ts +1 -2
  158. package/types/components/NavBar/index.d.ts +1 -0
  159. package/{NavDropdown → types/components/NavDropdown}/NavDropdown.d.ts +2 -2
  160. package/types/components/NavDropdown/index.d.ts +1 -0
  161. package/{Popout → types/components/Popout}/Popout.types.d.ts +1 -1
  162. package/types/components/Popout/index.d.ts +1 -0
  163. package/types/components/Spinner/index.d.ts +1 -0
  164. package/{Table → types/components/Table}/Table.types.d.ts +1 -1
  165. package/types/components/Table/index.d.ts +1 -0
  166. package/{Tabs → types/components/Tabs}/Tabs.types.d.ts +1 -9
  167. package/types/components/Tabs/index.d.ts +1 -0
  168. package/types/components/ToggleButton/ToggleButton.d.ts +9 -0
  169. package/types/components/ToggleButton/ToggleButton.types.d.ts +0 -0
  170. package/types/components/ToggleButton/index.d.ts +1 -0
  171. package/types/components/index.d.ts +16 -0
  172. package/types/index.d.ts +1 -0
  173. package/vite.config.js +57 -0
  174. package/vite.config.js.timestamp-1708777378490-e94428ceb2bf9.mjs +42 -0
  175. package/Bar/Bar.type.d.ts +0 -6
  176. package/Bar/index.js +0 -2
  177. package/Bar/index.js.map +0 -1
  178. package/Bar/package.json +0 -1
  179. package/Button/Button.js +0 -12
  180. package/Button/Button.js.map +0 -1
  181. package/Button/index.d.ts +0 -3
  182. package/Button/index.js +0 -7
  183. package/Button/index.js.map +0 -1
  184. package/Button/package.json +0 -1
  185. package/ButtonGroup/ButtonGroup.d.ts +0 -4
  186. package/ButtonGroup/ButtonGroup.js +0 -10
  187. package/ButtonGroup/ButtonGroup.js.map +0 -1
  188. package/ButtonGroup/ButtonGroup.types.d.ts +0 -7
  189. package/ButtonGroup/index.d.ts +0 -3
  190. package/ButtonGroup/index.js +0 -7
  191. package/ButtonGroup/index.js.map +0 -1
  192. package/ButtonGroup/package.json +0 -1
  193. package/Card/Card.js +0 -41
  194. package/Card/Card.js.map +0 -1
  195. package/Card/index.d.ts +0 -3
  196. package/Card/index.js +0 -7
  197. package/Card/index.js.map +0 -1
  198. package/Card/package.json +0 -1
  199. package/CloseButton/CloseButton.js +0 -11
  200. package/CloseButton/CloseButton.js.map +0 -1
  201. package/CloseButton/index.d.ts +0 -3
  202. package/CloseButton/index.js +0 -7
  203. package/CloseButton/index.js.map +0 -1
  204. package/CloseButton/package.json +0 -1
  205. package/Dropdown/Dropdown.js +0 -292
  206. package/Dropdown/Dropdown.js.map +0 -1
  207. package/Dropdown/index.d.ts +0 -4
  208. package/Dropdown/index.js +0 -8
  209. package/Dropdown/index.js.map +0 -1
  210. package/Dropdown/package.json +0 -1
  211. package/FileUploadButton/FileUploadButton.d.ts +0 -4
  212. package/FileUploadButton/FileUploadButton.js +0 -21
  213. package/FileUploadButton/FileUploadButton.js.map +0 -1
  214. package/FileUploadButton/FileUploadButton.types.d.ts +0 -7
  215. package/FileUploadButton/index.d.ts +0 -3
  216. package/FileUploadButton/index.js +0 -7
  217. package/FileUploadButton/index.js.map +0 -1
  218. package/FileUploadButton/package.json +0 -1
  219. package/FloatingLabel/FloatingLabel.js +0 -17
  220. package/FloatingLabel/FloatingLabel.js.map +0 -1
  221. package/FloatingLabel/index.d.ts +0 -3
  222. package/FloatingLabel/index.js +0 -7
  223. package/FloatingLabel/index.js.map +0 -1
  224. package/FloatingLabel/package.json +0 -1
  225. package/Form/Form.d.ts +0 -38
  226. package/Form/Form.js +0 -308
  227. package/Form/Form.js.map +0 -1
  228. package/Form/Form.types.d.ts +0 -105
  229. package/Form/index.d.ts +0 -4
  230. package/Form/index.js +0 -8
  231. package/Form/index.js.map +0 -1
  232. package/Form/package.json +0 -1
  233. package/InputGroup/InputGroup.d.ts +0 -7
  234. package/InputGroup/InputGroup.js +0 -31
  235. package/InputGroup/InputGroup.js.map +0 -1
  236. package/InputGroup/InputGroup.types.d.ts +0 -16
  237. package/InputGroup/index.d.ts +0 -4
  238. package/InputGroup/index.js +0 -7
  239. package/InputGroup/index.js.map +0 -1
  240. package/InputGroup/package.json +0 -1
  241. package/List/List.d.ts +0 -14
  242. package/List/List.js +0 -76
  243. package/List/List.js.map +0 -1
  244. package/List/List.types.d.ts +0 -28
  245. package/List/index.d.ts +0 -3
  246. package/List/index.js +0 -7
  247. package/List/index.js.map +0 -1
  248. package/List/package.json +0 -1
  249. package/Modal/Modal.js +0 -160
  250. package/Modal/Modal.js.map +0 -1
  251. package/Modal/index.d.ts +0 -3
  252. package/Modal/index.js +0 -7
  253. package/Modal/index.js.map +0 -1
  254. package/Modal/package.json +0 -1
  255. package/Nav/Nav.js +0 -28
  256. package/Nav/Nav.js.map +0 -1
  257. package/Nav/index.d.ts +0 -4
  258. package/Nav/index.js +0 -7
  259. package/Nav/index.js.map +0 -1
  260. package/Nav/package.json +0 -1
  261. package/NavBar/Navbar.js +0 -36
  262. package/NavBar/Navbar.js.map +0 -1
  263. package/NavBar/index.d.ts +0 -4
  264. package/NavBar/index.js +0 -8
  265. package/NavBar/index.js.map +0 -1
  266. package/NavBar/package.json +0 -1
  267. package/NavDropdown/NavDropdown.js +0 -77
  268. package/NavDropdown/NavDropdown.js.map +0 -1
  269. package/NavDropdown/index.d.ts +0 -3
  270. package/NavDropdown/index.js +0 -7
  271. package/NavDropdown/index.js.map +0 -1
  272. package/NavDropdown/package.json +0 -1
  273. package/Overlay/Overlay.d.ts +0 -4
  274. package/Overlay/Overlay.js +0 -228
  275. package/Overlay/Overlay.js.map +0 -1
  276. package/Overlay/Overlay.types.d.ts +0 -18
  277. package/Overlay/index.js +0 -7
  278. package/Overlay/index.js.map +0 -1
  279. package/Overlay/package.json +0 -1
  280. package/Popout/Popout.js +0 -110
  281. package/Popout/Popout.js.map +0 -1
  282. package/Popout/index.d.ts +0 -3
  283. package/Popout/index.js +0 -7
  284. package/Popout/index.js.map +0 -1
  285. package/Popout/package.json +0 -1
  286. package/Spinner/Spinner.js +0 -12
  287. package/Spinner/Spinner.js.map +0 -1
  288. package/Spinner/index.d.ts +0 -3
  289. package/Spinner/index.js +0 -7
  290. package/Spinner/index.js.map +0 -1
  291. package/Spinner/package.json +0 -1
  292. package/Table/Table.js +0 -11
  293. package/Table/Table.js.map +0 -1
  294. package/Table/index.d.ts +0 -3
  295. package/Table/index.js +0 -7
  296. package/Table/index.js.map +0 -1
  297. package/Table/package.json +0 -1
  298. package/Tabs/Tabs.js +0 -158
  299. package/Tabs/Tabs.js.map +0 -1
  300. package/Tabs/index.d.ts +0 -3
  301. package/Tabs/index.js +0 -7
  302. package/Tabs/index.js.map +0 -1
  303. package/Tabs/package.json +0 -1
  304. package/ToggleButton/ToggleButton.d.ts +0 -4
  305. package/ToggleButton/ToggleButton.js +0 -17
  306. package/ToggleButton/ToggleButton.js.map +0 -1
  307. package/ToggleButton/ToggleButton.types.d.ts +0 -7
  308. package/ToggleButton/index.d.ts +0 -3
  309. package/ToggleButton/index.js +0 -7
  310. package/ToggleButton/index.js.map +0 -1
  311. package/ToggleButton/package.json +0 -1
  312. package/hooks/index.js +0 -6
  313. package/hooks/index.js.map +0 -1
  314. package/hooks/package.json +0 -1
  315. package/hooks/useClassname.d.ts +0 -2
  316. package/hooks/useClassname.js +0 -7
  317. package/hooks/useClassname.js.map +0 -1
  318. package/hooks/useDraggable.d.ts +0 -23
  319. package/hooks/useDraggable.js +0 -147
  320. package/hooks/useDraggable.js.map +0 -1
  321. package/hooks/useKeepElementFocused.d.ts +0 -2
  322. package/hooks/useKeepElementFocused.js +0 -37
  323. package/hooks/useKeepElementFocused.js.map +0 -1
  324. package/hooks/useScreenSize.d.ts +0 -5
  325. package/hooks/useScreenSize.js +0 -21
  326. package/hooks/useScreenSize.js.map +0 -1
  327. package/index.d.ts +0 -18
  328. package/index.js +0 -19
  329. package/index.js.map +0 -1
  330. package/styles/stargazerui.css.map +0 -1
  331. package/utils/ContrastingColor.d.ts +0 -1
  332. package/utils/MergeClassnames.d.ts +0 -2
  333. package/utils/MergeClassnames.js +0 -7
  334. package/utils/MergeClassnames.js.map +0 -1
  335. package/utils/MergeRefs.d.ts +0 -2
  336. package/utils/MergeRefs.js +0 -16
  337. package/utils/MergeRefs.js.map +0 -1
  338. /package/{Button → types/components/Button}/Button.d.ts +0 -0
  339. /package/{Card → types/components/Card}/Card.d.ts +0 -0
  340. /package/{CloseButton → types/components/CloseButton}/CloseButton.d.ts +0 -0
  341. /package/{Dropdown → types/components/Dropdown}/Dropdown.d.ts +0 -0
  342. /package/{FloatingLabel → types/components/FloatingLabel}/FloatingLabel.d.ts +0 -0
  343. /package/{Nav → types/components/Nav}/Nav.d.ts +0 -0
  344. /package/{NavDropdown → types/components/NavDropdown}/NavDropdown.types.d.ts +0 -0
  345. /package/{Popout → types/components/Popout}/Popout.d.ts +0 -0
  346. /package/{Spinner → types/components/Spinner}/Spinner.d.ts +0 -0
  347. /package/{Spinner → types/components/Spinner}/Spinner.types.d.ts +0 -0
  348. /package/{Table → types/components/Table}/Table.d.ts +0 -0
  349. /package/{Tabs → types/components/Tabs}/Tabs.d.ts +0 -0
@@ -1,678 +1,3 @@
1
- :root {
2
- --sg-body-bg: #212529;
3
- --sg-body-color: white;
4
- --sg-nav-color: #1a1b1d;
5
- --sg-code-color: #fc5d5d;
6
- --sg-font-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
7
- --sg-highlight-bg: #fff3cd;
8
- --sg-link-color: #fc5d5d;
9
- --sg-link-hover-color: color.mix(black, #E15554, 15%);
10
- --sg-primary: rgb(73, 149, 213);
11
- --sg-secondary: rgb(108, 117, 125);
12
- --sg-success: rgb(31, 173, 97);
13
- --sg-info: rgb(145, 132, 189);
14
- --sg-warning: rgb(224, 188, 41);
15
- --sg-danger: rgb(252, 95, 95);
16
- --sg-light: rgb(248, 249, 250);
17
- --sg-dark: rgb(33, 37, 41);
18
- --red-2: rgb(248, 113, 113);
19
- --orange-2: rgb(251 146 60);
20
- --yellow-2: rgb(251 191 36);
21
- --nav-bar-height: 3.5rem;
22
- --tab-controls-height: 2.5rem;
23
- --column-header-height: 2rem;
24
- font-size: 18px;
25
- line-height: 1.4;
26
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
27
- -webkit-font-smoothing: antialiased;
28
- -moz-osx-font-smoothing: grayscale;
29
- }
30
-
31
- body {
32
- margin: 0;
33
- padding: 0;
34
- height: 100dvh;
35
- color: var(--sg-body-color);
36
- background-color: var(--sg-body-bg);
37
- }
38
-
39
- #root {
40
- height: 100%;
41
- overflow: auto;
42
- }
43
-
44
- .visually-hidden {
45
- border: 0;
46
- clip: rect(0 0 0 0);
47
- height: auto;
48
- margin: 0;
49
- overflow: hidden;
50
- padding: 0;
51
- position: absolute;
52
- width: 1px;
53
- white-space: nowrap;
54
- }
55
-
56
- ::-webkit-scrollbar {
57
- display: none;
58
- }
59
-
60
- .full-width {
61
- width: 100%;
62
- }
63
-
64
- .top-left-grid {
65
- border-top-left-radius: 0.375rem;
66
- border-bottom-left-radius: 0;
67
- }
68
-
69
- .top-right-grid {
70
- border-top-right-radius: 0.375rem;
71
- border-bottom-right-radius: 0;
72
- }
73
-
74
- .middle-grid {
75
- border-radius: 0;
76
- }
77
-
78
- .bottom-left-grid {
79
- border-bottom-left-radius: 0.375rem;
80
- border-top-left-radius: 0;
81
- }
82
-
83
- .bottom-right-grid {
84
- border-bottom-right-radius: 0.375rem;
85
- border-top-right-radius: 0;
86
- }
87
-
88
- .flex-column {
89
- display: flex;
90
- flex-direction: column;
91
- }
92
-
93
- .flex-row {
94
- display: flex;
95
- flex-direction: row;
96
- }
97
-
98
- .test-red {
99
- background-color: red;
100
- }
101
-
102
- * {
103
- box-sizing: border-box;
104
- scrollbar-color: var(--sg-link-color) rgba(0, 0, 0, 0);
105
- scrollbar-width: thin;
106
- }
107
-
108
- dialog {
109
- padding: 0;
110
- margin: 0;
111
- color: inherit;
112
- }
113
-
114
- input, textarea, select {
115
- font-size: 0.85rem;
116
- }
117
-
118
- button {
119
- cursor: pointer;
120
- font-size: 0.85rem;
121
- }
122
-
123
- hr {
124
- margin: 0.5rem 0;
125
- color: inherit;
126
- border: 0;
127
- border-top: 1px solid;
128
- opacity: 0.25;
129
- }
130
-
131
- h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
132
- margin-top: 0;
133
- margin-bottom: 0.5rem;
134
- font-weight: 500;
135
- line-height: 1.2;
136
- }
137
-
138
- h1, .h1 {
139
- font-size: calc(1.375rem + 1.5vw);
140
- }
141
-
142
- @media (min-width: 1200px) {
143
- h1, .h1 {
144
- font-size: 2.5rem;
145
- }
146
- }
147
- h2, .h2 {
148
- font-size: calc(1.325rem + 0.9vw);
149
- }
150
-
151
- @media (min-width: 1200px) {
152
- h2, .h2 {
153
- font-size: 2rem;
154
- }
155
- }
156
- h3, .h3 {
157
- font-size: calc(1.3rem + 0.6vw);
158
- }
159
-
160
- @media (min-width: 1200px) {
161
- h3, .h3 {
162
- font-size: 1.75rem;
163
- }
164
- }
165
- h4, .h4 {
166
- font-size: calc(1.275rem + 0.3vw);
167
- }
168
-
169
- @media (min-width: 1200px) {
170
- h4, .h4 {
171
- font-size: 1.5rem;
172
- }
173
- }
174
- h5, .h5 {
175
- font-size: 1.25rem;
176
- }
177
-
178
- h6, .h6 {
179
- font-size: 1rem;
180
- }
181
-
182
- p {
183
- margin-top: 0;
184
- margin-bottom: 1rem;
185
- }
186
-
187
- ol, ul, dl {
188
- margin-top: 0;
189
- margin-bottom: 0;
190
- }
191
-
192
- dt {
193
- font-weight: 700;
194
- }
195
-
196
- dd {
197
- margin-bottom: 0.5rem;
198
- margin-left: 0;
199
- }
200
-
201
- b, strong {
202
- font-weight: bolder;
203
- }
204
-
205
- a {
206
- color: var(--sg-link-color);
207
- text-decoration: underline;
208
- }
209
-
210
- a:hover {
211
- color: var(--sg-link-hover-color);
212
- }
213
-
214
- img, svg {
215
- vertical-align: middle;
216
- }
217
-
218
- label {
219
- display: inline-block;
220
- }
221
-
222
- :root, .dark, .dark-theme {
223
- --red-1: #2b2221;
224
- --red-2: #322321;
225
- --red-3: #4e201f;
226
- --red-4: #641c1d;
227
- --red-5: #732122;
228
- --red-6: #832c2c;
229
- --red-7: #9b3a39;
230
- --red-8: #c44848;
231
- --red-9: #fc5f5f;
232
- --red-10: #ee5254;
233
- --red-11: #ff918b;
234
- --red-12: #ffd1cd;
235
- --red-a1: #f600000c;
236
- --red-a2: #fa0c0014;
237
- --red-a3: #fe0d0034;
238
- --red-a4: #ff08024d;
239
- --red-a5: #fd1b175f;
240
- --red-a6: #ff353071;
241
- --red-a7: #fe4b468d;
242
- --red-a8: #fe5453bc;
243
- --red-a9: #ff6060fc;
244
- --red-a10: #ff5558ec;
245
- --red-a11: #ff918b;
246
- --red-a12: #ffd1cd;
247
- --red-contrast: #fff;
248
- --red-surface: #43221a80;
249
- --red-indicator: #fc5f5f;
250
- --red-track: #fc5f5f;
251
- --blue-1: #1e252c;
252
- --blue-2: #212931;
253
- --blue-3: #22384b;
254
- --blue-4: #20425f;
255
- --blue-5: #274d6d;
256
- --blue-6: #315a7d;
257
- --blue-7: #3d6a91;
258
- --blue-8: #487ead;
259
- --blue-9: #4995d5;
260
- --blue-10: #5288b8;
261
- --blue-11: #83bff6;
262
- --blue-12: #c9e4fe;
263
- --blue-a1: #0025e904;
264
- --blue-a2: #218cf60a;
265
- --blue-a3: #289cfd29;
266
- --blue-a4: #1e97fd41;
267
- --blue-a5: #34a2fd52;
268
- --blue-a6: #4aabfd65;
269
- --blue-a7: #5bb3ff7c;
270
- --blue-a8: #60b5fe9e;
271
- --blue-a9: #53b1ffcd;
272
- --blue-a10: #6ab9feab;
273
- --blue-a11: #87c6fef5;
274
- --blue-a12: #cae5fffe;
275
- --blue-contrast: #fff;
276
- --blue-surface: #212d3980;
277
- --blue-indicator: #4995d5;
278
- --blue-track: #4995d5;
279
- --green-1: #1f2721;
280
- --green-2: #222b25;
281
- --green-3: #263b2c;
282
- --green-4: #254a31;
283
- --green-5: #295639;
284
- --green-6: #2e6441;
285
- --green-7: #33734a;
286
- --green-8: #368453;
287
- --green-9: #1fad61;
288
- --green-10: #00a055;
289
- --green-11: #57d688;
290
- --green-12: #b3f3c5;
291
- --green-a1: #00d00003;
292
- --green-a2: #41e50008;
293
- --green-a3: #53fd471a;
294
- --green-a4: #39fc582c;
295
- --green-a5: #45fc703a;
296
- --green-a6: #4eff7c4a;
297
- --green-a7: #53fd855c;
298
- --green-a8: #50fd8970;
299
- --green-a9: #1efe83a0;
300
- --green-a10: #00ff7790;
301
- --green-a11: #63fe9dd0;
302
- --green-a12: #bbffcef1;
303
- --green-contrast: #fff;
304
- --green-surface: #23312280;
305
- --green-indicator: #1fad61;
306
- --green-track: #1fad61;
307
- --yellow-1: #26241f;
308
- --yellow-2: #2c2a21;
309
- --yellow-3: #3a331c;
310
- --yellow-4: #463a0f;
311
- --yellow-5: #51430f;
312
- --yellow-6: #5c4f1f;
313
- --yellow-7: #6d5f2d;
314
- --yellow-8: #867537;
315
- --yellow-9: #e0bc29;
316
- --yellow-10: #d5b112;
317
- --yellow-11: #f8d44f;
318
- --yellow-12: #f7eabb;
319
- --yellow-a1: #f6000006;
320
- --yellow-a2: #f988000d;
321
- --yellow-a3: #fda1001d;
322
- --yellow-a4: #fda2002b;
323
- --yellow-a5: #fcae0038;
324
- --yellow-a6: #ffc30444;
325
- --yellow-a7: #fdce3558;
326
- --yellow-a8: #fdd44875;
327
- --yellow-a9: #fed429dc;
328
- --yellow-a10: #ffd20dcf;
329
- --yellow-a11: #ffda51f7;
330
- --yellow-a12: #fff2c1f6;
331
- --yellow-contrast: #282109;
332
- --yellow-surface: #372f1a80;
333
- --yellow-indicator: #e0bc29;
334
- --yellow-track: #e0bc29;
335
- --gray-1: #242427;
336
- --gray-2: #2b2b2d;
337
- --gray-3: #333336;
338
- --gray-4: #38393d;
339
- --gray-5: #3d3e43;
340
- --gray-6: #45464c;
341
- --gray-7: #505259;
342
- --gray-8: #676973;
343
- --gray-9: #73757f;
344
- --gray-10: #7e808b;
345
- --gray-11: #b4b6c0;
346
- --gray-12: #eeeef0;
347
- --gray-a1: #e1000004;
348
- --gray-a2: #f6a57e0c;
349
- --gray-a3: #fccfc715;
350
- --gray-a4: #fae2e61b;
351
- --gray-a5: #fae7f221;
352
- --gray-a6: #fbeefe2a;
353
- --gray-a7: #f0ebfc3a;
354
- --gray-a8: #eae8fd59;
355
- --gray-a9: #ececfe67;
356
- --gray-a10: #ececff75;
357
- --gray-a11: #f1f2ffb4;
358
- --gray-a12: #fdfdfeee;
359
- --gray-contrast: #FFFFFF;
360
- --gray-surface: rgba(0, 0, 0, 0.05);
361
- --gray-indicator: #73757f;
362
- --gray-track: #73757f;
363
- --violet-1: #25232b;
364
- --violet-2: #2a2831;
365
- --violet-3: #353143;
366
- --violet-4: #3c3651;
367
- --violet-5: #433c59;
368
- --violet-6: #4b4463;
369
- --violet-7: #585073;
370
- --violet-8: #6e648f;
371
- --violet-9: #9184bd;
372
- --violet-10: #8578b0;
373
- --violet-11: #b9afdf;
374
- --violet-12: #eae7f6;
375
- --violet-a1: #ee009005;
376
- --violet-a2: #f26be30b;
377
- --violet-a3: #c687ff1f;
378
- --violet-a4: #b180fe30;
379
- --violet-a5: #b78afc3a;
380
- --violet-a6: #ba96fd46;
381
- --violet-a7: #bfa1fd59;
382
- --violet-a8: #c2a9ff7a;
383
- --violet-a9: #c3aefeb1;
384
- --violet-a10: #c0a8ffa1;
385
- --violet-a11: #d4c7ffd9;
386
- --violet-a12: #f3effef5;
387
- --violet-contrast: #fff;
388
- --violet-surface: #332b3980;
389
- --violet-indicator: #9184bd;
390
- --violet-track: #9184bd;
391
- --dark-1: #0f1114;
392
- --dark-2: #17191c;
393
- --dark-3: #1f2327;
394
- --dark-4: #252a2f;
395
- --dark-5: #2b3137;
396
- --dark-6: #343a41;
397
- --dark-7: #41484f;
398
- --dark-8: #5a6168;
399
- --dark-9: #686f76;
400
- --dark-10: #5a6168;
401
- --dark-11: #adb4bc;
402
- --dark-12: #eceef1;
403
- --dark-a1: #0011d104;
404
- --dark-a2: #91bcfb0c;
405
- --dark-a3: #a6d1fb18;
406
- --dark-a4: #acd3f921;
407
- --dark-a5: #b3d9fe29;
408
- --dark-a6: #bcdafc34;
409
- --dark-a7: #c7e2fd43;
410
- --dark-a8: #d7eafd5e;
411
- --dark-a9: #ddedfd6d;
412
- --dark-a10: #d7eafd5e;
413
- --dark-a11: #e9f3feb8;
414
- --dark-a12: #fafcfff0;
415
- --dark-contrast: #fff;
416
- --dark-surface: #1d212780;
417
- --dark-indicator: #686f76;
418
- --dark-track: #686f76;
419
- --light-1: #101112;
420
- --light-2: #18191a;
421
- --light-3: #222324;
422
- --light-4: #292a2b;
423
- --light-5: #303132;
424
- --light-6: #393b3c;
425
- --light-7: #474849;
426
- --light-8: #606162;
427
- --light-9: #f8f9fa;
428
- --light-10: #eff0f1;
429
- --light-11: #b3b4b6;
430
- --light-12: #edeeef;
431
- --light-a1: #00119102;
432
- --light-a2: #c4def70a;
433
- --light-a3: #e0ecf815;
434
- --light-a4: #ecf5fe1c;
435
- --light-a5: #edf4fb24;
436
- --light-a6: #ebf5fb2f;
437
- --light-a7: #f7fbff3c;
438
- --light-a8: #f9fcff57;
439
- --light-a9: #fdfefffa;
440
- --light-a10: #fdfefff0;
441
- --light-a11: #fbfcffb1;
442
- --light-a12: #fdfeffee;
443
- --light-contrast: #112334;
444
- --light-surface: #1f212380;
445
- --light-indicator: #f8f9fa;
446
- --light-track: #f8f9fa;
447
- }
448
-
449
- .light, .light-theme {
450
- --red-1: #fffcfc;
451
- --red-2: #fff6f6;
452
- --red-3: #ffebe9;
453
- --red-4: #ffdad6;
454
- --red-5: #ffcac5;
455
- --red-6: #ffbbb5;
456
- --red-7: #f7a8a2;
457
- --red-8: #ee8d88;
458
- --red-9: #fc5f5f;
459
- --red-10: #ef5053;
460
- --red-11: #d1353c;
461
- --red-12: #602221;
462
- --red-a1: #ff000003;
463
- --red-a2: #ff000009;
464
- --red-a3: #ff180016;
465
- --red-a4: #ff190029;
466
- --red-a5: #ff16003a;
467
- --red-a6: #ff15014a;
468
- --red-a7: #ea11005d;
469
- --red-a8: #db0b0077;
470
- --red-a9: #fb0000a0;
471
- --red-a10: #e80005af;
472
- --red-a11: #c50009ca;
473
- --red-a12: #480100de;
474
- --red-contrast: #fff;
475
- --red-surface: #fff4f4cc;
476
- --red-indicator: #fc5f5f;
477
- --red-track: #fc5f5f;
478
- --blue-1: #fbfdff;
479
- --blue-2: #f5f9fe;
480
- --blue-3: #e7f3ff;
481
- --blue-4: #d8ecff;
482
- --blue-5: #c8e2fb;
483
- --blue-6: #b4d6f4;
484
- --blue-7: #9bc5eb;
485
- --blue-8: #74ade1;
486
- --blue-9: #4995d5;
487
- --blue-10: #4289c4;
488
- --blue-11: #2675b3;
489
- --blue-12: #1c3750;
490
- --blue-a1: #0080ff04;
491
- --blue-a2: #0066e60a;
492
- --blue-a3: #0080ff18;
493
- --blue-a4: #0083ff27;
494
- --blue-a5: #0079ed37;
495
- --blue-a6: #0174da4b;
496
- --blue-a7: #006ccc64;
497
- --blue-a8: #0069c88b;
498
- --blue-a9: #006bc4b6;
499
- --blue-a10: #0060b0bd;
500
- --blue-a11: #005da6d9;
501
- --blue-a12: #001e3ae3;
502
- --blue-contrast: #fff;
503
- --blue-surface: #f3f8fecc;
504
- --blue-indicator: #4995d5;
505
- --blue-track: #4995d5;
506
- --green-1: #fafefb;
507
- --green-2: #f4fbf6;
508
- --green-3: #e6f7ea;
509
- --green-4: #d6f2dd;
510
- --green-5: #c2eacd;
511
- --green-6: #a9e0b9;
512
- --green-7: #87d19e;
513
- --green-8: #50bd79;
514
- --green-9: #1fad61;
515
- --green-10: #12a057;
516
- --green-11: #008141;
517
- --green-12: #1a3d26;
518
- --green-a1: #00cc3305;
519
- --green-a2: #00a32f0b;
520
- --green-a3: #00ae2919;
521
- --green-a4: #00af2c29;
522
- --green-a5: #00a82e3d;
523
- --green-a6: #00a43056;
524
- --green-a7: #009e3178;
525
- --green-a8: #009f3caf;
526
- --green-a9: #00a24be0;
527
- --green-a10: #00994aed;
528
- --green-a11: #008141;
529
- --green-a12: #00270de5;
530
- --green-contrast: #fff;
531
- --green-surface: #f1faf4cc;
532
- --green-indicator: #1fad61;
533
- --green-track: #1fad61;
534
- --yellow-1: #fefdf9;
535
- --yellow-2: #fffbe4;
536
- --yellow-3: #fff6c9;
537
- --yellow-4: #ffeda3;
538
- --yellow-5: #ffe36b;
539
- --yellow-6: #fcd539;
540
- --yellow-7: #e9c537;
541
- --yellow-8: #d5ae00;
542
- --yellow-9: #ffd800;
543
- --yellow-10: #fbce00;
544
- --yellow-11: #917500;
545
- --yellow-12: #463b14;
546
- --yellow-a1: #d5aa0006;
547
- --yellow-a2: #ffda001b;
548
- --yellow-a3: #ffd50036;
549
- --yellow-a4: #ffce005c;
550
- --yellow-a5: #ffcf0094;
551
- --yellow-a6: #fbc900c6;
552
- --yellow-a7: #e3b500c8;
553
- --yellow-a8: #d5ae00;
554
- --yellow-a9: #ffd800;
555
- --yellow-a10: #fbce00;
556
- --yellow-a11: #917500;
557
- --yellow-a12: #362a00eb;
558
- --yellow-contrast: #282109;
559
- --yellow-surface: #fffaddcc;
560
- --yellow-indicator: #ffd800;
561
- --yellow-track: #ffd800;
562
- --gray-1: #fcfcfd;
563
- --gray-2: #f9f9fb;
564
- --gray-3: #eff0f3;
565
- --gray-4: #e7e8ec;
566
- --gray-5: #e0e1e6;
567
- --gray-6: #d8d9e0;
568
- --gray-7: #cdced7;
569
- --gray-8: #b9bbc6;
570
- --gray-9: #8b8d98;
571
- --gray-10: #80828d;
572
- --gray-11: #62636c;
573
- --gray-12: #1e1f24;
574
- --gray-a1: #00005503;
575
- --gray-a2: #00005506;
576
- --gray-a3: #00104010;
577
- --gray-a4: #000b3618;
578
- --gray-a5: #0009321f;
579
- --gray-a6: #00073527;
580
- --gray-a7: #00063332;
581
- --gray-a8: #00083046;
582
- --gray-a9: #00051d74;
583
- --gray-a10: #00051b7f;
584
- --gray-a11: #0002119d;
585
- --gray-a12: #000107e1;
586
- --gray-contrast: #FFFFFF;
587
- --gray-surface: #ffffffcc;
588
- --gray-indicator: #8b8d98;
589
- --gray-track: #8b8d98;
590
- --violet-1: #fcfcfe;
591
- --violet-2: #faf9fd;
592
- --violet-3: #f1f0f8;
593
- --violet-4: #e9e6f6;
594
- --violet-5: #e1ddf2;
595
- --violet-6: #d8d3ed;
596
- --violet-7: #cbc5e5;
597
- --violet-8: #b7aed8;
598
- --violet-9: #9184bd;
599
- --violet-10: #8578af;
600
- --violet-11: #675c8b;
601
- --violet-12: #27203a;
602
- --violet-a1: #0000aa03;
603
- --violet-a2: #2b00aa06;
604
- --violet-a3: #1100880f;
605
- --violet-a4: #1f00a419;
606
- --violet-a5: #1e009e22;
607
- --violet-a6: #1d00972c;
608
- --violet-a7: #1b008d3a;
609
- --violet-a8: #1d008551;
610
- --violet-a9: #1b01777b;
611
- --violet-a10: #19006887;
612
- --violet-a11: #11004aa3;
613
- --violet-a12: #08001edf;
614
- --violet-contrast: #fff;
615
- --violet-surface: #f9f8fdcc;
616
- --violet-indicator: #9184bd;
617
- --violet-track: #9184bd
618
- --dark-1: #fcfcfd;
619
- --dark-2: #f8fafb;
620
- --dark-3: #eef0f3;
621
- --dark-4: #e5e8eb;
622
- --dark-5: #dde1e5;
623
- --dark-6: #d5d9dd;
624
- --dark-7: #c9ced3;
625
- --dark-8: #b4bbc1;
626
- --dark-9: #212529;
627
- --dark-10: #353a3e;
628
- --dark-11: #60656b;
629
- --dark-12: #1f2327;
630
- --dark-a1: #00005503;
631
- --dark-a2: #00496e07;
632
- --dark-a3: #001e4b11;
633
- --dark-a4: #001e3b1a;
634
- --dark-a5: #001e3c22;
635
- --dark-a6: #0019312a;
636
- --dark-a7: #00183036;
637
- --dark-a8: #01182d4b;
638
- --dark-a9: #000509de;
639
- --dark-a10: #00060bca;
640
- --dark-a11: #0008129f;
641
- --dark-a12: #000509e0;
642
- --dark-contrast: #fff;
643
- --dark-surface: #f6f9facc;
644
- --dark-indicator: #212529;
645
- --dark-track: #212529;
646
- --light-1: #fcfcfc;
647
- --light-2: #f8f9fa;
648
- --light-3: #eef0f1;
649
- --light-4: #e7e8e9;
650
- --light-5: #dfe0e2;
651
- --light-6: #d6d8d9;
652
- --light-7: #cbccce;
653
- --light-8: #b7b8ba;
654
- --light-9: #88898b;
655
- --light-10: #7c7d7e;
656
- --light-11: #636466;
657
- --light-12: #212223;
658
- --light-a1: #00000003;
659
- --light-a2: #00254907;
660
- --light-a3: #001e2d11;
661
- --light-a4: #000b1618;
662
- --light-a5: #00081820;
663
- --light-a6: #000d1329;
664
- --light-a7: #00050f34;
665
- --light-a8: #00040b48;
666
- --light-a9: #00030777;
667
- --light-a10: #00020483;
668
- --light-a11: #0002059c;
669
- --light-a12: #000102de;
670
- --light-contrast: #fff;
671
- --light-surface: #f6f8f9cc;
672
- --light-indicator: #88898b;
673
- --light-track: #88898b;
674
- }
675
-
676
1
  @media (min-width: 576px) {
677
2
  .float-sm-start {
678
3
  float: left !important;
@@ -3153,17 +2478,6 @@ label {
3153
2478
  text-align: center !important;
3154
2479
  }
3155
2480
  }
3156
- :root {
3157
- --sg-body-bg: #212529;
3158
- --sg-body-color: white;
3159
- }
3160
-
3161
- body {
3162
- background-color: var(--sg-body-bg);
3163
- color: var(--sg-body-color);
3164
- font-size: 18px;
3165
- }
3166
-
3167
2481
  /* Grid variables */
3168
2482
  /* z indices */
3169
2483
  /* Button */
@@ -3184,10 +2498,7 @@ body {
3184
2498
  }
3185
2499
 
3186
2500
  /* Table */
3187
- /* Tabs */
3188
2501
  /* Dropdown */
3189
- /* Nav */
3190
- /* Overlay */
3191
2502
  .sg-visually-hidden {
3192
2503
  position: absolute !important;
3193
2504
  width: 1px !important;
@@ -3201,22 +2512,12 @@ body {
3201
2512
  }
3202
2513
 
3203
2514
  .sg-card {
3204
- --card-border-radius: 0rem;
3205
- --border-width: -2px;
3206
- --border-gradient-color: color-mix(in srgb, color-mix(in hsl, white 3%, #212529), white 3%);
3207
- --border-gradient-mix-color: color-mix(in srgb, color-mix(in hsl, white 3%, #212529), white 3%);
3208
- --background-gradient-color: rgb(26, 27, 29);
3209
- --background-gradient-mix-color: color-mix(in srgb, color-mix(in hsl, white 3%, #212529), white 3%);
3210
- --divider-color: white;
3211
2515
  display: flex;
3212
2516
  flex-direction: column;
3213
- border: calc(var(--border-width) * -1) solid transparent;
3214
- position: relative;
3215
- border-radius: var(--card-border-radius);
3216
- background: linear-gradient(71deg, var(--background-gradient-color), var(--background-gradient-mix-color), var(--background-gradient-color));
3217
- background-clip: padding-box;
2517
+ border-radius: 0.375em;
3218
2518
  }
3219
2519
  .sg-card.sg-card-overlay {
2520
+ background-color: #2e3236;
3220
2521
  color: white;
3221
2522
  border: 1px solid white;
3222
2523
  }
@@ -3227,197 +2528,24 @@ body {
3227
2528
  .sg-card .sg-card-header {
3228
2529
  margin-bottom: 0;
3229
2530
  padding: 0.5em 1em;
3230
- border-bottom: 1px solid var(--divider-color);
2531
+ background-color: #212529;
2532
+ border-bottom: 1px solid white;
3231
2533
  }
3232
2534
  .sg-card .sg-card-header:first-child {
3233
- border-top-left-radius: var(--card-border-radius);
3234
- border-top-right-radius: var(--card-border-radius);
3235
- }
3236
- .sg-card .sg-card-title {
3237
- margin: 0;
2535
+ border-radius: 0.375em 0.375em 0 0;
3238
2536
  }
3239
2537
  .sg-card .sg-card-footer {
3240
2538
  padding: 0.5em 1em;
3241
- border-top: 1px solid var(--divider-color);
2539
+ background-color: #212529;
2540
+ border-top: 1px solid white;
3242
2541
  }
3243
2542
  .sg-card .sg-card-footer:last-child {
3244
- border-bottom-left-radius: var(--card-border-radius);
3245
- border-bottom-right-radius: var(--card-border-radius);
2543
+ border-radius: 0 0 0.375em 0.375em;
3246
2544
  }
3247
2545
  .sg-card .sg-card-text:last-child {
3248
2546
  margin-bottom: 0;
3249
2547
  }
3250
2548
 
3251
- .sg-card::after {
3252
- position: absolute;
3253
- content: "";
3254
- top: var(--border-width);
3255
- bottom: var(--border-width);
3256
- right: var(--border-width);
3257
- left: var(--border-width);
3258
- z-index: -1;
3259
- border-radius: var(--card-border-radius);
3260
- background: linear-gradient(71deg, var(--border-gradient-color), var(--border-gradient-mix-color), var(--border-gradient-color));
3261
- }
3262
-
3263
- .primary {
3264
- --border-gradient-mix-color: rgb(252, 95, 95);
3265
- grid-column: 2/3;
3266
- grid-row: 1;
3267
- }
3268
- .primary.inverted {
3269
- --border-gradient-color: color-mix(in srgb, rgb(252, 95, 95), black 30%);
3270
- --border-gradient-mix-color: rgb(252, 95, 95);
3271
- --background-gradient-color: color-mix(in srgb, rgb(252, 95, 95), black 0%);
3272
- --background-gradient-mix-color: rgb(252, 95, 95);
3273
- --divider-color: color-mix(in srgb, rgb(252, 95, 95), black 15%);
3274
- /*
3275
- > h1, h2, h3, h4, h5, h6, span, p, small {
3276
- background-color: $color;
3277
- box-shadow: 1px -1px 10px $color, 1px 1px 10px $color, -1px 1px 10px $color, -1px -1px 10px $color;
3278
- }
3279
- */
3280
- color: black;
3281
- }
3282
-
3283
- .secondary {
3284
- --border-gradient-mix-color: #6c757d;
3285
- grid-column: 4/5;
3286
- grid-row: 1;
3287
- }
3288
- .secondary.inverted {
3289
- --border-gradient-color: color-mix(in srgb, #6c757d, black 30%);
3290
- --border-gradient-mix-color: #6c757d;
3291
- --background-gradient-color: color-mix(in srgb, #6c757d, black 0%);
3292
- --background-gradient-mix-color: #6c757d;
3293
- --divider-color: color-mix(in srgb, #6c757d, black 15%);
3294
- /*
3295
- > h1, h2, h3, h4, h5, h6, span, p, small {
3296
- background-color: $color;
3297
- box-shadow: 1px -1px 10px $color, 1px 1px 10px $color, -1px 1px 10px $color, -1px -1px 10px $color;
3298
- }
3299
- */
3300
- }
3301
-
3302
- .success {
3303
- --border-gradient-mix-color: #1fad61;
3304
- grid-column: 6/7;
3305
- grid-row: 1;
3306
- }
3307
- .success.inverted {
3308
- --border-gradient-color: color-mix(in srgb, #1fad61, black 30%);
3309
- --border-gradient-mix-color: #1fad61;
3310
- --background-gradient-color: color-mix(in srgb, #1fad61, black 0%);
3311
- --background-gradient-mix-color: #1fad61;
3312
- --divider-color: color-mix(in srgb, #1fad61, black 15%);
3313
- /*
3314
- > h1, h2, h3, h4, h5, h6, span, p, small {
3315
- background-color: $color;
3316
- box-shadow: 1px -1px 10px $color, 1px 1px 10px $color, -1px 1px 10px $color, -1px -1px 10px $color;
3317
- }
3318
- */
3319
- color: black;
3320
- }
3321
-
3322
- .info {
3323
- --border-gradient-mix-color: #9184bd;
3324
- grid-column: 8/9;
3325
- grid-row: 1;
3326
- }
3327
- .info.inverted {
3328
- --border-gradient-color: color-mix(in srgb, #9184bd, black 30%);
3329
- --border-gradient-mix-color: #9184bd;
3330
- --background-gradient-color: color-mix(in srgb, #9184bd, black 0%);
3331
- --background-gradient-mix-color: #9184bd;
3332
- --divider-color: color-mix(in srgb, #9184bd, black 15%);
3333
- /*
3334
- > h1, h2, h3, h4, h5, h6, span, p, small {
3335
- background-color: $color;
3336
- box-shadow: 1px -1px 10px $color, 1px 1px 10px $color, -1px 1px 10px $color, -1px -1px 10px $color;
3337
- }
3338
- */
3339
- color: black;
3340
- }
3341
-
3342
- .warning {
3343
- --border-gradient-mix-color: hsl(48, 75%, 52%);
3344
- grid-column: 2/3;
3345
- grid-row: 2;
3346
- }
3347
- .warning.inverted {
3348
- --border-gradient-color: color-mix(in srgb, hsl(48, 75%, 52%), black 30%);
3349
- --border-gradient-mix-color: hsl(48, 75%, 52%);
3350
- --background-gradient-color: color-mix(in srgb, hsl(48, 75%, 52%), black 0%);
3351
- --background-gradient-mix-color: hsl(48, 75%, 52%);
3352
- --divider-color: color-mix(in srgb, hsl(48, 75%, 52%), black 15%);
3353
- /*
3354
- > h1, h2, h3, h4, h5, h6, span, p, small {
3355
- background-color: $color;
3356
- box-shadow: 1px -1px 10px $color, 1px 1px 10px $color, -1px 1px 10px $color, -1px -1px 10px $color;
3357
- }
3358
- */
3359
- color: black;
3360
- }
3361
-
3362
- .danger {
3363
- --border-gradient-mix-color: #4995d5;
3364
- grid-column: 4/5;
3365
- grid-row: 2;
3366
- }
3367
- .danger.inverted {
3368
- --border-gradient-color: color-mix(in srgb, #4995d5, black 30%);
3369
- --border-gradient-mix-color: #4995d5;
3370
- --background-gradient-color: color-mix(in srgb, #4995d5, black 0%);
3371
- --background-gradient-mix-color: #4995d5;
3372
- --divider-color: color-mix(in srgb, #4995d5, black 15%);
3373
- /*
3374
- > h1, h2, h3, h4, h5, h6, span, p, small {
3375
- background-color: $color;
3376
- box-shadow: 1px -1px 10px $color, 1px 1px 10px $color, -1px 1px 10px $color, -1px -1px 10px $color;
3377
- }
3378
- */
3379
- color: black;
3380
- }
3381
-
3382
- .light {
3383
- --border-gradient-mix-color: #f8f9fa;
3384
- grid-column: 6/7;
3385
- grid-row: 2;
3386
- }
3387
- .light.inverted {
3388
- --border-gradient-color: color-mix(in srgb, #f8f9fa, black 30%);
3389
- --border-gradient-mix-color: #f8f9fa;
3390
- --background-gradient-color: color-mix(in srgb, #f8f9fa, black 0%);
3391
- --background-gradient-mix-color: #f8f9fa;
3392
- --divider-color: color-mix(in srgb, #f8f9fa, black 15%);
3393
- /*
3394
- > h1, h2, h3, h4, h5, h6, span, p, small {
3395
- background-color: $color;
3396
- box-shadow: 1px -1px 10px $color, 1px 1px 10px $color, -1px 1px 10px $color, -1px -1px 10px $color;
3397
- }
3398
- */
3399
- color: black;
3400
- }
3401
-
3402
- .dark {
3403
- --border-gradient-mix-color: #212529;
3404
- grid-column: 8/9;
3405
- grid-row: 2;
3406
- }
3407
- .dark.inverted {
3408
- --border-gradient-color: color-mix(in srgb, #212529, black 30%);
3409
- --border-gradient-mix-color: #212529;
3410
- --background-gradient-color: color-mix(in srgb, #212529, black 0%);
3411
- --background-gradient-mix-color: #212529;
3412
- --divider-color: color-mix(in srgb, #212529, black 15%);
3413
- /*
3414
- > h1, h2, h3, h4, h5, h6, span, p, small {
3415
- background-color: $color;
3416
- box-shadow: 1px -1px 10px $color, 1px 1px 10px $color, -1px 1px 10px $color, -1px -1px 10px $color;
3417
- }
3418
- */
3419
- }
3420
-
3421
2549
  .sg-button-close {
3422
2550
  box-sizing: content-box;
3423
2551
  width: 1rem;
@@ -3473,22 +2601,15 @@ body {
3473
2601
  --focus-visible-border-color: white;
3474
2602
  --focus-visible-outline-color: #0d6efd;
3475
2603
  --focus-visible-boxshadow-color: white;
2604
+ border-radius: 0.375rem;
3476
2605
  min-width: fit-content;
3477
2606
  display: inline-block;
3478
2607
  text-align: center;
3479
2608
  vertical-align: middle;
3480
2609
  padding: 0.375rem 0.75rem;
3481
2610
  background-color: var(--bg-color);
3482
- border: 2px outset color-mix(in oklab, var(--bg-color), var(--text-color) 20%);
2611
+ border: 1px solid var(--border-color);
3483
2612
  color: var(--text-color);
3484
- /*
3485
- &:focus-visible {
3486
- box-shadow: 0 0 0 3px var(--focus-visible-boxshadow-color);
3487
- border: 1px solid var(--focus-visible-border-color);
3488
- outline: 2px solid var(--focus-visible-outline-color);
3489
- z-index: 5;
3490
- }
3491
- */
3492
2613
  }
3493
2614
  .sg-button:hover, .sg-button:focus {
3494
2615
  background-color: var(--bg-hover-color);
@@ -3497,20 +2618,25 @@ body {
3497
2618
  .sg-button:active {
3498
2619
  background-color: var(--bg-active-color);
3499
2620
  border-color: var(--border-active-color);
3500
- border-style: inset;
2621
+ }
2622
+ .sg-button:focus-visible {
2623
+ box-shadow: 0 0 0 3px var(--focus-visible-boxshadow-color);
2624
+ border: 1px solid var(--focus-visible-border-color);
2625
+ outline: 2px solid var(--focus-visible-outline-color);
2626
+ z-index: 5;
3501
2627
  }
3502
2628
 
3503
2629
  .sg-button-primary {
3504
- --text-color: black;
3505
- --bg-color: rgb(252, 95, 95);
3506
- --border-color: rgb(252, 95, 95);
3507
- --bg-hover-color: #fc7777;
3508
- --border-hover-color: #fc7777;
3509
- --bg-active-color: #fd7f7f;
3510
- --border-active-color: #fd7f7f;
3511
- --focus-visible-border-color: black;
3512
- --focus-visible-outline-color: rgb(252, 95, 95);
3513
- --focus-visible-boxshadow-color: black;
2630
+ --text-color: white;
2631
+ --bg-color: #0d6efd;
2632
+ --border-color: #0d6efd;
2633
+ --bg-hover-color: #0b5ed7;
2634
+ --border-hover-color: #0b5ed7;
2635
+ --bg-active-color: #0a58ca;
2636
+ --border-active-color: #0a58ca;
2637
+ --focus-visible-border-color: white;
2638
+ --focus-visible-outline-color: #0d6efd;
2639
+ --focus-visible-boxshadow-color: white;
3514
2640
  }
3515
2641
 
3516
2642
  .sg-button-group > .btn-primary {
@@ -3537,16 +2663,16 @@ body {
3537
2663
  }
3538
2664
 
3539
2665
  .sg-button-success {
3540
- --text-color: black;
3541
- --bg-color: #1fad61;
3542
- --border-color: #1fad61;
3543
- --bg-hover-color: #41b979;
3544
- --border-hover-color: #41b979;
3545
- --bg-active-color: #4cbd81;
3546
- --border-active-color: #4cbd81;
3547
- --focus-visible-border-color: black;
3548
- --focus-visible-outline-color: #1fad61;
3549
- --focus-visible-boxshadow-color: black;
2666
+ --text-color: white;
2667
+ --bg-color: #198754;
2668
+ --border-color: #198754;
2669
+ --bg-hover-color: #157347;
2670
+ --border-hover-color: #157347;
2671
+ --bg-active-color: #146c43;
2672
+ --border-active-color: #146c43;
2673
+ --focus-visible-border-color: white;
2674
+ --focus-visible-outline-color: #198754;
2675
+ --focus-visible-boxshadow-color: white;
3550
2676
  }
3551
2677
 
3552
2678
  .sg-button-group > .btn-success {
@@ -3556,14 +2682,14 @@ body {
3556
2682
 
3557
2683
  .sg-button-info {
3558
2684
  --text-color: black;
3559
- --bg-color: #9184bd;
3560
- --border-color: #9184bd;
3561
- --bg-hover-color: #a296c7;
3562
- --border-hover-color: #a296c7;
3563
- --bg-active-color: #a79dca;
3564
- --border-active-color: #a79dca;
2685
+ --bg-color: #0dcaf0;
2686
+ --border-color: #0dcaf0;
2687
+ --bg-hover-color: #31d2f2;
2688
+ --border-hover-color: #31d2f2;
2689
+ --bg-active-color: #3dd5f3;
2690
+ --border-active-color: #3dd5f3;
3565
2691
  --focus-visible-border-color: black;
3566
- --focus-visible-outline-color: #9184bd;
2692
+ --focus-visible-outline-color: #0dcaf0;
3567
2693
  --focus-visible-boxshadow-color: black;
3568
2694
  }
3569
2695
 
@@ -3574,14 +2700,14 @@ body {
3574
2700
 
3575
2701
  .sg-button-warning {
3576
2702
  --text-color: black;
3577
- --bg-color: hsl(48, 75%, 52%);
3578
- --border-color: hsl(48, 75%, 52%);
3579
- --bg-hover-color: #e5c649;
3580
- --border-hover-color: #e5c649;
3581
- --bg-active-color: #e6c954;
3582
- --border-active-color: #e6c954;
2703
+ --bg-color: #ffc107;
2704
+ --border-color: #ffc107;
2705
+ --bg-hover-color: #ffca2c;
2706
+ --border-hover-color: #ffca2c;
2707
+ --bg-active-color: #ffcd39;
2708
+ --border-active-color: #ffcd39;
3583
2709
  --focus-visible-border-color: black;
3584
- --focus-visible-outline-color: hsl(48, 75%, 52%);
2710
+ --focus-visible-outline-color: #ffc107;
3585
2711
  --focus-visible-boxshadow-color: black;
3586
2712
  }
3587
2713
 
@@ -3591,16 +2717,16 @@ body {
3591
2717
  }
3592
2718
 
3593
2719
  .sg-button-danger {
3594
- --text-color: black;
3595
- --bg-color: #4995d5;
3596
- --border-color: #4995d5;
3597
- --bg-hover-color: #64a5db;
3598
- --border-hover-color: #64a5db;
3599
- --bg-active-color: #6daadd;
3600
- --border-active-color: #6daadd;
3601
- --focus-visible-border-color: black;
3602
- --focus-visible-outline-color: #4995d5;
3603
- --focus-visible-boxshadow-color: black;
2720
+ --text-color: white;
2721
+ --bg-color: #dc3545;
2722
+ --border-color: #dc3545;
2723
+ --bg-hover-color: #bb2d3b;
2724
+ --border-hover-color: #bb2d3b;
2725
+ --bg-active-color: #b02a37;
2726
+ --border-active-color: #b02a37;
2727
+ --focus-visible-border-color: white;
2728
+ --focus-visible-outline-color: #dc3545;
2729
+ --focus-visible-boxshadow-color: white;
3604
2730
  }
3605
2731
 
3606
2732
  .sg-button-group > .btn-danger {
@@ -3700,23 +2826,25 @@ body {
3700
2826
  position: relative;
3701
2827
  }
3702
2828
 
3703
- .sg-dropdown {
3704
- --sg-dropdown-list-bg: ${$sg-dropdown-list-bg} ;
3705
- }
3706
-
3707
2829
  .sg-dropdown-list {
3708
2830
  position: absolute;
3709
2831
  z-index: 1000;
3710
2832
  display: none;
3711
2833
  min-width: 10rem;
3712
- padding: 0;
2834
+ padding: 0.5rem 0rem;
3713
2835
  margin: 0;
3714
2836
  text-align: left;
3715
2837
  list-style: none;
3716
- background-color: #212529;
2838
+ background-color: #343a40;
3717
2839
  color: white;
3718
2840
  background-clip: padding-box;
3719
- border: 2px outset color-mix(in oklab, #212529, white 60%);
2841
+ border: 1px solid white;
2842
+ border-radius: 0.375rem;
2843
+ }
2844
+ .sg-dropdown-list[data-bs-popper] {
2845
+ top: 100%;
2846
+ left: 0;
2847
+ margin-top: 0.125rem;
3720
2848
  }
3721
2849
 
3722
2850
  .sg-dropdown-list.show {
@@ -3736,26 +2864,6 @@ body {
3736
2864
  border-bottom: 0;
3737
2865
  border-left: 0.3em solid transparent;
3738
2866
  }
3739
- .sg-dropdown-toggle[data-drop=up]::after {
3740
- transform: rotate(180deg);
3741
- }
3742
- .sg-dropdown-toggle[data-drop=right]::after {
3743
- transform: rotate(270deg);
3744
- }
3745
- .sg-dropdown-toggle[data-drop=left]::after {
3746
- display: none;
3747
- }
3748
- .sg-dropdown-toggle[data-drop=left]::before {
3749
- display: inline-block;
3750
- margin-right: 0.255em;
3751
- vertical-align: 0.255em;
3752
- content: "";
3753
- border-top: 0.3em solid;
3754
- border-right: 0.3em solid transparent;
3755
- border-bottom: 0;
3756
- border-left: 0.3em solid transparent;
3757
- transform: rotate(90deg);
3758
- }
3759
2867
 
3760
2868
  .sg-dropdown-divider {
3761
2869
  --line-color: rgba(0, 0, 0, 0.175);
@@ -3775,7 +2883,10 @@ body {
3775
2883
  white-space: nowrap;
3776
2884
  background-color: transparent;
3777
2885
  color: inherit;
3778
- border: 2px solid transparent;
2886
+ border: 1px solid transparent;
2887
+ }
2888
+ .sg-dropdown-item:hover {
2889
+ background-color: #2c3136;
3779
2890
  }
3780
2891
  .sg-dropdown-item.active, .sg-dropdown-item:active {
3781
2892
  background-color: #2a2e33;
@@ -3785,44 +2896,42 @@ body {
3785
2896
  opacity: 0.5;
3786
2897
  }
3787
2898
  .sg-dropdown-item.sg-dropdown-item-visual-focus {
3788
- /*
3789
- background-color: $sg-dropdown-item-hover-bg;
2899
+ background-color: #2c3136;
3790
2900
  border-top: 1px solid white;
3791
2901
  border-bottom: 1px solid white;
3792
- */
3793
- background-color: color-mix(in oklab, rgb(252, 95, 95), transparent 50%);
3794
- border: 2px outset color-mix(in oklab, rgb(252, 95, 95), currentColor 20%);
3795
2902
  }
3796
2903
 
3797
2904
  .sg-form-floating {
3798
2905
  position: relative;
3799
- --height: calc(3rem + 2px);
3800
- --text-color: white;
2906
+ --sg-form-floating-height: calc(3.5rem + 2px);
3801
2907
  }
3802
- .sg-form-floating > .sg-form-control, .sg-form-floating > .sg-form-control-plaintext, .sg-form-floating > .sg-form-select, .sg-form-floating > .sg-form-select-tag {
3803
- height: var(--height);
3804
- padding-inline: 1.25rem;
2908
+ .sg-form-floating > .sg-form-control, .sg-form-floating > .sg-form-control-plaintext, .sg-form-floating > .sg-form-select {
2909
+ height: var(--sg-form-floating-height);
2910
+ }
2911
+ .sg-form-floating > .sg-form-control, .sg-form-floating > .sg-form-control-plaintext {
2912
+ padding-inline: 1rem;
3805
2913
  }
3806
- .sg-form-floating > .sg-form-control::placeholder, .sg-form-floating > .sg-form-control-plaintext::placeholder, .sg-form-floating > .sg-form-select::placeholder, .sg-form-floating > .sg-form-select-tag::placeholder {
2914
+ .sg-form-floating > .sg-form-control::placeholder, .sg-form-floating > .sg-form-control-plaintext::placeholder {
3807
2915
  color: transparent;
3808
2916
  }
3809
- .sg-form-floating > .sg-form-control:focus, .sg-form-floating > .sg-form-control:not(:placeholder-shown), .sg-form-floating > .sg-form-control-plaintext:focus, .sg-form-floating > .sg-form-control-plaintext:not(:placeholder-shown), .sg-form-floating > .sg-form-select:focus, .sg-form-floating > .sg-form-select:not(:placeholder-shown), .sg-form-floating > .sg-form-select-tag:focus, .sg-form-floating > .sg-form-select-tag:not(:placeholder-shown) {
3810
- padding-top: 1.25rem;
2917
+ .sg-form-floating > .sg-form-control:focus, .sg-form-floating > .sg-form-control:not(:placeholder-shown), .sg-form-floating > .sg-form-control-plaintext:focus, .sg-form-floating > .sg-form-control-plaintext:not(:placeholder-shown) {
2918
+ padding-top: 1.5rem;
3811
2919
  }
3812
- .sg-form-floating > .sg-form-control:-webkit-autofill, .sg-form-floating > .sg-form-control-plaintext:-webkit-autofill, .sg-form-floating > .sg-form-select:-webkit-autofill, .sg-form-floating > .sg-form-select-tag:-webkit-autofill {
3813
- padding-top: 1.25rem;
2920
+ .sg-form-floating > .sg-form-control:-webkit-autofill, .sg-form-floating > .sg-form-control-plaintext:-webkit-autofill {
2921
+ padding-top: 1.5rem;
3814
2922
  }
3815
2923
  .sg-form-floating > .sg-form-floating-label {
3816
2924
  position: absolute;
3817
2925
  top: 0;
3818
2926
  left: 0;
3819
- color: var(--text-color);
2927
+ color: #212529;
3820
2928
  width: 100%;
3821
2929
  height: 100%;
3822
2930
  padding-inline: 1rem;
3823
- padding-block: 0.75rem;
2931
+ padding-block: 1rem;
2932
+ border-radius: 50%;
3824
2933
  pointer-events: none;
3825
- transition: transform 0.1s ease-in-out;
2934
+ transition: 0.1s ease-in-out;
3826
2935
  transform-origin: 0 0;
3827
2936
  z-index: 5;
3828
2937
  text-overflow: ellipsis;
@@ -3835,33 +2944,28 @@ body {
3835
2944
  .sg-form-floating > .sg-form-control:focus ~ .sg-form-floating-label,
3836
2945
  .sg-form-floating > .sg-form-control:not(:placeholder-shown) ~ .sg-form-floating-label,
3837
2946
  .sg-form-floating > .sg-form-control-plaintext ~ .sg-form-floating-label,
3838
- .sg-form-floating > .sg-form-select ~ .sg-form-floating-label,
3839
- .sg-form-floating > .sg-form-select-tag ~ .sg-form-floating-label {
3840
- font-size: 0.75rem;
3841
- height: fit-content;
3842
- padding: 0.5rem 0.5rem;
2947
+ .sg-form-floating > .sg-form-select ~ .sg-form-floating-label {
2948
+ padding: 0.5rem 0.75rem;
3843
2949
  transform: translate(0, -0.25rem);
3844
2950
  opacity: 0.75;
3845
2951
  }
3846
2952
 
3847
2953
  .sg-form-check {
3848
- --input-background-color: rgb(26, 27, 29);
3849
- --input-border-color: color-mix(in oklab, rgb(26, 27, 29), white 25%);
3850
- --input-border-color-focus: rgb(252, 95, 95);
3851
- --input-border-color-invalid: hsl(48, 75%, 52%);
3852
2954
  display: block;
3853
2955
  min-height: 1.4em;
3854
- padding-bottom: 0.5rem;
2956
+ padding-left: 1.4em;
2957
+ margin-bottom: 0.125em;
3855
2958
  }
3856
2959
  .sg-form-check .sg-form-check-input {
3857
2960
  float: left;
2961
+ margin-left: -1.4em;
3858
2962
  }
3859
2963
 
3860
2964
  .sg-form-check-reverse {
3861
2965
  display: block;
3862
2966
  min-height: 1.4em;
3863
2967
  padding-right: 1.4em;
3864
- padding-bottom: 0.5rem;
2968
+ margin-bottom: 0.125em;
3865
2969
  text-align: right;
3866
2970
  }
3867
2971
  .sg-form-check-reverse .sg-form-check-input {
@@ -3870,69 +2974,51 @@ body {
3870
2974
  margin-left: 0;
3871
2975
  }
3872
2976
 
3873
- /*
3874
- @media (prefers-color-scheme: dark) {
3875
- .sg-form-check {
3876
- --input-background-color: #ffffff;
3877
- --input-border-color: color-mix(in oklab, white, rgb(26, 27, 29) 25%);
3878
- --input-border-color-focus: color-mix(in oklab, rgb(252, 95, 95), black 25%);
3879
- --input-border-color-invalid: color-mix(in oklab, hsl(48, 75%, 52%), black 25%);
3880
- }
3881
-
3882
- }
3883
- */
3884
2977
  .sg-form-check-input {
3885
- margin-right: 1ch;
3886
- width: calc(1.4em - 2px);
3887
- height: calc(1.4em - 2px);
3888
- background-color: var(--input-background-color);
2978
+ width: 1em;
2979
+ height: 1em;
2980
+ margin-top: 0.2em;
2981
+ vertical-align: top;
2982
+ background-color: white;
3889
2983
  background-repeat: no-repeat;
3890
2984
  background-position: center;
3891
2985
  background-size: contain;
2986
+ border: 1px;
3892
2987
  appearance: none;
3893
2988
  print-color-adjust: exact;
3894
- border: 2px outset var(--input-border-color);
3895
2989
  }
3896
2990
  .sg-form-check-input[type=checkbox] {
3897
- border-radius: 0;
3898
- background-clip: padding-box;
3899
- }
3900
- .sg-form-check-input[type=checkbox]:indeterminate {
3901
- background-color: var(--input-border-color-focus);
3902
- border-color: var(--input-border-color-focus);
3903
- background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='rgb(26, 27, 29)' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/></svg>");
2991
+ border-radius: 0.25em;
3904
2992
  }
3905
2993
  .sg-form-check-input[type=radio] {
3906
2994
  border-radius: 50%;
3907
2995
  }
3908
- .sg-form-check-input[type=color] {
3909
- width: 3em;
3910
- height: calc(2.15em + 4px);
3911
- padding: 0.375em;
3912
- }
3913
- .sg-form-check-input[type=color]:not(:disabled):not([readonly]) {
3914
- cursor: pointer;
3915
- }
3916
- .sg-form-check-input[type=color]::-moz-color-swatch {
3917
- border: 0 !important;
3918
- border-radius: 0;
3919
- }
3920
- .sg-form-check-input[type=color]::-webkit-color-swatch {
3921
- border-radius: 0;
3922
- }
3923
2996
  .sg-form-check-input:active {
3924
2997
  filter: brightness(90%);
3925
2998
  }
3926
2999
  .sg-form-check-input:focus-visible {
3927
- border-color: var(--input-border-color-focus);
3928
- outline: 0;
3929
- box-shadow: 0;
3000
+ box-shadow: 0 0 0 3px white;
3001
+ outline: 2px solid #0d6efd;
3002
+ z-index: 5;
3003
+ border: 1px solid white;
3004
+ }
3005
+ .sg-form-check-input:checked {
3006
+ background-color: #0d6efd;
3007
+ border-color: #0d6efd;
3930
3008
  }
3931
3009
  .sg-form-check-input:checked[type=checkbox] {
3932
- background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><polygon style='fill:rgb(252, 95, 95);' points='11.941,28.877 0,16.935 5.695,11.24 11.941,17.486 26.305,3.123 32,8.818'/></svg>");
3010
+ background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 20 20'><path fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/></svg>");
3933
3011
  }
3934
3012
  .sg-form-check-input:checked[type=radio] {
3935
- background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='-4 -4 8 8'><circle r='2' fill='rgb(252, 95, 95)' /></svg>");
3013
+ background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='-4 -4 8 8'><circle r='2' fill='white' /></svg>");
3014
+ }
3015
+ .sg-form-check-input:checked:focus-visible {
3016
+ border: 1px solid white;
3017
+ }
3018
+ .sg-form-check-input[type=checkbox]:indeterminate {
3019
+ background-color: #0d6efd;
3020
+ border-color: #0d6efd;
3021
+ background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/></svg>");
3936
3022
  }
3937
3023
  .sg-form-check-input:disabled {
3938
3024
  pointer-events: none;
@@ -3943,134 +3029,39 @@ body {
3943
3029
  cursor: default;
3944
3030
  opacity: 0.5;
3945
3031
  }
3946
- .sg-form-check-input:user-invalid, .sg-form-check-input.invalid {
3947
- box-shadow: 0 0 4px 2px var(--input-border-color-invalid);
3948
- }
3949
3032
 
3950
- .sg-form-check-label {
3951
- display: grid;
3952
- grid-template-columns: auto 1fr;
3953
- align-items: center;
3033
+ .sg-form-switch {
3034
+ padding-left: 2.5em;
3954
3035
  }
3955
-
3956
3036
  .sg-form-switch .sg-form-check-input {
3957
3037
  width: 2em;
3958
- margin-right: 1ch;
3959
- background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='color-mix(in oklab, rgb(26, 27, 29), white 25%)'/></svg>");
3038
+ margin-left: -2.5em;
3039
+ background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='rgba(0, 0, 0, 0.25)'/></svg>");
3960
3040
  background-position: left center;
3961
3041
  border-radius: 2em;
3962
3042
  transition: background-position 0.15s ease-in-out;
3963
3043
  }
3964
3044
  .sg-form-switch .sg-form-check-input:focus-visible {
3965
- border-color: var(--input-border-color-focus);
3966
- outline: 0;
3967
- box-shadow: 0;
3045
+ box-shadow: 0 0 0 3px white;
3046
+ outline: 2px solid #0d6efd;
3047
+ z-index: 5;
3968
3048
  }
3969
3049
  .sg-form-switch .sg-form-check-input:checked {
3970
3050
  background-position: right center;
3971
- background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='rgb(252, 95, 95)'/></svg>");
3972
- }
3973
-
3974
- .sg-form-check-border {
3975
- position: relative;
3976
- padding: 2px;
3977
- width: fit-content;
3978
- height: fit-content;
3979
- margin-right: 1ch;
3980
- overflow: hidden;
3981
- --border-opacity: 0;
3982
- box-shadow: 50% 50% 0 white;
3983
- }
3984
- .sg-form-check-border:focus-within {
3985
- --border-opacity: 1;
3986
- }
3987
- .sg-form-check-border::before {
3988
- content: "";
3989
- opacity: var(--border-opacity);
3990
- display: block;
3991
- position: absolute;
3992
- top: 25%;
3993
- left: -25%;
3994
- width: 150%;
3995
- height: 50%;
3996
- background-image: conic-gradient(from 0deg, white, white 50%);
3997
- z-index: -2;
3998
- animation: spin 3s linear;
3999
- animation-direction: forwards;
4000
- animation-iteration-count: infinite;
4001
- }
4002
- .sg-form-check-border::after {
4003
- content: "";
4004
- opacity: var(--border-opacity);
4005
- display: block;
4006
- position: absolute;
4007
- top: -3px;
4008
- left: -3px;
4009
- width: calc(4px + 100%);
4010
- height: calc(4px + 100%);
4011
- background-color: transparent;
4012
- clip-path: rect(-2px 100% 100% -2px);
4013
- z-index: -1;
4014
- }
4015
- @keyframes spin {
4016
- 0% {
4017
- transform: rotate(-45deg);
4018
- }
4019
- 50% {
4020
- transform: rotate(45deg);
4021
- }
4022
- 100% {
4023
- transform: rotate(-45deg);
4024
- }
4025
- }
4026
- .sg-input-group-grid > .sg-form-check {
4027
- position: relative;
4028
- padding-bottom: 0;
4029
- }
4030
- .sg-input-group-grid > .sg-form-check > .sg-form-check-label {
4031
- display: block;
4032
- }
4033
- .sg-input-group-grid > .sg-form-check .sg-form-check-input {
4034
- margin: 0;
4035
- height: 100%;
4036
- width: auto;
4037
- aspect-ratio: 1;
4038
- }
4039
- .sg-input-group-grid > .sg-form-check span {
4040
- display: flex;
4041
- flex: 0 1 auto;
4042
- overflow: auto;
4043
- width: fit-content;
4044
- max-width: 8rem;
4045
- align-items: center;
4046
- text-align: center;
4047
- font-size: 0.85rem;
4048
- padding: 0.375em 0.5em;
4049
- white-space: nowrap;
4050
- background-color: color-mix(in oklab, rgb(26, 27, 29), white 25%);
4051
- color: white;
4052
- border: 2px outset color-mix(in oklab, rgb(26, 27, 29), white 25%);
4053
- border-right-width: 0;
4054
- border-radius: 0;
3051
+ background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='white'/></svg>");
4055
3052
  }
4056
3053
 
4057
3054
  .sg-form-control {
4058
- --input-text-color: white;
4059
- --input-background-color: rgb(26, 27, 29);
4060
- --input-border-color: color-mix(in oklab, rgb(26, 27, 29), white 25%);
4061
- --input-border-color-focus: rgb(252, 95, 95);
4062
- --input-border-color-invalid: hsl(48, 75%, 52%);
4063
- --input-disabled-color: #e9ecef;
4064
3055
  position: relative;
4065
3056
  display: block;
4066
3057
  width: 100%;
4067
- min-width: 5rem;
4068
3058
  padding: 0.375em 0.5em;
4069
- color: var(--input-text-color);
4070
- background-color: var(--input-background-color);
4071
- border: 2px outset var(--input-border-color);
4072
- border-radius: 0;
4073
- caret-color: white;
3059
+ color: #212529;
3060
+ background-color: white;
3061
+ background-clip: padding-box;
3062
+ border: 1px solid #ced4da;
3063
+ appearance: none;
3064
+ border-radius: 0.375em;
4074
3065
  transition: border-color 0.15s ease-in-out;
4075
3066
  }
4076
3067
  .sg-form-control[type=file] {
@@ -4080,19 +3071,19 @@ body {
4080
3071
  cursor: pointer;
4081
3072
  }
4082
3073
  .sg-form-control:focus-visible {
4083
- border-color: var(--input-border-color-focus);
4084
- outline: 0;
4085
- box-shadow: 0;
3074
+ box-shadow: 0 0 0 3px white;
3075
+ outline: 2px solid #0d6efd;
3076
+ z-index: 5;
4086
3077
  }
4087
3078
  .sg-form-control::-webkit-date-and-time-value {
4088
3079
  height: 1.4em;
4089
3080
  }
4090
3081
  .sg-form-control::placeholder {
4091
- color: rgba(255, 255, 255, 0.336);
3082
+ color: #6c757d;
4092
3083
  opacity: 1;
4093
3084
  }
4094
3085
  .sg-form-control:disabled {
4095
- background-color: var(--input-disabled-color);
3086
+ background-color: #e9ecef;
4096
3087
  opacity: 1;
4097
3088
  }
4098
3089
  .sg-form-control::file-selector-button {
@@ -4103,15 +3094,12 @@ body {
4103
3094
  border-color: inherit;
4104
3095
  border-style: solid;
4105
3096
  border-width: 0;
4106
- border-inline-end-width: 2px;
3097
+ border-inline-end-width: 1px;
4107
3098
  border-radius: 0;
4108
3099
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
4109
3100
  }
4110
3101
  .sg-form-control:hover:not(:disabled):not([readonly])::file-selector-button {
4111
- background-color: color-mix(in oklab, var(--input-text-color), black 5%);
4112
- }
4113
- .sg-form-control:user-invalid, .sg-form-control.invalid {
4114
- box-shadow: 0 0 4px 2px var(--input-border-color-invalid);
3102
+ background-color: #1f2327;
4115
3103
  }
4116
3104
 
4117
3105
  .sg-form-control-plaintext {
@@ -4119,1095 +3107,76 @@ body {
4119
3107
  width: 100%;
4120
3108
  padding: 0.375em 0;
4121
3109
  margin-bottom: 0;
4122
- color: var(--input-text-color);
3110
+ color: #212529;
4123
3111
  background-color: transparent;
4124
3112
  border: solid transparent;
4125
- border-width: 2px 0;
4126
- }
4127
-
4128
- textarea.sg-form-control {
4129
- min-height: calc(2.15em + 4px);
4130
- margin: 0;
4131
- }
4132
-
4133
- .sg-form-group {
4134
- padding-bottom: 0.5rem;
4135
- display: flex;
4136
- flex-direction: column;
4137
- }
4138
- .sg-form-group label {
4139
- margin-bottom: 0.5rem;
4140
- }
4141
- .sg-form-group.sg-form-group-vertical {
4142
- flex-direction: row;
4143
- align-items: center;
4144
- }
4145
- .sg-form-group.sg-form-group-vertical label {
4146
- min-width: max-content;
4147
- margin-right: 0.5rem;
4148
- margin-bottom: 0;
4149
- }
4150
- .sg-form-group .sg-form-check {
4151
- padding-bottom: 0;
3113
+ border-width: 1px 0;
4152
3114
  }
4153
-
4154
- .sg-form-label {
4155
- margin-bottom: 0.5em;
4156
- }
4157
-
4158
- .sg-form-slider {
4159
- --slider-height: 1.75rem;
4160
- --slider-filled-color: rgb(252, 95, 95);
4161
- --slider-filled-border-color: color-mix(in oklab, rgb(252, 95, 95), black 20%);
4162
- --slider-empty-color: rgb(26, 27, 29);
4163
- --slider-empty-border-color: color-mix(in oklab, color-mix(in oklab, rgb(26, 27, 29), white 25%), black 15%);
4164
- --padding-block-fraction: 1/3;
4165
- --slider-thumb-width: 1.5rem;
4166
- --slider-thumb-height: 0.5rem;
4167
- --slider-thumb-border-color: color-mix(in oklab, rgb(26, 27, 29), white 25%);
4168
- --filled: 40%;
4169
- display: grid;
4170
- grid-template-columns: var(--filled) auto calc(100% - var(--filled));
4171
- position: relative;
4172
- height: var(--slider-height);
4173
- padding-block: calc(var(--slider-height) * var(--padding-block-fraction));
4174
- padding-inline: calc(var(--slider-thumb-width) * 0.5);
4175
- }
4176
- .sg-form-slider:hover {
4177
- --slider-filled-color: color-mix(in oklab, rgb(252, 95, 95), black 15%);
4178
- --slider-filled-border-color: color-mix(in oklab, rgb(252, 95, 95), black 35%);
4179
- --slider-empty-color: color-mix(in oklab, rgb(26, 27, 29), black 15%);
4180
- --slider-empty-border-color: color-mix(in oklab, color-mix(in oklab, rgb(26, 27, 29), white 25%), black 25%);
4181
- }
4182
- .sg-form-slider .sg-form-slider-filled {
4183
- display: block;
4184
- background-color: var(--slider-filled-color);
4185
- border: 1px outset var(--slider-filled-border-color);
4186
- border-left: none;
4187
- border-right: none;
4188
- height: 100%;
4189
- width: 100%;
4190
- }
4191
- .sg-form-slider .sg-form-slider-filled::before {
4192
- --cap-height: calc( 1 - 2*var(--padding-block-fraction));
4193
- box-sizing: border-box;
4194
- content: "";
4195
- position: absolute;
4196
- top: calc(100% * var(--padding-block-fraction));
4197
- height: calc(100% * var(--cap-height));
4198
- width: calc(var(--slider-thumb-width) * 0.5);
4199
- background-color: var(--slider-filled-color);
4200
- border: 1px outset var(--slider-filled-border-color);
4201
- border-right: none;
4202
- left: 0;
4203
- }
4204
- .sg-form-slider .sg-form-slider-thumb {
4205
- cursor: grab;
4206
- position: relative;
4207
- display: block;
4208
- height: 100%;
4209
- }
4210
- .sg-form-slider .sg-form-slider-thumb[data-grabbing=true] {
4211
- cursor: grabbing;
4212
- }
4213
- .sg-form-slider .sg-form-slider-thumb:focus-visible {
4214
- --slider-thumb-border-color: white;
4215
- }
4216
- .sg-form-slider .sg-form-slider-thumb::before {
4217
- content: "";
4218
- position: absolute;
4219
- box-sizing: border-box;
4220
- left: calc(var(--slider-thumb-width) * -0.5);
4221
- top: calc(-1 * var(--padding-block-fraction) * 100%);
4222
- height: calc((2 * var(--padding-block-fraction) + 1) * 100%);
4223
- width: var(--slider-thumb-width);
4224
- background-color: color-mix(in oklab, rgb(26, 27, 29), white 25%);
4225
- border: 2px outset var(--slider-thumb-border-color);
4226
- }
4227
- .sg-form-slider .sg-form-slider-thumb:focus-visible {
4228
- --focus-outline: 2px outset $danger;
3115
+ .sg-form-control-plaintext:focus-visible {
4229
3116
  outline: 0;
4230
- box-shadow: none;
4231
- }
4232
- .sg-form-slider .sg-form-slider-empty {
4233
- display: block;
4234
- background-color: var(--slider-empty-color);
4235
- border: 1px outset var(--slider-empty-border-color);
4236
- border-left: none;
4237
- border-right: none;
4238
- height: 100%;
4239
- width: 100%;
4240
- }
4241
- .sg-form-slider .sg-form-slider-empty::after {
4242
- --cap-height: calc( 1 - 2*var(--padding-block-fraction));
4243
- box-sizing: border-box;
4244
- content: "";
4245
- position: absolute;
4246
- top: calc(100% * var(--padding-block-fraction));
4247
- height: calc(100% * var(--cap-height));
4248
- width: calc(var(--slider-thumb-width) * 0.5);
4249
- background-color: var(--slider-empty-color);
4250
- border: 1px outset var(--slider-empty-border-color);
4251
- border-left: none;
4252
- right: 0;
4253
- }
4254
-
4255
- .sg-form-select-tag {
4256
- --input-text-color: white;
4257
- --input-background-color: rgb(26, 27, 29);
4258
- --input-border-color: color-mix(in oklab, rgb(26, 27, 29), white 25%);
4259
- --input-border-color-focus: rgb(252, 95, 95);
4260
- --input-border-color-invalid: hsl(48, 75%, 52%);
4261
- --input-disabled-color: #e9ecef;
4262
- position: relative;
4263
- display: block;
4264
- width: 100%;
4265
- padding-block: 0.375em;
4266
- padding-inline: 0.5em 1.5em;
4267
- color: var(--input-text-color);
4268
- background-color: var(--input-background-color);
4269
- background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
4270
- background-repeat: no-repeat;
4271
- background-position: right 0.375em center;
4272
- background-size: 1em 0.75em;
4273
- border: 2px outset var(--input-border-color);
4274
- border-radius: 0;
4275
- appearance: none;
4276
- }
4277
- .sg-form-select-tag:focus-visible, .sg-form-select-tag:focus {
4278
- border-color: var(--input-border-color-focus);
4279
- outline: 0;
4280
- box-shadow: 0;
4281
- }
4282
- .sg-form-select-tag[multiple], .sg-form-select-tag[size]:not([size="1"]) {
4283
- padding-right: 0.375em;
4284
- background-image: none;
4285
- }
4286
- .sg-form-select-tag:disabled {
4287
- background-color: var(--input-disabled-color);
4288
- opacity: 1;
4289
- }
4290
- .sg-form-select-tag.invalid, .sg-form-select-tag:user-invalid {
4291
- box-shadow: 0 0 4px 2px var(--input-border-color-invalid);
4292
- }
4293
-
4294
- .sg-form-select {
4295
- --input-text-color: white;
4296
- --input-background-color: rgb(26, 27, 29);
4297
- --input-border-color: color-mix(in oklab, rgb(26, 27, 29), white 25%);
4298
- --input-border-color-focus: rgb(252, 95, 95);
4299
- --input-border-color-invalid: hsl(48, 75%, 52%);
4300
- --input-disabled-color: #e9ecef;
4301
- position: relative;
4302
- display: block;
4303
- width: 100%;
4304
- color: white;
4305
- }
4306
-
4307
- .sg-select-control {
4308
- width: 100%;
4309
- height: fit-content;
4310
- padding-block: 0.375em;
4311
- padding-inline: 0.5em 1.5em;
4312
- color: inherit;
4313
- background-color: rgb(26, 27, 29);
4314
- background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
4315
- background-repeat: no-repeat;
4316
- background-position: right 0.375em center;
4317
- background-size: 1em 0.75em;
4318
- border: 2px solid color-mix(in oklab, rgb(26, 27, 29), white 25%);
4319
- border-radius: 0;
4320
- }
4321
- .sg-select-control:focus-within {
4322
- border-color: rgb(252, 95, 95);
4323
- outline: 0;
4324
- box-shadow: 0;
4325
- }
4326
- .sg-select-control.invalid {
4327
- border-color: hsl(48, 75%, 52%);
4328
- }
4329
-
4330
- .sg-select-input {
4331
- background-color: inherit;
4332
- border: none;
4333
- height: 100%;
4334
- max-width: 80%;
4335
- color: inherit;
4336
- }
4337
- .sg-select-input[multiple], .sg-select-input[size]:not([size="1"]) {
4338
- padding-right: 0.375em;
4339
- background-image: none;
4340
- }
4341
- .sg-select-input:disabled {
4342
- color: inherit;
4343
- background-color: inherit;
4344
- opacity: 1;
4345
- }
4346
- .sg-select-input:focus, .sg-select-input:focus-within, .sg-select-input:focus-visible {
4347
- border-color: transparent;
4348
- outline: none;
4349
- }
4350
- .sg-select-input::placeholder {
4351
- color: rgba(255, 255, 255, 0.336);
4352
- opacity: 1;
4353
- }
4354
-
4355
- .sg-select-list {
4356
- --bg-color: rgb(26, 27, 29);
4357
- --txt-color: black;
4358
- background-color: var(--bg-color);
4359
- color: inherit;
4360
- position: absolute;
4361
- top: calc(100% + 1px);
4362
- width: 100%;
4363
- padding: 0;
4364
- border-radius: 0;
4365
- border: 2px outset color-mix(in oklab, #212529, white 60%);
4366
- list-style-type: none;
4367
- }
4368
-
4369
- .sg-select-list-item {
4370
- padding: 0.25rem 0.5rem;
4371
- font-size: 0.85rem;
4372
- border: 2px solid transparent;
4373
- }
4374
- .sg-select-list-item.focus {
4375
- background-color: color-mix(in oklab, rgb(252, 95, 95), transparent 50%);
4376
- border: 2px outset color-mix(in oklab, rgb(252, 95, 95), currentColor 20%);
4377
- }
4378
- .sg-select-list-item.focus:active {
4379
- background-color: color-mix(in oklab, rgb(252, 95, 95), transparent 60%);
4380
- border: 2px outset color-mix(in oklab, rgb(252, 95, 95), currentColor 30%);
4381
- }
4382
- .sg-select-list-item:first-child {
4383
- border-top-right-radius: inherit;
4384
- border-top-left-radius: inherit;
4385
- }
4386
- .sg-select-list-item:last-child {
4387
- border-bottom-left-radius: inherit;
4388
- border-bottom-right-radius: inherit;
4389
- }
4390
-
4391
- .sg-form-text {
4392
- font-size: 0.75em;
4393
- padding-inline: 0.5em;
4394
- opacity: 0.8;
4395
- margin-top: 0.25em;
4396
- }
4397
-
4398
- .sg-row {
4399
- --sg-gutter-x: 1.5rem;
4400
- --sg-gutter-y: 0;
4401
- display: flex;
4402
- flex-wrap: wrap;
4403
- margin-top: calc(-1 * var(--sg-gutter-y));
4404
- margin-right: calc(-0.5 * var(--sg-gutter-x));
4405
- margin-left: calc(-0.5 * var(--sg-gutter-x));
4406
- }
4407
- .sg-row > * {
4408
- flex-shrink: 0;
4409
- width: 100%;
4410
- max-width: 100%;
4411
- padding-right: calc(var(--sg-gutter-x) * 0.5);
4412
- padding-left: calc(var(--sg-gutter-x) * 0.5);
4413
- margin-top: var(--sg-gutter-y);
4414
- }
4415
-
4416
- .sg-col {
4417
- flex: 1 0 0%;
4418
- }
4419
-
4420
- .sg-row-cols-auto > * {
4421
- flex: 0 0 auto;
4422
- width: auto;
4423
- }
4424
-
4425
- .sg-row-cols-1 > * {
4426
- flex: 0 0 auto;
4427
- width: 100%;
4428
- }
4429
-
4430
- .sg-row-cols-2 > * {
4431
- flex: 0 0 auto;
4432
- width: 50%;
4433
- }
4434
-
4435
- .sg-row-cols-3 > * {
4436
- flex: 0 0 auto;
4437
- width: 33.3333333333%;
4438
- }
4439
-
4440
- .sg-row-cols-4 > * {
4441
- flex: 0 0 auto;
4442
- width: 25%;
4443
- }
4444
-
4445
- .sg-row-cols-5 > * {
4446
- flex: 0 0 auto;
4447
- width: 20%;
4448
- }
4449
-
4450
- .sg-row-cols-6 > * {
4451
- flex: 0 0 auto;
4452
- width: 16.6666666667%;
4453
- }
4454
-
4455
- .sg-col-auto {
4456
- flex: 0 0 auto;
4457
- width: auto;
4458
- }
4459
-
4460
- .sg-col-1 {
4461
- flex: 0 0 auto;
4462
- width: 8.3333333333%;
4463
- }
4464
-
4465
- .sg-col-2 {
4466
- flex: 0 0 auto;
4467
- width: 16.6666666667%;
4468
- }
4469
-
4470
- .sg-col-3 {
4471
- flex: 0 0 auto;
4472
- width: 25%;
4473
- }
4474
-
4475
- .sg-col-4 {
4476
- flex: 0 0 auto;
4477
- width: 33.3333333333%;
4478
- }
4479
-
4480
- .sg-col-5 {
4481
- flex: 0 0 auto;
4482
- width: 41.6666666667%;
4483
- }
4484
-
4485
- .sg-col-6 {
4486
- flex: 0 0 auto;
4487
- width: 50%;
4488
- }
4489
-
4490
- .sg-col-7 {
4491
- flex: 0 0 auto;
4492
- width: 58.3333333333%;
4493
- }
4494
-
4495
- .sg-col-8 {
4496
- flex: 0 0 auto;
4497
- width: 66.6666666667%;
4498
- }
4499
-
4500
- .sg-col-9 {
4501
- flex: 0 0 auto;
4502
- width: 75%;
4503
- }
4504
-
4505
- .sg-col-10 {
4506
- flex: 0 0 auto;
4507
- width: 83.3333333333%;
4508
- }
4509
-
4510
- .sg-col-11 {
4511
- flex: 0 0 auto;
4512
- width: 91.6666666667%;
4513
- }
4514
-
4515
- .sg-col-12 {
4516
- flex: 0 0 auto;
4517
- width: 100%;
4518
3117
  }
4519
3118
 
4520
- .sg-offset-1 {
4521
- margin-left: 8.3333333333%;
4522
- }
4523
-
4524
- .sg-offset-2 {
4525
- margin-left: 16.6666666667%;
4526
- }
4527
-
4528
- .sg-offset-3 {
4529
- margin-left: 25%;
4530
- }
4531
-
4532
- .sg-offset-4 {
4533
- margin-left: 33.3333333333%;
4534
- }
4535
-
4536
- .sg-offset-5 {
4537
- margin-left: 41.6666666667%;
4538
- }
4539
-
4540
- .sg-offset-6 {
4541
- margin-left: 50%;
4542
- }
4543
-
4544
- .sg-offset-7 {
4545
- margin-left: 58.3333333333%;
4546
- }
4547
-
4548
- .sg-offset-8 {
4549
- margin-left: 66.6666666667%;
4550
- }
4551
-
4552
- .sg-offset-9 {
4553
- margin-left: 75%;
4554
- }
4555
-
4556
- .sg-offset-10 {
4557
- margin-left: 83.3333333333%;
4558
- }
4559
-
4560
- .sg-offset-11 {
4561
- margin-left: 91.6666666667%;
3119
+ textarea.sg-form-control {
3120
+ min-height: calc(2.15em + 2px);
4562
3121
  }
4563
3122
 
4564
- @media (min-width: 576px) {
4565
- .sg-col-sm {
4566
- flex: 1 0 0%;
4567
- }
4568
- .sg-row-cols-sm-auto > * {
4569
- flex: 0 0 auto;
4570
- width: auto;
4571
- }
4572
- .sg-row-cols-sm-1 > * {
4573
- flex: 0 0 auto;
4574
- width: 100%;
4575
- }
4576
- .sg-row-cols-sm-2 > * {
4577
- flex: 0 0 auto;
4578
- width: 50%;
4579
- }
4580
- .sg-row-cols-sm-3 > * {
4581
- flex: 0 0 auto;
4582
- width: 33.3333333333%;
4583
- }
4584
- .sg-row-cols-sm-4 > * {
4585
- flex: 0 0 auto;
4586
- width: 25%;
4587
- }
4588
- .sg-row-cols-sm-5 > * {
4589
- flex: 0 0 auto;
4590
- width: 20%;
4591
- }
4592
- .sg-row-cols-sm-6 > * {
4593
- flex: 0 0 auto;
4594
- width: 16.6666666667%;
4595
- }
4596
- .sg-col-sm-auto {
4597
- flex: 0 0 auto;
4598
- width: auto;
4599
- }
4600
- .sg-col-sm-1 {
4601
- flex: 0 0 auto;
4602
- width: 8.3333333333%;
4603
- }
4604
- .sg-col-sm-2 {
4605
- flex: 0 0 auto;
4606
- width: 16.6666666667%;
4607
- }
4608
- .sg-col-sm-3 {
4609
- flex: 0 0 auto;
4610
- width: 25%;
4611
- }
4612
- .sg-col-sm-4 {
4613
- flex: 0 0 auto;
4614
- width: 33.3333333333%;
4615
- }
4616
- .sg-col-sm-5 {
4617
- flex: 0 0 auto;
4618
- width: 41.6666666667%;
4619
- }
4620
- .sg-col-sm-6 {
4621
- flex: 0 0 auto;
4622
- width: 50%;
4623
- }
4624
- .sg-col-sm-7 {
4625
- flex: 0 0 auto;
4626
- width: 58.3333333333%;
4627
- }
4628
- .sg-col-sm-8 {
4629
- flex: 0 0 auto;
4630
- width: 66.6666666667%;
4631
- }
4632
- .sg-col-sm-9 {
4633
- flex: 0 0 auto;
4634
- width: 75%;
4635
- }
4636
- .sg-col-sm-10 {
4637
- flex: 0 0 auto;
4638
- width: 83.3333333333%;
4639
- }
4640
- .sg-col-sm-11 {
4641
- flex: 0 0 auto;
4642
- width: 91.6666666667%;
4643
- }
4644
- .sg-col-sm-12 {
4645
- flex: 0 0 auto;
4646
- width: 100%;
4647
- }
4648
- .sg-offset-sm-0 {
4649
- margin-left: 0;
4650
- }
4651
- .sg-offset-sm-1 {
4652
- margin-left: 8.3333333333%;
4653
- }
4654
- .sg-offset-sm-2 {
4655
- margin-left: 16.6666666667%;
4656
- }
4657
- .sg-offset-sm-3 {
4658
- margin-left: 25%;
4659
- }
4660
- .sg-offset-sm-4 {
4661
- margin-left: 33.3333333333%;
4662
- }
4663
- .sg-offset-sm-5 {
4664
- margin-left: 41.6666666667%;
4665
- }
4666
- .sg-offset-sm-6 {
4667
- margin-left: 50%;
4668
- }
4669
- .sg-offset-sm-7 {
4670
- margin-left: 58.3333333333%;
4671
- }
4672
- .sg-offset-sm-8 {
4673
- margin-left: 66.6666666667%;
4674
- }
4675
- .sg-offset-sm-9 {
4676
- margin-left: 75%;
4677
- }
4678
- .sg-offset-sm-10 {
4679
- margin-left: 83.3333333333%;
4680
- }
4681
- .sg-offset-sm-11 {
4682
- margin-left: 91.6666666667%;
4683
- }
4684
- }
4685
- @media (min-width: 768px) {
4686
- .sg-col-md {
4687
- flex: 1 0 0%;
4688
- }
4689
- .sg-row-cols-md-auto > * {
4690
- flex: 0 0 auto;
4691
- width: auto;
4692
- }
4693
- .sg-row-cols-md-1 > * {
4694
- flex: 0 0 auto;
4695
- width: 100%;
4696
- }
4697
- .sg-row-cols-md-2 > * {
4698
- flex: 0 0 auto;
4699
- width: 50%;
4700
- }
4701
- .sg-row-cols-md-3 > * {
4702
- flex: 0 0 auto;
4703
- width: 33.3333333333%;
4704
- }
4705
- .sg-row-cols-md-4 > * {
4706
- flex: 0 0 auto;
4707
- width: 25%;
4708
- }
4709
- .sg-row-cols-md-5 > * {
4710
- flex: 0 0 auto;
4711
- width: 20%;
4712
- }
4713
- .sg-row-cols-md-6 > * {
4714
- flex: 0 0 auto;
4715
- width: 16.6666666667%;
4716
- }
4717
- .sg-col-md-auto {
4718
- flex: 0 0 auto;
4719
- width: auto;
4720
- }
4721
- .sg-col-md-1 {
4722
- flex: 0 0 auto;
4723
- width: 8.3333333333%;
4724
- }
4725
- .sg-col-md-2 {
4726
- flex: 0 0 auto;
4727
- width: 16.6666666667%;
4728
- }
4729
- .sg-col-md-3 {
4730
- flex: 0 0 auto;
4731
- width: 25%;
4732
- }
4733
- .sg-col-md-4 {
4734
- flex: 0 0 auto;
4735
- width: 33.3333333333%;
4736
- }
4737
- .sg-col-md-5 {
4738
- flex: 0 0 auto;
4739
- width: 41.6666666667%;
4740
- }
4741
- .sg-col-md-6 {
4742
- flex: 0 0 auto;
4743
- width: 50%;
4744
- }
4745
- .sg-col-md-7 {
4746
- flex: 0 0 auto;
4747
- width: 58.3333333333%;
4748
- }
4749
- .sg-col-md-8 {
4750
- flex: 0 0 auto;
4751
- width: 66.6666666667%;
4752
- }
4753
- .sg-col-md-9 {
4754
- flex: 0 0 auto;
4755
- width: 75%;
4756
- }
4757
- .sg-col-md-10 {
4758
- flex: 0 0 auto;
4759
- width: 83.3333333333%;
4760
- }
4761
- .sg-col-md-11 {
4762
- flex: 0 0 auto;
4763
- width: 91.6666666667%;
4764
- }
4765
- .sg-col-md-12 {
4766
- flex: 0 0 auto;
4767
- width: 100%;
4768
- }
4769
- .sg-offset-md-0 {
4770
- margin-left: 0;
4771
- }
4772
- .sg-offset-md-1 {
4773
- margin-left: 8.3333333333%;
4774
- }
4775
- .sg-offset-md-2 {
4776
- margin-left: 16.6666666667%;
4777
- }
4778
- .sg-offset-md-3 {
4779
- margin-left: 25%;
4780
- }
4781
- .sg-offset-md-4 {
4782
- margin-left: 33.3333333333%;
4783
- }
4784
- .sg-offset-md-5 {
4785
- margin-left: 41.6666666667%;
4786
- }
4787
- .sg-offset-md-6 {
4788
- margin-left: 50%;
4789
- }
4790
- .sg-offset-md-7 {
4791
- margin-left: 58.3333333333%;
4792
- }
4793
- .sg-offset-md-8 {
4794
- margin-left: 66.6666666667%;
4795
- }
4796
- .sg-offset-md-9 {
4797
- margin-left: 75%;
4798
- }
4799
- .sg-offset-md-10 {
4800
- margin-left: 83.3333333333%;
4801
- }
4802
- .sg-offset-md-11 {
4803
- margin-left: 91.6666666667%;
4804
- }
4805
- }
4806
- @media (min-width: 992px) {
4807
- .sg-col-lg {
4808
- flex: 1 0 0%;
4809
- }
4810
- .sg-row-cols-lg-auto > * {
4811
- flex: 0 0 auto;
4812
- width: auto;
4813
- }
4814
- .sg-row-cols-lg-1 > * {
4815
- flex: 0 0 auto;
4816
- width: 100%;
4817
- }
4818
- .sg-row-cols-lg-2 > * {
4819
- flex: 0 0 auto;
4820
- width: 50%;
4821
- }
4822
- .sg-row-cols-lg-3 > * {
4823
- flex: 0 0 auto;
4824
- width: 33.3333333333%;
4825
- }
4826
- .sg-row-cols-lg-4 > * {
4827
- flex: 0 0 auto;
4828
- width: 25%;
4829
- }
4830
- .sg-row-cols-lg-5 > * {
4831
- flex: 0 0 auto;
4832
- width: 20%;
4833
- }
4834
- .sg-row-cols-lg-6 > * {
4835
- flex: 0 0 auto;
4836
- width: 16.6666666667%;
4837
- }
4838
- .sg-col-lg-auto {
4839
- flex: 0 0 auto;
4840
- width: auto;
4841
- }
4842
- .sg-col-lg-1 {
4843
- flex: 0 0 auto;
4844
- width: 8.3333333333%;
4845
- }
4846
- .sg-col-lg-2 {
4847
- flex: 0 0 auto;
4848
- width: 16.6666666667%;
4849
- }
4850
- .sg-col-lg-3 {
4851
- flex: 0 0 auto;
4852
- width: 25%;
4853
- }
4854
- .sg-col-lg-4 {
4855
- flex: 0 0 auto;
4856
- width: 33.3333333333%;
4857
- }
4858
- .sg-col-lg-5 {
4859
- flex: 0 0 auto;
4860
- width: 41.6666666667%;
4861
- }
4862
- .sg-col-lg-6 {
4863
- flex: 0 0 auto;
4864
- width: 50%;
4865
- }
4866
- .sg-col-lg-7 {
4867
- flex: 0 0 auto;
4868
- width: 58.3333333333%;
4869
- }
4870
- .sg-col-lg-8 {
4871
- flex: 0 0 auto;
4872
- width: 66.6666666667%;
4873
- }
4874
- .sg-col-lg-9 {
4875
- flex: 0 0 auto;
4876
- width: 75%;
4877
- }
4878
- .sg-col-lg-10 {
4879
- flex: 0 0 auto;
4880
- width: 83.3333333333%;
4881
- }
4882
- .sg-col-lg-11 {
4883
- flex: 0 0 auto;
4884
- width: 91.6666666667%;
4885
- }
4886
- .sg-col-lg-12 {
4887
- flex: 0 0 auto;
4888
- width: 100%;
4889
- }
4890
- .sg-offset-lg-0 {
4891
- margin-left: 0;
4892
- }
4893
- .sg-offset-lg-1 {
4894
- margin-left: 8.3333333333%;
4895
- }
4896
- .sg-offset-lg-2 {
4897
- margin-left: 16.6666666667%;
4898
- }
4899
- .sg-offset-lg-3 {
4900
- margin-left: 25%;
4901
- }
4902
- .sg-offset-lg-4 {
4903
- margin-left: 33.3333333333%;
4904
- }
4905
- .sg-offset-lg-5 {
4906
- margin-left: 41.6666666667%;
4907
- }
4908
- .sg-offset-lg-6 {
4909
- margin-left: 50%;
4910
- }
4911
- .sg-offset-lg-7 {
4912
- margin-left: 58.3333333333%;
4913
- }
4914
- .sg-offset-lg-8 {
4915
- margin-left: 66.6666666667%;
4916
- }
4917
- .sg-offset-lg-9 {
4918
- margin-left: 75%;
4919
- }
4920
- .sg-offset-lg-10 {
4921
- margin-left: 83.3333333333%;
4922
- }
4923
- .sg-offset-lg-11 {
4924
- margin-left: 91.6666666667%;
4925
- }
3123
+ .sg-form-control-color {
3124
+ width: 3em;
3125
+ height: calc(2.15em + 2px);
3126
+ padding: 0.375em;
4926
3127
  }
4927
- @media (min-width: 1200px) {
4928
- .sg-col-xl {
4929
- flex: 1 0 0%;
4930
- }
4931
- .sg-row-cols-xl-auto > * {
4932
- flex: 0 0 auto;
4933
- width: auto;
4934
- }
4935
- .sg-row-cols-xl-1 > * {
4936
- flex: 0 0 auto;
4937
- width: 100%;
4938
- }
4939
- .sg-row-cols-xl-2 > * {
4940
- flex: 0 0 auto;
4941
- width: 50%;
4942
- }
4943
- .sg-row-cols-xl-3 > * {
4944
- flex: 0 0 auto;
4945
- width: 33.3333333333%;
4946
- }
4947
- .sg-row-cols-xl-4 > * {
4948
- flex: 0 0 auto;
4949
- width: 25%;
4950
- }
4951
- .sg-row-cols-xl-5 > * {
4952
- flex: 0 0 auto;
4953
- width: 20%;
4954
- }
4955
- .sg-row-cols-xl-6 > * {
4956
- flex: 0 0 auto;
4957
- width: 16.6666666667%;
4958
- }
4959
- .sg-col-xl-auto {
4960
- flex: 0 0 auto;
4961
- width: auto;
4962
- }
4963
- .sg-col-xl-1 {
4964
- flex: 0 0 auto;
4965
- width: 8.3333333333%;
4966
- }
4967
- .sg-col-xl-2 {
4968
- flex: 0 0 auto;
4969
- width: 16.6666666667%;
4970
- }
4971
- .sg-col-xl-3 {
4972
- flex: 0 0 auto;
4973
- width: 25%;
4974
- }
4975
- .sg-col-xl-4 {
4976
- flex: 0 0 auto;
4977
- width: 33.3333333333%;
4978
- }
4979
- .sg-col-xl-5 {
4980
- flex: 0 0 auto;
4981
- width: 41.6666666667%;
4982
- }
4983
- .sg-col-xl-6 {
4984
- flex: 0 0 auto;
4985
- width: 50%;
4986
- }
4987
- .sg-col-xl-7 {
4988
- flex: 0 0 auto;
4989
- width: 58.3333333333%;
4990
- }
4991
- .sg-col-xl-8 {
4992
- flex: 0 0 auto;
4993
- width: 66.6666666667%;
4994
- }
4995
- .sg-col-xl-9 {
4996
- flex: 0 0 auto;
4997
- width: 75%;
4998
- }
4999
- .sg-col-xl-10 {
5000
- flex: 0 0 auto;
5001
- width: 83.3333333333%;
5002
- }
5003
- .sg-col-xl-11 {
5004
- flex: 0 0 auto;
5005
- width: 91.6666666667%;
5006
- }
5007
- .sg-col-xl-12 {
5008
- flex: 0 0 auto;
5009
- width: 100%;
5010
- }
5011
- .sg-offset-xl-0 {
5012
- margin-left: 0;
5013
- }
5014
- .sg-offset-xl-1 {
5015
- margin-left: 8.3333333333%;
5016
- }
5017
- .sg-offset-xl-2 {
5018
- margin-left: 16.6666666667%;
5019
- }
5020
- .sg-offset-xl-3 {
5021
- margin-left: 25%;
5022
- }
5023
- .sg-offset-xl-4 {
5024
- margin-left: 33.3333333333%;
5025
- }
5026
- .sg-offset-xl-5 {
5027
- margin-left: 41.6666666667%;
5028
- }
5029
- .sg-offset-xl-6 {
5030
- margin-left: 50%;
5031
- }
5032
- .sg-offset-xl-7 {
5033
- margin-left: 58.3333333333%;
5034
- }
5035
- .sg-offset-xl-8 {
5036
- margin-left: 66.6666666667%;
5037
- }
5038
- .sg-offset-xl-9 {
5039
- margin-left: 75%;
5040
- }
5041
- .sg-offset-xl-10 {
5042
- margin-left: 83.3333333333%;
5043
- }
5044
- .sg-offset-xl-11 {
5045
- margin-left: 91.6666666667%;
5046
- }
3128
+ .sg-form-control-color:not(:disabled):not([readonly]) {
3129
+ cursor: pointer;
5047
3130
  }
5048
- @media (min-width: 1400px) {
5049
- .sg-col-xxl {
5050
- flex: 1 0 0%;
5051
- }
5052
- .sg-row-cols-xxl-auto > * {
5053
- flex: 0 0 auto;
5054
- width: auto;
5055
- }
5056
- .sg-row-cols-xxl-1 > * {
5057
- flex: 0 0 auto;
5058
- width: 100%;
5059
- }
5060
- .sg-row-cols-xxl-2 > * {
5061
- flex: 0 0 auto;
5062
- width: 50%;
5063
- }
5064
- .sg-row-cols-xxl-3 > * {
5065
- flex: 0 0 auto;
5066
- width: 33.3333333333%;
5067
- }
5068
- .sg-row-cols-xxl-4 > * {
5069
- flex: 0 0 auto;
5070
- width: 25%;
5071
- }
5072
- .sg-row-cols-xxl-5 > * {
5073
- flex: 0 0 auto;
5074
- width: 20%;
5075
- }
5076
- .sg-row-cols-xxl-6 > * {
5077
- flex: 0 0 auto;
5078
- width: 16.6666666667%;
5079
- }
5080
- .sg-col-xxl-auto {
5081
- flex: 0 0 auto;
5082
- width: auto;
5083
- }
5084
- .sg-col-xxl-1 {
5085
- flex: 0 0 auto;
5086
- width: 8.3333333333%;
5087
- }
5088
- .sg-col-xxl-2 {
5089
- flex: 0 0 auto;
5090
- width: 16.6666666667%;
5091
- }
5092
- .sg-col-xxl-3 {
5093
- flex: 0 0 auto;
5094
- width: 25%;
5095
- }
5096
- .sg-col-xxl-4 {
5097
- flex: 0 0 auto;
5098
- width: 33.3333333333%;
5099
- }
5100
- .sg-col-xxl-5 {
5101
- flex: 0 0 auto;
5102
- width: 41.6666666667%;
5103
- }
5104
- .sg-col-xxl-6 {
5105
- flex: 0 0 auto;
5106
- width: 50%;
5107
- }
5108
- .sg-col-xxl-7 {
5109
- flex: 0 0 auto;
5110
- width: 58.3333333333%;
5111
- }
5112
- .sg-col-xxl-8 {
5113
- flex: 0 0 auto;
5114
- width: 66.6666666667%;
5115
- }
5116
- .sg-col-xxl-9 {
5117
- flex: 0 0 auto;
5118
- width: 75%;
5119
- }
5120
- .sg-col-xxl-10 {
5121
- flex: 0 0 auto;
5122
- width: 83.3333333333%;
5123
- }
5124
- .sg-col-xxl-11 {
5125
- flex: 0 0 auto;
5126
- width: 91.6666666667%;
5127
- }
5128
- .sg-col-xxl-12 {
5129
- flex: 0 0 auto;
5130
- width: 100%;
5131
- }
5132
- .sg-offset-xxl-0 {
5133
- margin-left: 0;
5134
- }
5135
- .sg-offset-xxl-1 {
5136
- margin-left: 8.3333333333%;
5137
- }
5138
- .sg-offset-xxl-2 {
5139
- margin-left: 16.6666666667%;
5140
- }
5141
- .sg-offset-xxl-3 {
5142
- margin-left: 25%;
5143
- }
5144
- .sg-offset-xxl-4 {
5145
- margin-left: 33.3333333333%;
5146
- }
5147
- .sg-offset-xxl-5 {
5148
- margin-left: 41.6666666667%;
5149
- }
5150
- .sg-offset-xxl-6 {
5151
- margin-left: 50%;
5152
- }
5153
- .sg-offset-xxl-7 {
5154
- margin-left: 58.3333333333%;
5155
- }
5156
- .sg-offset-xxl-8 {
5157
- margin-left: 66.6666666667%;
5158
- }
5159
- .sg-offset-xxl-9 {
5160
- margin-left: 75%;
5161
- }
5162
- .sg-offset-xxl-10 {
5163
- margin-left: 83.3333333333%;
5164
- }
5165
- .sg-offset-xxl-11 {
5166
- margin-left: 91.6666666667%;
5167
- }
3131
+ .sg-form-control-color::-moz-color-swatch {
3132
+ border: 0 !important;
3133
+ border-radius: 0.375em;
5168
3134
  }
5169
- /* Containers */
5170
- .sg-container,
5171
- .sg-container-fluid,
5172
- .sg-container-xxl,
5173
- .sg-container-xl,
5174
- .sg-container-lg,
5175
- .sg-container-md,
5176
- .sg-container-sm {
5177
- --sg-gutter-x: 1.5rem;
5178
- --sg-gutter-y: 0;
5179
- width: 100%;
5180
- padding-right: calc(var(--sg-gutter-x) * 0.5);
5181
- padding-left: calc(var(--sg-gutter-x) * 0.5);
5182
- margin-right: auto;
5183
- margin-left: auto;
3135
+ .sg-form-control-color::-webkit-color-swatch {
3136
+ border-radius: 0.375em;
5184
3137
  }
5185
3138
 
5186
- @media (min-width: 576px) {
5187
- .sg-container-sm, .sg-container {
5188
- max-width: 540px;
5189
- }
3139
+ .sg-form-label {
3140
+ margin-bottom: 0.5em;
5190
3141
  }
5191
- @media (min-width: 768px) {
5192
- .sg-container-md, .sg-container-sm, .sg-container {
5193
- max-width: 720px;
5194
- }
3142
+
3143
+ .sg-form-select {
3144
+ position: relative;
3145
+ display: block;
3146
+ width: 100%;
3147
+ padding-block: 0.375em;
3148
+ padding-inline: 0.5em 1.5em;
3149
+ color: #212529;
3150
+ background-color: white;
3151
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
3152
+ background-repeat: no-repeat;
3153
+ background-position: right 0.375em center;
3154
+ background-size: 1em 0.75em;
3155
+ border: 1px solid #ced4da;
3156
+ border-radius: 0.375em;
3157
+ appearance: none;
5195
3158
  }
5196
- @media (min-width: 992px) {
5197
- .sg-container-lg, .sg-container-md, .sg-container-sm, .sg-container {
5198
- max-width: 960px;
5199
- }
3159
+ .sg-form-select:focus-visible {
3160
+ box-shadow: 0 0 0 3px white;
3161
+ outline: 2px solid #0d6efd;
3162
+ z-index: 5;
5200
3163
  }
5201
- @media (min-width: 1200px) {
5202
- .sg-container-xl, .sg-container-lg, .sg-container-md, .sg-container-sm, .sg-container {
5203
- max-width: 1140px;
5204
- }
3164
+ .sg-form-select[multiple], .sg-form-select[size]:not([size="1"]) {
3165
+ padding-right: 0.375em;
3166
+ background-image: none;
5205
3167
  }
5206
- @media (min-width: 1400px) {
5207
- .sg-container-xxl, .sg-container-xl, .sg-container-lg, .sg-container-md, .sg-container-sm, .sg-container {
5208
- max-width: 1320px;
5209
- }
3168
+ .sg-form-select:disabled {
3169
+ background-color: #e9ecef;
3170
+ opacity: 1;
3171
+ }
3172
+
3173
+ .sg-form-text {
3174
+ font-size: 0.75em;
3175
+ padding-inline: 0.5em;
3176
+ opacity: 0.8;
3177
+ margin-top: 0.25em;
5210
3178
  }
3179
+
5211
3180
  .sg-input-group {
5212
3181
  display: flex;
5213
3182
  flex-wrap: wrap;
@@ -5217,10 +3186,10 @@ textarea.sg-form-control {
5217
3186
  .sg-input-group > .sg-form-control,
5218
3187
  .sg-input-group > .sg-form-control-plaintext,
5219
3188
  .sg-input-group > .sg-form-select,
5220
- .sg-input-group > .sg-form-select-tag {
3189
+ .sg-input-group > .sg-form-floating {
5221
3190
  flex: 1 1 auto;
5222
3191
  width: 1%;
5223
- min-width: 5rem;
3192
+ min-width: 0;
5224
3193
  }
5225
3194
  .sg-input-group > .sg-button, .sg-input-group > button {
5226
3195
  position: relative;
@@ -5229,213 +3198,81 @@ textarea.sg-form-control {
5229
3198
  .sg-input-group > :not(:first-child):not(:last-child) {
5230
3199
  border-radius: 0;
5231
3200
  }
3201
+ .sg-input-group > :not(:first-child):not(:last-child).sg-form-floating > .sg-form-control, .sg-input-group > :not(:first-child):not(:last-child).sg-form-floating > .sg-form-select {
3202
+ border-radius: 0;
3203
+ }
5232
3204
  .sg-input-group > :first-child {
5233
3205
  border-top-right-radius: 0;
5234
3206
  border-bottom-right-radius: 0;
5235
3207
  }
3208
+ .sg-input-group > :first-child.sg-form-floating > .sg-form-control, .sg-input-group > :first-child.sg-form-floating > .sg-form-select {
3209
+ border-top-right-radius: 0;
3210
+ border-bottom-right-radius: 0;
3211
+ }
5236
3212
  .sg-input-group > :last-child {
5237
3213
  border-top-left-radius: 0;
5238
3214
  border-bottom-left-radius: 0;
5239
3215
  }
3216
+ .sg-input-group > :last-child.sg-form-floating > .sg-form-control, .sg-input-group > :last-child.sg-form-floating > .sg-form-select {
3217
+ border-top-left-radius: 0;
3218
+ border-bottom-left-radius: 0;
3219
+ }
5240
3220
 
5241
3221
  .sg-input-group-text {
5242
3222
  display: flex;
5243
- flex: 0 1 auto;
5244
- overflow: auto;
5245
3223
  width: fit-content;
5246
- max-width: 8rem;
5247
3224
  align-items: center;
5248
3225
  text-align: center;
5249
- font-size: 0.85rem;
3226
+ font-size: 0.8rem;
5250
3227
  padding: 0.375em 0.5em;
5251
3228
  white-space: nowrap;
5252
- background-color: color-mix(in oklab, rgb(26, 27, 29), white 25%);
5253
- color: white;
5254
- border: 2px outset color-mix(in oklab, rgb(26, 27, 29), white 25%);
5255
- border-right-width: 0;
5256
- border-radius: 0;
5257
- }
5258
-
5259
- .sg-form-control + .sg-input-group-text {
5260
- border-left-width: 0;
5261
- border-right-width: 2px;
5262
- }
5263
-
5264
- .sg-input-group-grid {
5265
- display: flex;
5266
- flex-wrap: wrap;
5267
- width: 100%;
5268
- align-items: stretch;
5269
- padding-bottom: 0.5rem;
5270
- }
5271
- .sg-input-group-grid > .sg-input-group, .sg-input-group-grid > .sg-form-floating {
5272
- flex: 1 1 auto;
5273
- width: 1%;
5274
- min-width: 13rem;
5275
- padding-bottom: 0;
5276
- }
5277
-
5278
- .sg-list {
5279
- --padding: 0rem;
5280
- list-style-type: none;
5281
- padding: 0;
5282
- margin: 0;
5283
- padding-left: var(--padding);
5284
- }
5285
- .sg-list span {
5286
- display: list-item;
5287
- }
5288
- .sg-list .sg-list {
5289
- --padding: 0.5rem;
5290
- }
5291
-
5292
- .sg-sublist {
5293
- list-style-type: none;
5294
- padding: 0;
5295
- margin: 0;
5296
- }
5297
-
5298
- .sg-list-label {
5299
- background-color: black;
5300
- }
5301
-
5302
- .sg-list-item {
5303
- margin: 0;
5304
- background-color: black;
5305
- }
5306
- .sg-list-item > * {
5307
- user-select: inherit;
5308
- }
5309
-
5310
- .moving {
5311
- position: absolute;
5312
- top: 0;
5313
- left: 0;
5314
- z-index: 1010;
5315
- }
5316
-
5317
- .phantom {
5318
- position: relative;
5319
- display: list-item;
5320
- border: 1px solid transparent;
5321
- margin-left: calc((var(--depth) - 1) * 0.5rem);
5322
- transition: all 0.2s ease-in-out;
5323
- outline: 2px solid red;
5324
- animation: size 0.3s ease-in-out;
3229
+ background-color: #e9ecef;
3230
+ color: #212529;
3231
+ border: 1px solid #dde0e3;
3232
+ border-radius: 0.375em;
5325
3233
  }
5326
3234
 
5327
- @keyframes size {
5328
- from {
5329
- height: 10px;
5330
- }
5331
- }
5332
3235
  .sg-modal-tag::backdrop {
5333
3236
  z-index: 1060;
5334
- background: hsl(0, 0%, 0%);
5335
- opacity: 0.75;
5336
- animation-name: fadeInBackdrop;
5337
- animation-duration: 0.3s;
5338
- animation-timing-function: ease-in-out;
5339
- animation-fill-mode: forwards;
5340
- }
5341
- .sg-modal-tag::backdrop.close {
5342
- background: transparent;
5343
- opacity: 0;
5344
- animation-name: fadeInBackdrop;
5345
- animation-duration: 0.3s;
5346
- animation-timing-function: ease-in-out;
5347
- animation-fill-mode: backwards;
3237
+ background: hsla(0, 0%, 0%, 0.5);
5348
3238
  }
5349
3239
 
5350
- @keyframes fadeInBackdrop {
5351
- from {
5352
- opacity: 0;
5353
- }
5354
- to {
5355
- opacity: 0.5;
5356
- }
5357
- }
5358
- @keyframes fadeOutBackdrop {
5359
- from {
5360
- opacity: 0.5;
5361
- }
5362
- to {
5363
- opacity: 0;
5364
- }
5365
- }
5366
3240
  .sg-modal-tag {
5367
- --height: fit-content;
5368
3241
  z-index: 1061;
5369
3242
  padding: 0;
5370
- top: 10%;
5371
- height: var(--height);
5372
- max-height: 80%;
5373
- margin-right: auto;
5374
- margin-left: auto;
3243
+ margin: 2rem;
3244
+ width: 100%;
3245
+ height: fit-content;
5375
3246
  color: white;
5376
- background-color: #212529;
3247
+ background-color: #2e3236;
5377
3248
  background-clip: padding-box;
5378
- border: 2px outset color-mix(in oklab, #212529, currentColor 60%);
5379
- flex-direction: column;
5380
- overflow: auto;
5381
- }
5382
- .sg-modal-tag[open=""] {
5383
- display: grid;
5384
- width: 100%;
5385
- grid-template-rows: [header-start] auto [header-end body-start] 1fr [body-end footer-start] auto [footer-end];
5386
- animation-name: slide-in-up;
5387
- animation-duration: 0.3s;
5388
- animation-timing-function: ease-in-out;
5389
- animation-fill-mode: forwards;
5390
- }
5391
- .sg-modal-tag.close {
5392
- animation: scale-down 0.3s ease-in-out;
5393
- animation-fill-mode: forwards;
5394
- }
5395
- .sg-modal-tag > form {
5396
- display: grid;
5397
- grid-template-rows: [body-start] 1fr [body-end footer-start] auto [footer-end];
5398
- }
5399
- @supports (grid-template-rows: subgrid) {
5400
- .sg-modal-tag > form {
5401
- grid-row-start: body-start;
5402
- grid-row-end: footer-end;
5403
- grid-template-rows: subgrid;
5404
- }
5405
- }
5406
- .sg-modal-tag > form .sg-modal-body {
5407
- grid-row: body;
3249
+ border: 1px solid white;
3250
+ border-radius: 0.5rem;
3251
+ outline: 0;
5408
3252
  }
5409
- .sg-modal-tag > form .sg-moda-footer {
5410
- grid-row: footer;
3253
+ .sg-modal.sg-modal-static .sg-modal-tag {
3254
+ transition: transform 0.3s ease-out;
3255
+ transform: scale(1.02);
5411
3256
  }
5412
3257
 
5413
- @keyframes scale-down {
5414
- to {
5415
- transform: translateY(10%);
5416
- opacity: 0;
5417
- }
5418
- }
5419
- @keyframes slide-in-up {
5420
- from {
5421
- transform: translateY(-10%);
5422
- opacity: 0.5;
5423
- }
5424
- }
5425
- .sg-modal-fill {
5426
- margin: auto;
5427
- top: 0;
5428
- height: 100%;
5429
- width: 100%;
3258
+ .sg-modal-dialog-centered {
3259
+ display: flex;
3260
+ justify-content: center;
3261
+ align-items: center;
3262
+ height: 100dvh;
3263
+ max-width: 100dvw;
3264
+ margin: 0;
5430
3265
  }
5431
3266
 
5432
3267
  .sg-modal-header {
5433
- grid-row: header;
5434
3268
  display: flex;
3269
+ flex-shrink: 0;
5435
3270
  align-items: center;
5436
3271
  justify-content: space-between;
5437
3272
  padding: 0.75rem;
5438
- margin: 0;
3273
+ border-bottom: 1px solid white;
3274
+ border-top-left-radius: 0.5rem;
3275
+ border-top-right-radius: 0.5rem;
5439
3276
  }
5440
3277
  .sg-modal-header .sg-button-close {
5441
3278
  padding: 0.5rem 0.5rem;
@@ -5443,105 +3280,55 @@ textarea.sg-form-control {
5443
3280
  }
5444
3281
 
5445
3282
  .sg-modal-title {
5446
- margin: 0;
3283
+ margin-bottom: 0;
5447
3284
  }
5448
3285
 
5449
3286
  .sg-modal-body {
5450
- grid-row: body;
5451
3287
  position: relative;
3288
+ flex: 1 1 auto;
5452
3289
  padding: 1rem;
5453
- background-color: color-mix(in oklab, #212529, currentColor 5%);
5454
- min-height: fit-content;
5455
- overflow: auto;
5456
- }
5457
- .sg-modal-body p {
5458
- margin: 0;
3290
+ background-color: #43474a;
5459
3291
  }
5460
3292
 
5461
3293
  .sg-modal-footer {
5462
- grid-row: footer;
5463
3294
  display: flex;
5464
3295
  flex-shrink: 0;
5465
3296
  flex-wrap: wrap;
5466
3297
  align-items: center;
5467
3298
  justify-content: flex-end;
5468
3299
  padding: 0.75rem;
5469
- background-color: #212529;
3300
+ background-color: #2e3236;
3301
+ border-top: 1px solid white;
3302
+ border-bottom-right-radius: 0.5rem;
3303
+ border-bottom-left-radius: 0.5rem;
5470
3304
  gap: 0.5rem;
5471
3305
  }
5472
3306
 
5473
- .sg-modal-sm {
5474
- max-width: 300px;
5475
- }
5476
-
5477
- .sg-modal-md {
5478
- max-width: 500px;
5479
- }
5480
-
5481
- .sg-modal-lg {
5482
- max-width: 700px;
5483
- }
5484
-
5485
- @media (max-width: 324px) {
3307
+ @media (max-width: 575px) {
5486
3308
  .sg-modal-tag {
5487
- margin: auto;
5488
- top: 0;
5489
- width: 100%;
3309
+ margin: 0.5rem;
5490
3310
  }
5491
3311
  }
5492
- @media (min-width: 325px) and (max-width: 575px) {
5493
- .sg-modal-md, .sg-modal-lg {
3312
+ @media (min-width: 576px) {
3313
+ .sg-modal-tag {
3314
+ max-width: 500px;
3315
+ margin-right: auto;
3316
+ margin-left: auto;
3317
+ }
3318
+ .sg-modal-sm {
5494
3319
  max-width: 300px;
5495
3320
  }
5496
3321
  }
5497
- @media (min-width: 576px) and (max-width: 767px) {
5498
- .sg-modal-lg {
5499
- max-width: 500px;
3322
+ @media (min-width: 992px) {
3323
+ .modal-lg, .modal-xl {
3324
+ max-width: 800px;
3325
+ }
3326
+ }
3327
+ @media (min-width: 1200px) {
3328
+ .modal-xl {
3329
+ max-width: 1140px;
5500
3330
  }
5501
3331
  }
5502
- @media (min-width: 768px) {
5503
- .sg-modal-lg {
5504
- max-width: 700px;
5505
- }
5506
- }
5507
- /*
5508
- @each $breakpoint, $value in $grid-breakpoints {
5509
- @if $breakpoint == "xs" {
5510
- @media (max-width: 575px) {
5511
- .sg-modal-tag {
5512
- margin: 0.5rem auto;
5513
- }
5514
- }
5515
- }
5516
- @if $breakpoint == "sm" {
5517
- @media (min-width: 576px) {
5518
- .sg-modal-tag {
5519
- max-width: 500px;
5520
- margin-right: auto;
5521
- margin-left: auto;
5522
- }
5523
- .sg-modal-sm {
5524
- max-width: 300px
5525
- }
5526
- }
5527
- }
5528
- @else if $breakpoint == "lg" {
5529
- @media (min-width: 992px) {
5530
- .modal-lg, .modal-xl {
5531
- max-width: 800px;
5532
- }
5533
- }
5534
- }
5535
- @else if $breakpoint == "xl" {
5536
- @media (min-width: 1200px) {
5537
- .modal-xl {
5538
- max-width: 1140px;
5539
- }
5540
- }
5541
- }
5542
- }
5543
- */
5544
- /*
5545
3332
  .sg-modal-open {
5546
3333
  overflow: hidden;
5547
3334
  }
@@ -5550,25 +3337,24 @@ textarea.sg-form-control {
5550
3337
  position: fixed;
5551
3338
  top: 0;
5552
3339
  left: 0;
5553
- z-index: $zindex-modal-backdrop;
3340
+ z-index: 1050;
5554
3341
  width: 100vw;
5555
3342
  height: 100vh;
5556
3343
  background-color: black;
5557
-
5558
- // Fade for backdrop
5559
- &.fadeIn {
5560
- animation-name: fadeInBackdrop;
5561
- animation-duration: .3s;
5562
- animation-timing-function: ease-out;
5563
- animation-fill-mode: forwards;
5564
- }
5565
- &.fadeOut {
5566
- animation-name: fadeOutBackdrop;
5567
- animation-duration: .3s;
5568
- animation-timing-function: ease-out;
5569
- animation-fill-mode: forwards;
5570
- }
5571
3344
  }
3345
+ .sg-modal-backdrop.fadeIn {
3346
+ animation-name: fadeInBackdrop;
3347
+ animation-duration: 0.3s;
3348
+ animation-timing-function: ease-out;
3349
+ animation-fill-mode: forwards;
3350
+ }
3351
+ .sg-modal-backdrop.fadeOut {
3352
+ animation-name: fadeOutBackdrop;
3353
+ animation-duration: 0.3s;
3354
+ animation-timing-function: ease-out;
3355
+ animation-fill-mode: forwards;
3356
+ }
3357
+
5572
3358
  @keyframes fadeInBackdrop {
5573
3359
  0% {
5574
3360
  opacity: 0;
@@ -5585,113 +3371,94 @@ textarea.sg-form-control {
5585
3371
  opacity: 0;
5586
3372
  }
5587
3373
  }
5588
-
5589
- .sg-modal { //scroll ocntainer
3374
+ .sg-modal {
5590
3375
  position: fixed;
5591
3376
  top: 0;
5592
3377
  left: 0;
5593
- z-index: $zindex-modal;
3378
+ z-index: 1060;
5594
3379
  display: block;
5595
3380
  width: 100%;
5596
3381
  height: 100%;
5597
3382
  overflow-x: hidden;
5598
3383
  overflow-y: auto;
5599
- // Prevent Chrome on Windows from adding a focus outline. For details, see
5600
- // https://github.com/twbs/bootstrap/pull/10951.
5601
3384
  outline: 0;
5602
- // We deliberately don't use `-webkit-overflow-scrolling: touch;` due to a
5603
- // gnarly iOS Safari bug: https://bugs.webkit.org/show_bug.cgi?id=158342
5604
- // See also https://github.com/twbs/bootstrap/issues/17695
5605
3385
  }
5606
3386
 
5607
- .sg-modal-dialog { //shell to position modal with bottom-padding
5608
- z-index: calc($zindex-modal + 1);
3387
+ .sg-modal-dialog {
3388
+ z-index: 1061;
5609
3389
  position: relative;
5610
3390
  width: auto;
5611
- margin: calc(4 * $sg-modal-margin);
5612
- // allow clicks to pass through for custom click handling to close modal
3391
+ margin: 2rem;
5613
3392
  pointer-events: none;
5614
-
5615
- // slide down animation
5616
- .sg-modal.fadeIn & {
5617
- animation-name: fadeIn;
5618
- animation-duration: .3s;
5619
- animation-timing-function: ease-out;
5620
- animation-fill-mode: forwards;
5621
- //transition: $sg-modal-transition;
5622
- //transform: translate(0, -50px);
5623
- }
5624
- .sg-modal.fadeOut & {
5625
- animation-name: fadeOut;
5626
- animation-duration: .3s;
5627
- animation-timing-function: ease-out;
5628
- animation-fill-mode: forwards;
5629
- //transition: $sg-modal-transition;
5630
- //transform: translate(0, -50px);
5631
- }
5632
- @keyframes fadeIn {
5633
- 0% {
5634
- opacity: 0;
5635
- top: -50px;
5636
- }
5637
- 100% {
5638
- opacity: 1;
5639
- top: 0px;
5640
- }
3393
+ }
3394
+ .sg-modal.fadeIn .sg-modal-dialog {
3395
+ animation-name: fadeIn;
3396
+ animation-duration: 0.3s;
3397
+ animation-timing-function: ease-out;
3398
+ animation-fill-mode: forwards;
3399
+ }
3400
+ .sg-modal.fadeOut .sg-modal-dialog {
3401
+ animation-name: fadeOut;
3402
+ animation-duration: 0.3s;
3403
+ animation-timing-function: ease-out;
3404
+ animation-fill-mode: forwards;
3405
+ }
3406
+ @keyframes fadeIn {
3407
+ 0% {
3408
+ opacity: 0;
3409
+ top: -50px;
5641
3410
  }
5642
-
5643
- @keyframes fadeOut {
5644
- 0% {
5645
- opacity: 1;
5646
- top: 0px;
5647
- }
5648
- 100% {
5649
- opacity: 0;
5650
- top: -50px;
5651
- }
3411
+ 100% {
3412
+ opacity: 1;
3413
+ top: 0px;
5652
3414
  }
5653
-
5654
- // make modal flash onBlur if static backdrop
5655
- .sg-modal.sg-modal-static & {
5656
- transition: $sg-modal-transition;
5657
- transform: scale(1.02);
3415
+ }
3416
+ @keyframes fadeOut {
3417
+ 0% {
3418
+ opacity: 1;
3419
+ top: 0px;
3420
+ }
3421
+ 100% {
3422
+ opacity: 0;
3423
+ top: -50px;
5658
3424
  }
5659
3425
  }
3426
+ .sg-modal.sg-modal-static .sg-modal-dialog {
3427
+ transition: transform 0.3s ease-out;
3428
+ transform: scale(1.02);
3429
+ }
5660
3430
 
5661
3431
  .sg-modal-dialog-scrollable {
5662
- height: calc(100% - $sg-modal-margin * 2);
5663
-
5664
- .sg-modal-content {
5665
- max-height: 100%;
5666
- overflow: hidden;
5667
- }
5668
-
5669
- .sg-modal-body {
5670
- overflow-y: auto;
5671
- }
3432
+ height: calc(100% - 1rem);
3433
+ }
3434
+ .sg-modal-dialog-scrollable .sg-modal-content {
3435
+ max-height: 100%;
3436
+ overflow: hidden;
3437
+ }
3438
+ .sg-modal-dialog-scrollable .sg-modal-body {
3439
+ overflow-y: auto;
5672
3440
  }
3441
+
5673
3442
  .sg-modal-dialog-centered {
5674
3443
  display: flex;
5675
3444
  justify-content: center;
5676
3445
  align-items: center;
5677
3446
  height: 100dvh;
5678
3447
  max-width: 100dvw;
5679
- margin:0;
3448
+ margin: 0;
5680
3449
  }
5681
3450
 
5682
3451
  .sg-modal-content {
5683
3452
  position: relative;
5684
3453
  display: flex;
5685
3454
  flex-direction: column;
5686
- width: 100%; // Ensure `.modal-content` extends the full width of the parent `.modal-dialog`
5687
- // counteract the pointer-events: none; in the .modal-dialog
5688
- color: $sg-modal-text-color;
3455
+ width: 100%;
3456
+ color: white;
5689
3457
  pointer-events: auto;
5690
- background-color: $sg-modal-background-color;
3458
+ background-color: #2e3236;
5691
3459
  background-clip: padding-box;
5692
- border: 1px solid $sg-modal-text-color;
5693
- border-radius: $sg-modal-radius;
5694
- // Remove focus outline from opened modal
3460
+ border: 1px solid white;
3461
+ border-radius: 0.5rem;
5695
3462
  outline: 0;
5696
3463
  }
5697
3464
 
@@ -5699,16 +3466,17 @@ textarea.sg-form-control {
5699
3466
  display: flex;
5700
3467
  flex-shrink: 0;
5701
3468
  align-items: center;
5702
- justify-content: space-between; // Put modal header elements (title and dismiss) on opposite ends
3469
+ justify-content: space-between;
5703
3470
  padding: 0.75rem;
5704
- border-bottom: 1px solid $sg-modal-text-color;
5705
- @include border-top-radius($sg-modal-radius);
5706
-
5707
- .sg-button-close {
5708
- padding: 0.5rem 0.5rem;
5709
- margin: calc(-.5 * $sg-modal-margin) calc(-.5 * $sg-modal-margin) calc(-.5 * $sg-modal-margin) auto;
5710
- }
3471
+ border-bottom: 1px solid white;
3472
+ border-top-left-radius: 0.5rem;
3473
+ border-top-right-radius: 0.5rem;
3474
+ }
3475
+ .sg-modal-header .sg-button-close {
3476
+ padding: 0.5rem 0.5rem;
3477
+ margin: -0.25rem -0.25rem -0.25rem auto;
5711
3478
  }
3479
+
5712
3480
  .sg-modal-title {
5713
3481
  margin-bottom: 0;
5714
3482
  }
@@ -5717,8 +3485,9 @@ textarea.sg-form-control {
5717
3485
  position: relative;
5718
3486
  flex: 1 1 auto;
5719
3487
  padding: 1rem;
5720
- background-color: color.mix(white,$sg-modal-background-color, 10%);
3488
+ background-color: #43474a;
5721
3489
  }
3490
+
5722
3491
  .sg-modal-footer {
5723
3492
  display: flex;
5724
3493
  flex-shrink: 0;
@@ -5726,55 +3495,38 @@ textarea.sg-form-control {
5726
3495
  align-items: center;
5727
3496
  justify-content: flex-end;
5728
3497
  padding: 0.75rem;
5729
- background-color: $sg-modal-background-color;
5730
- border-top: 1px solid $sg-modal-text-color;
5731
- @include border-bottom-radius($sg-modal-radius);
5732
-
3498
+ background-color: #2e3236;
3499
+ border-top: 1px solid white;
3500
+ border-bottom-right-radius: 0.5rem;
3501
+ border-bottom-left-radius: 0.5rem;
5733
3502
  gap: 0.5rem;
5734
3503
  }
5735
3504
 
5736
- $modal-lg: 800px !default;
5737
- $modal-xl: 1140px !default;
5738
-
5739
- $container-max-widths: ( sm: 540px, md: 720px, lg: 960px, xl: 1140px, xxl: 1320px ) !default;
5740
- $grid-breakpoints: (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px ) !default;
5741
-
5742
- @each $breakpoint, $value in $grid-breakpoints {
5743
- @if $breakpoint == "xs" {
5744
- @media (max-width: 575px) {
5745
- .sg-modal-dialog {
5746
- margin: 0.5rem;
5747
- }
5748
- }
5749
- }
5750
- @if $breakpoint == "sm" {
5751
- @media (min-width: 576px) {
5752
- .sg-modal-dialog {
5753
- max-width: 500px;
5754
- margin-right: auto;
5755
- margin-left: auto;
5756
- }
5757
- .sg-modal-sm {
5758
- max-width: 300px
5759
- }
5760
- }
5761
- }
5762
- @else if $breakpoint == "lg" {
5763
- @media (min-width: 992px) {
5764
- .modal-lg, .modal-xl {
5765
- max-width: 800px;
5766
- }
5767
- }
5768
- }
5769
- @else if $breakpoint == "xl" {
5770
- @media (min-width: 1200px) {
5771
- .modal-xl {
5772
- max-width: 1140px;
5773
- }
5774
- }
5775
- }
5776
- }
5777
- */
3505
+ @media (max-width: 575px) {
3506
+ .sg-modal-dialog {
3507
+ margin: 0.5rem;
3508
+ }
3509
+ }
3510
+ @media (min-width: 576px) {
3511
+ .sg-modal-dialog {
3512
+ max-width: 500px;
3513
+ margin-right: auto;
3514
+ margin-left: auto;
3515
+ }
3516
+ .sg-modal-sm {
3517
+ max-width: 300px;
3518
+ }
3519
+ }
3520
+ @media (min-width: 992px) {
3521
+ .modal-lg, .modal-xl {
3522
+ max-width: 800px;
3523
+ }
3524
+ }
3525
+ @media (min-width: 1200px) {
3526
+ .modal-xl {
3527
+ max-width: 1140px;
3528
+ }
3529
+ }
5778
3530
  .sg-nav {
5779
3531
  display: flex;
5780
3532
  flex-wrap: wrap;
@@ -5784,63 +3536,36 @@ $grid-breakpoints: (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 140
5784
3536
  }
5785
3537
 
5786
3538
  .sg-nav-link {
3539
+ display: block;
5787
3540
  padding: 0.5rem 1rem;
5788
3541
  text-decoration: none;
5789
- display: flex;
5790
- align-items: center;
5791
- gap: 0.5rem;
5792
- margin-block: auto;
5793
- color: var(--sg-navbar-link-color);
5794
- }
5795
- .sg-nav-link:hover {
5796
- color: var(--sg-navbar-hover-color);
5797
3542
  }
5798
3543
  .sg-nav-link.disabled {
5799
3544
  pointer-events: none;
5800
3545
  cursor: default;
5801
3546
  }
5802
3547
 
5803
- [data-navdropdown=true] .sg-nav-link {
5804
- color: var(--sg-navbar-hover-color);
5805
- font-size: 0.85rem;
5806
- text-decoration: none;
5807
- }
5808
-
5809
3548
  .sg-nav-item {
5810
3549
  margin-block: auto;
5811
3550
  }
5812
3551
 
5813
3552
  .sg-navbar {
5814
- --sg-navbar-bg: rgb(26, 27, 29);
5815
- --sg-navbar-text-color: white;
5816
- --sg-navbar-link-color: rgb(252, 95, 95);
5817
- --sg-navbar-hover-color: white;
5818
- --sg-navbar-disabled-color: rgb(180, 180, 180);
3553
+ --sg-navbar-bg: #212529;
3554
+ --sg-navbar-color: rgba(white, .55);
3555
+ --sg-navbar-hover-color: rgba(white, .75);
3556
+ --sg-navbar-disabled-color: rgba(white, .25);
5819
3557
  --sg-navbar-active-color: white;
5820
- --sg-navbar-zindex: $zindex-navbar;
5821
- background-color: var(--sg-navbar-bg);
5822
- background: linear-gradient(71deg, var(--sg-navbar-bg), color-mix(in srgb, var(--sg-navbar-bg), var(--sg-navbar-hover-color) 5%), var(--sg-navbar-bg), color-mix(in srgb, var(--sg-navbar-bg), var(--sg-navbar-hover-color) 5%), var(--sg-navbar-bg));
5823
- width: 100%;
5824
- min-height: 3rem;
5825
- z-index: 990;
5826
- box-sizing: border-box;
5827
- border: 2px outset color-mix(in srgb, white 5%, var(--sg-navbar-bg));
5828
- border-bottom: 2px solid var(--sg-navbar-link-color);
3558
+ --sg-navbar-brand-color: white;
3559
+ --sg-navbar-brand-hover-color: white;
3560
+ background-color: --sg-navbar-bg;
3561
+ position: relative;
5829
3562
  display: flex;
5830
3563
  flex-wrap: wrap;
5831
3564
  align-items: center;
5832
3565
  padding: 0.5rem 0rem;
5833
- position: sticky;
5834
- top: 0;
5835
- left: 0;
5836
3566
  }
5837
3567
  .sg-navbar > .container-xxl, .sg-navbar > .container-xl, .sg-navbar > .container-lg, .sg-navbar > .container-md, .sg-navbar > .container-sm, .sg-navbar > .sg-container,
5838
- .sg-navbar > .sg-container-fluid,
5839
- .sg-navbar > .sg-container-sm,
5840
- .sg-navbar > .sg-container-md,
5841
- .sg-navbar > .sg-container-lg,
5842
- .sg-navbar > .sg-container-xl,
5843
- .sg-navbar > .sg-container-xxl {
3568
+ .sg-navbar > .sg-container-fluid {
5844
3569
  display: flex;
5845
3570
  flex-wrap: inherit;
5846
3571
  align-items: center;
@@ -5851,22 +3576,21 @@ $grid-breakpoints: (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 140
5851
3576
  padding-bottom: 0.25rem;
5852
3577
  margin-inline: 1rem;
5853
3578
  margin-block: auto;
5854
- color: var(--sg-navbar-link-color);
3579
+ color: var(--sg-navbar-brand-color);
5855
3580
  text-decoration: none;
5856
3581
  white-space: nowrap;
5857
3582
  }
5858
3583
  .sg-navbar-brand:hover, .sg-navbar-brand:focus {
5859
- color: var(--sg-navbar-hover-color);
3584
+ color: var(--sg-navbar-brand-hover-color);
5860
3585
  text-decoration: none;
5861
3586
  }
5862
3587
 
5863
3588
  .sg-navbar-nav {
5864
3589
  --nav-link-padding-x: 0;
5865
3590
  --nav-link-padding-y: 0.5rem;
5866
- --nav-link-color: $sg-link-color;
5867
- --nav-link-hover-color: $sg-link-hover-color;
5868
- --nav-link-disabled-color: $sg-link-disable-color;
5869
- margin: 0;
3591
+ --nav-link-color: var(--sg-navbar-color);
3592
+ --nav-link-hover-color: var(--sg-navbar-hover-color);
3593
+ --nav-link-disabled-color: var(--sg-navbar-disabled-color);
5870
3594
  display: flex;
5871
3595
  flex-direction: row;
5872
3596
  padding-left: 0;
@@ -5884,7 +3608,7 @@ $grid-breakpoints: (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 140
5884
3608
  .sg-navbar-text {
5885
3609
  padding-top: 0.5rem;
5886
3610
  padding-bottom: 0.5rem;
5887
- color: var(--sg-navbar-active-color);
3611
+ color: var(--sg-navbar-color);
5888
3612
  }
5889
3613
  .sg-navbar-text a,
5890
3614
  .sg-navbar-text a:hover,
@@ -5900,272 +3624,32 @@ $grid-breakpoints: (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 140
5900
3624
  .sg-nav-dropdown-toggle {
5901
3625
  background-color: transparent;
5902
3626
  display: block;
5903
- padding: 0.5em 1em;
5904
- color: var(--sg-navbar-link-color);
3627
+ padding: 0.25rem 0.5rem;
3628
+ color: white;
5905
3629
  text-decoration: none;
5906
- border-radius: 0;
3630
+ border-radius: 0.375rem;
5907
3631
  border: 1px solid transparent;
5908
- cursor: pointer;
5909
3632
  }
5910
3633
  .sg-nav-dropdown-toggle:hover, .sg-nav-dropdown-toggle:focus {
3634
+ border-color: white;
5911
3635
  background-color: transparent;
5912
- border: 1px solid transparent;
5913
- color: var(--sg-navbar-hover-color);
5914
3636
  }
5915
3637
  .sg-nav-dropdown-toggle:active {
5916
3638
  background-color: transparent;
5917
3639
  }
5918
- .sg-nav-dropdown-toggle:focus-visible, .sg-nav-dropdown-toggle:focus {
5919
- border: 1px solid transparent;
5920
- }
5921
- .sg-nav-dropdown-toggle[aria-expanded=true] {
5922
- color: var(--sg-navbar-hover-color);
5923
- }
5924
3640
  .sg-nav-dropdown-toggle.disabled {
5925
3641
  color: rgba(0, 0, 0, 0.24);
5926
3642
  pointer-events: none;
5927
3643
  cursor: default;
5928
3644
  }
5929
3645
 
5930
- .sg-offCanvas-open {
5931
- overflow: hidden;
5932
- }
5933
-
5934
- .sg-offCanvas-backdrop {
5935
- position: fixed;
5936
- top: 0;
5937
- left: 0;
5938
- z-index: 1050;
5939
- width: 100vw;
5940
- height: 100vh;
5941
- background-color: black;
5942
- }
5943
- .sg-offCanvas-backdrop.fadeIn {
5944
- animation-name: fadeInBackdrop;
5945
- animation-duration: 0.3s;
5946
- animation-timing-function: ease-out;
5947
- animation-fill-mode: forwards;
5948
- }
5949
- .sg-offCanvas-backdrop.fadeOut {
5950
- animation-name: fadeOutBackdrop;
5951
- animation-duration: 0.3s;
5952
- animation-timing-function: ease-out;
5953
- animation-fill-mode: forwards;
5954
- }
5955
-
5956
- @keyframes fadeInBackdrop {
5957
- 0% {
5958
- opacity: 0;
5959
- }
5960
- 100% {
5961
- opacity: 0.5;
5962
- }
5963
- }
5964
- @keyframes fadeOutBackdrop {
5965
- 0% {
5966
- opacity: 0.5;
5967
- }
5968
- 100% {
5969
- opacity: 0;
5970
- }
5971
- }
5972
- .sg-offCanvas {
5973
- position: fixed;
5974
- top: 0;
5975
- left: 0;
5976
- z-index: 1060;
5977
- display: block;
5978
- width: 100%;
5979
- height: 100%;
5980
- overflow-x: hidden;
5981
- overflow-y: auto;
5982
- outline: 0;
5983
- }
5984
-
5985
- .sg-offCanvas-dialog {
5986
- z-index: 1061;
5987
- position: relative;
5988
- width: auto;
5989
- max-height: 100vh;
5990
- pointer-events: none;
5991
- }
5992
- .sg-offCanvas.fadeIn .sg-offCanvas-dialog {
5993
- animation-name: fadeIn;
5994
- animation-duration: 0.6s;
5995
- animation-timing-function: ease-out;
5996
- animation-fill-mode: forwards;
5997
- }
5998
- .sg-offCanvas.fadeOut .sg-offCanvas-dialog {
5999
- animation-name: fadeOut;
6000
- animation-duration: 0.3s;
6001
- animation-timing-function: ease-out;
6002
- animation-fill-mode: forwards;
6003
- }
6004
- @keyframes fadeIn {
6005
- 0% {
6006
- opacity: 0;
6007
- }
6008
- 100% {
6009
- opacity: 1;
6010
- }
6011
- }
6012
- @keyframes fadeOut {
6013
- 0% {
6014
- opacity: 1;
6015
- }
6016
- 100% {
6017
- opacity: 0;
6018
- }
6019
- }
6020
-
6021
- .sg-offCanvas-content {
6022
- --sg-offcanvas-size: 478px;
6023
- position: fixed;
6024
- bottom: 0;
6025
- display: flex;
6026
- flex-direction: column;
6027
- max-width: 100%;
6028
- max-height: 100%;
6029
- color: white;
6030
- pointer-events: auto;
6031
- background-color: #2e3236;
6032
- background-clip: padding-box;
6033
- outline: 0;
6034
- transition: transform 0.3s ease-in-out;
6035
- /*
6036
- &.sg-offCanvas-footer {
6037
- display: flex;
6038
- flex-shrink: 0;
6039
- flex-wrap: wrap;
6040
- align-items: center;
6041
- justify-content: flex-end;
6042
- padding: 0.75em;
6043
- background-color: $sg-offCanvas-background-color;
6044
- border-top: 1px solid $sg-offCanvas-text-color;
6045
- @include border-bottom-radius($sg-offCanvas-radius);
6046
-
6047
- gap: 0.5em;
6048
- }
6049
- */
6050
- }
6051
- .sg-offCanvas-content.sg-offcanvas-start {
6052
- top: 0;
6053
- left: 0;
6054
- width: var(--sg-offcanvas-size);
6055
- border-right: 1px solid #2e3236;
6056
- transform: translateX(-100%);
6057
- }
6058
- .sg-offCanvas-content.sg-offcanvas-end {
6059
- top: 0;
6060
- right: 0;
6061
- width: var(--sg-offcanvas-size);
6062
- border-left: 1px solid #2e3236;
6063
- transform: translateX(100%);
6064
- }
6065
- .sg-offCanvas-content.sg-offcanvas-top {
6066
- top: 0;
6067
- right: 0;
6068
- left: 0;
6069
- height: var(--sg-offcanvas-size);
6070
- max-height: 100%;
6071
- border-bottom: 1px solid #2e3236;
6072
- transform: translateY(-100%);
6073
- }
6074
- .sg-offCanvas-content.sg-offcanvas-bottom {
6075
- right: 0;
6076
- left: 0;
6077
- height: var(--sg-offcanvas-size);
6078
- max-height: 100%;
6079
- border-top: 1px solid #2e3236;
6080
- transform: translateY(100%);
6081
- }
6082
- .sg-offCanvas-content.sg-slide-in {
6083
- transform: none;
6084
- }
6085
- .sg-offCanvas-content.sg-offCanvas-static {
6086
- transition: transform 0.3s ease-out;
6087
- transform: scaleX(1.02);
6088
- }
6089
- .sg-offCanvas-content .sg-offCanvas-header {
6090
- display: flex;
6091
- flex-shrink: 0;
6092
- align-items: center;
6093
- justify-content: space-between;
6094
- padding: 1em;
6095
- }
6096
- .sg-offCanvas-content .sg-offCanvas-header .sg-button-close {
6097
- padding: 0.5em 0.5em;
6098
- margin: -0.25em -0.25em -0.25em auto;
6099
- }
6100
- .sg-offCanvas-content .sg-offCanvas-title {
6101
- margin-bottom: 0;
6102
- }
6103
- .sg-offCanvas-content .sg-offCanvas-body {
6104
- position: relative;
6105
- flex: 1 1 auto;
6106
- padding: 1em;
6107
- background-color: #43474a;
6108
- overflow: auto;
6109
- }
6110
-
6111
- /*
6112
- $offCanvas-lg: 800px !default;
6113
- $offCanvas-xl: 1140px !default;
6114
-
6115
- $container-max-widths: ( sm: 540px, md: 720px, lg: 960px, xl: 1140px, xxl: 1320px ) !default;
6116
- $grid-breakpoints: (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px ) !default;
6117
-
6118
- @each $breakpoint, $value in $grid-breakpoints {
6119
- @if $breakpoint == "xs" {
6120
- @media (max-width: 575px) {
6121
- .sg-offCanvas-dialog {
6122
- margin: 0.5em;
6123
- }
6124
- }
6125
- }
6126
- @if $breakpoint == "sm" {
6127
- @media (min-width: 576px) {
6128
- .sg-offCanvas-dialog {
6129
- max-width: 500px;
6130
- margin-right: auto;
6131
- margin-left: auto;
6132
- }
6133
- .sg-offCanvas-sm {
6134
- max-width: 300px
6135
- }
6136
- }
6137
- }
6138
- @else if $breakpoint == "lg" {
6139
- @media (min-width: 992px) {
6140
- .offCanvas-lg, .offCanvas-xl {
6141
- max-width: 800px;
6142
- }
6143
- }
6144
- }
6145
- @else if $breakpoint == "xl" {
6146
- @media (min-width: 1200px) {
6147
- .offCanvas-xl {
6148
- max-width: 1140px;
6149
- }
6150
- }
6151
- }
6152
- }
6153
- */
6154
- .sg-overlay-wrapper {
6155
- max-width: 100%;
6156
- max-height: 100%;
6157
- z-index: 1010;
6158
- }
6159
-
6160
3646
  .sg-overlay-arrow {
6161
- --width: 15px;
6162
- --height: 20px;
6163
3647
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 20 20"> <polygon points="1,1 1,19, 14,10" fill="black" stroke-width="1.5" stroke="black" /> </svg>');
6164
3648
  background-repeat: no-repeat no-repeat;
6165
3649
  background-position: center center;
6166
3650
  background-size: cover;
6167
- height: var(--height);
6168
- width: var(--width);
3651
+ height: 20px;
3652
+ width: 15px;
6169
3653
  z-index: 1010;
6170
3654
  }
6171
3655
  .sg-overlay-arrow.overlay-position-right {
@@ -6181,30 +3665,6 @@ $grid-breakpoints: (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 140
6181
3665
  transform: rotate(270deg);
6182
3666
  }
6183
3667
 
6184
- .sg-tooltip-arrow {
6185
- --width: 10px;
6186
- --heigth: 15px;
6187
- background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 15 15"> <polygon points="1,1 1,14, 9,7" fill="black" stroke-width="1.5" stroke="black" /> </svg>');
6188
- }
6189
-
6190
- .sg-tooltip-wrapper {
6191
- --input-text-color: white;
6192
- --input-background-color: rgb(26, 27, 29);
6193
- --input-border-color: color-mix(in oklab, rgb(26, 27, 29), white 25%);
6194
- font-size: 0.8rem;
6195
- display: flex;
6196
- flex-wrap: wrap;
6197
- max-width: 12rem;
6198
- padding: 0.375em 0.5em;
6199
- color: var(--input-text-color);
6200
- background-color: var(--input-background-color);
6201
- border: 2px outset var(--input-border-color);
6202
- border-radius: 0;
6203
- }
6204
- .sg-tooltip-wrapper > * {
6205
- font-size: 0.8rem;
6206
- }
6207
-
6208
3668
  .sg-moveable-popout {
6209
3669
  --popout-index: 1010;
6210
3670
  position: absolute;
@@ -6226,7 +3686,7 @@ $grid-breakpoints: (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 140
6226
3686
  user-select: inherit;
6227
3687
  margin-bottom: 0;
6228
3688
  padding: 0.25em 0.5em;
6229
- background-color: color-mix(in hsl, white 3%, #212529);
3689
+ background-color: #212529;
6230
3690
  border-bottom: 1px solid white;
6231
3691
  }
6232
3692
  .sg-moveable-popout .sg-popout-header > * {
@@ -6235,9 +3695,6 @@ $grid-breakpoints: (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 140
6235
3695
  .sg-moveable-popout .sg-popout-header:first-child {
6236
3696
  border-radius: 0.375em 0.375em 0 0;
6237
3697
  }
6238
- .sg-moveable-popout[data-move=true] {
6239
- touch-action: none;
6240
- }
6241
3698
  .sg-moveable-popout[data-move=true] .sg-popout-header {
6242
3699
  cursor: move;
6243
3700
  }
@@ -6245,12 +3702,12 @@ $grid-breakpoints: (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 140
6245
3702
  flex: 1 1 auto;
6246
3703
  padding: 0.5em;
6247
3704
  user-select: inherit;
6248
- background-color: color-mix(in srgb, white 4%, color-mix(in hsl, white 3%, #212529));
3705
+ background-color: color-mix(in srgb, white 4%, #212529);
6249
3706
  }
6250
3707
  .sg-moveable-popout .sg-popout-footer {
6251
3708
  user-select: inherit;
6252
3709
  padding: 0.25em 0.5em;
6253
- background-color: color-mix(in hsl, white 3%, #212529);
3710
+ background-color: #212529;
6254
3711
  border-top: 1px solid white;
6255
3712
  }
6256
3713
  .sg-moveable-popout .sg-popout-footer:last-child {
@@ -6273,163 +3730,25 @@ $grid-breakpoints: (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 140
6273
3730
  background-image: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><rect width="256" height="256" fill="none"/><line x1="208" y1="128" x2="128" y2="208" fill="none" stroke="white" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"/><line x1="192" y1="40" x2="40" y2="192" fill="none" stroke="white" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"/></svg>');
6274
3731
  }
6275
3732
 
6276
- .sg-spinner {
6277
- display: inline-block;
6278
- border-radius: 50%;
6279
- width: 1em;
6280
- height: 1em;
6281
- border: 0.2em solid white;
6282
- border-right-color: transparent;
6283
- margin: auto;
6284
- animation-name: spinny;
6285
- animation-duration: 0.5s;
6286
- animation-timing-function: linear;
6287
- animation-iteration-count: infinite;
6288
- }
6289
-
6290
- @keyframes spinny {
6291
- 100% {
6292
- transform: rotate(360deg);
6293
- }
6294
- }
6295
- .sg-table {
6296
- --sg-table-padding: $sg-table-padding;
6297
- width: 100%;
6298
- margin-bottom: 1rem;
6299
- color: black;
6300
- vertical-align: top;
6301
- border-color: black;
6302
- }
6303
- .sg-table > :not(caption) > * > * {
6304
- padding: 0.5rem 0.5rem;
6305
- background-color: transparent;
6306
- border-bottom-width: 1px;
6307
- box-shadow: inset 0 0 0 9999px transparent;
6308
- }
6309
- .sg-table > tbody {
6310
- vertical-align: inherit;
6311
- }
6312
- .sg-table > thead {
6313
- vertical-align: bottom;
6314
- }
6315
-
6316
- .sg-caption-top {
6317
- caption-side: top;
6318
- }
6319
-
6320
- .sg-table-sm > :not(caption) > * > * {
6321
- padding: 0.25rem 0.25rem;
6322
- }
6323
-
6324
3733
  .sg-tabs {
6325
3734
  width: 100%;
6326
- display: grid;
6327
- grid-template-rows: [control-start] auto [control-end page-start] 1fr [page-end];
6328
3735
  }
6329
3736
 
6330
3737
  .sg-tabs-controls {
6331
- --border-bottom-color: white;
6332
- --border-width: 2px;
6333
- grid-row: control;
6334
- position: relative;
6335
3738
  display: flex;
6336
3739
  flex-direction: row;
6337
- background-color: #212529;
6338
- overflow-x: auto;
6339
- scrollbar-width: none;
6340
- }
6341
- .sg-tabs-controls::before {
6342
- content: "";
6343
- position: absolute;
6344
- bottom: 0;
6345
- width: 100%;
6346
- height: var(--border-width);
6347
- background-color: var(--border-bottom-color);
6348
- }
6349
- @media (prefers-reduce-motion: no-preference) {
6350
- .sg-tabs-controls {
6351
- scroll-behavior: smooth;
6352
- }
6353
- }
6354
- .sg-tabs-controls > * {
6355
- flex: 0 0 auto;
6356
3740
  }
6357
3741
 
6358
3742
  .sg-tabs-button {
6359
- --border-color: #212529;
6360
- --text-color: rgb(252, 95, 95);
6361
- --background-color: #212529;
6362
- --hover-background-color: color-mix(in srgb, black 15%, #212529);
6363
- --active-background-color: color-mix(in srgb, black 25%, #212529);
6364
- position: relative;
6365
3743
  display: block;
6366
- color: var(--text-color);
6367
- background-color: var(--background-color);
6368
- padding: 0.375rem 0.75rem;
6369
- border: var(--border-width) solid var(--border-color);
6370
- border-bottom-color: var(--border-bottom-color);
6371
- font-size: 0.85rem;
6372
- }
6373
- .sg-tabs-button::after, .sg-tabs-button::before {
6374
- content: "";
6375
- position: absolute;
6376
- width: var(--border-width);
6377
- height: var(--border-width);
6378
- bottom: calc(-1 * var(--border-width));
6379
- left: calc(-1 * var(--border-width));
6380
- background-color: var(--border-bottom-color);
6381
- z-index: 2;
6382
- }
6383
- .sg-tabs-button::after {
6384
- left: unset;
6385
- right: calc(-1 * var(--border-width));
6386
- }
6387
- .sg-tabs-button:hover {
6388
- background-color: var(--hover-background-color);
6389
- }
6390
- .sg-tabs-button:active {
6391
- background-color: var(--active-background-color);
6392
3744
  }
6393
3745
  .sg-tabs-button.sg-active {
6394
- border: 2px solid var(--border-bottom-color);
6395
- border-bottom: 2px solid var(--sg-body-bg);
6396
- }
6397
- .sg-tabs-button.sg-tabs-scroll-button {
6398
- position: sticky;
6399
- left: 0;
6400
- height: 100%;
6401
- aspect-ratio: 1;
6402
- padding: 0;
6403
- z-index: 2;
6404
- }
6405
- .sg-tabs-button.sg-tabs-scroll-button svg {
6406
- position: relative;
6407
- top: 0;
6408
- left: 0;
6409
- }
6410
- .sg-tabs-button.sg-tabs-scroll-button[data-position=right] {
6411
- position: sticky;
6412
- left: unset;
6413
- right: 0;
6414
- }
6415
- .sg-tabs-button.sg-tabs-scroll-button:first-child {
6416
- border-right-color: var(--border-bottom-color);
6417
- }
6418
- .sg-tabs-button.sg-tabs-scroll-button:first-child::after {
6419
- bottom: unset;
6420
- top: calc(-1 * var(--border-width));
6421
- }
6422
- .sg-tabs-button.sg-tabs-scroll-button:last-child {
6423
- border-left-color: var(--border-bottom-color);
6424
- }
6425
- .sg-tabs-button.sg-tabs-scroll-button:last-child::before {
6426
- bottom: unset;
6427
- top: calc(-1 * var(--border-width));
3746
+ background-color: #202020;
3747
+ color: white;
6428
3748
  }
6429
3749
 
6430
3750
  .sg-tabs-content {
6431
3751
  width: 100%;
6432
- grid-row: page;
6433
3752
  }
6434
3753
 
6435
3754
  .sg-tabs-page {
@@ -6437,9 +3756,7 @@ $grid-breakpoints: (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 140
6437
3756
  }
6438
3757
  .sg-tabs-page.sg-active {
6439
3758
  display: flex;
6440
- flex-wrap: wrap;
6441
- flex-direction: column;
6442
- padding-block: 1rem;
3759
+ flex-direction: row;
6443
3760
  }
6444
3761
 
6445
3762
  /*# sourceMappingURL=stargazerui.css.map */