stargazer-ui 1.1.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.
- package/.babelrc.json +10 -0
- package/.eslintrc.cjs +18 -0
- package/.gitattributes +2 -0
- package/LICENSE +21 -0
- package/dev/index.html +12 -0
- package/dev/index.jsx +49 -0
- package/dev/index.scss +59 -0
- package/dev/pages/ButtonPage.jsx +44 -0
- package/dev/pages/CardPage.jsx +81 -0
- package/dev/pages/DropdownPage.jsx +31 -0
- package/dev/pages/FormPage.jsx +130 -0
- package/dev/pages/ListPage.jsx +52 -0
- package/dev/pages/ModalPage.jsx +37 -0
- package/dev/pages/OverlayPage.jsx +35 -0
- package/dev/pages/components.jsx +19 -0
- package/{styles → dev}/stargazerui.css +419 -2530
- package/dev/stargazerui.css.map +1 -0
- package/dev/test.jsx +88 -0
- package/package.json +79 -1
- package/rollup.config.js +140 -0
- package/scripts/writePackageJsons.js +42 -0
- package/src/Bar/Bar.tsx +0 -0
- package/src/Bar/Bar.type.ts +9 -0
- package/src/Bar/index.ts +0 -0
- package/src/Button/Button.tsx +17 -0
- package/src/Button/Button.types.ts +8 -0
- package/src/Button/index.ts +3 -0
- package/src/ButtonGroup/ButtonGroup.tsx +14 -0
- package/src/ButtonGroup/ButtonGroup.types.ts +8 -0
- package/src/ButtonGroup/index.ts +3 -0
- package/src/Card/Card.tsx +70 -0
- package/src/Card/Card.types.ts +33 -0
- package/src/Card/index.ts +3 -0
- package/src/CloseButton/CloseButton.tsx +14 -0
- package/src/CloseButton/CloseButton.types.ts +6 -0
- package/src/CloseButton/index.ts +3 -0
- package/src/Dropdown/Dropdown.tsx +358 -0
- package/src/Dropdown/Dropdown.types.ts +52 -0
- package/src/Dropdown/index.ts +4 -0
- package/src/FileUploadButton/FileUploadButton.tsx +27 -0
- package/src/FileUploadButton/FileUploadButton.types.ts +9 -0
- package/src/FileUploadButton/index.ts +3 -0
- package/src/FloatingLabel/FloatingLabel.tsx +22 -0
- package/src/FloatingLabel/FloatingLabel.types.ts +11 -0
- package/src/FloatingLabel/index.ts +3 -0
- package/src/Form/Form.tsx +445 -0
- package/src/Form/Form.types.ts +117 -0
- package/src/Form/index.ts +4 -0
- package/src/InputGroup/InputGroup.tsx +46 -0
- package/src/InputGroup/InputGroup.types.ts +21 -0
- package/src/InputGroup/index.ts +4 -0
- package/src/List/List.tsx +112 -0
- package/src/List/List.types.ts +34 -0
- package/src/List/index.ts +4 -0
- package/src/Modal/Modal.tsx +220 -0
- package/src/Modal/Modal.types.ts +49 -0
- package/src/Modal/index.ts +4 -0
- package/src/Nav/Nav.tsx +43 -0
- package/src/Nav/Nav.types.ts +21 -0
- package/src/Nav/index.ts +4 -0
- package/src/NavBar/Navbar.tsx +57 -0
- package/src/NavBar/Navbar.types.ts +24 -0
- package/src/NavBar/index.ts +4 -0
- package/src/NavDropdown/NavDropdown.tsx +93 -0
- package/src/NavDropdown/NavDropdown.types.ts +6 -0
- package/src/NavDropdown/index.ts +3 -0
- package/src/Overlay/Overlay.tsx +277 -0
- package/src/Overlay/Overlay.types.ts +20 -0
- package/{Overlay/index.d.ts → src/Overlay/index.ts} +3 -3
- package/src/Popout/Popout.tsx +155 -0
- package/src/Popout/Popout.types.ts +42 -0
- package/src/Popout/index.ts +3 -0
- package/src/Spinner/Spinner.tsx +15 -0
- package/src/Spinner/Spinner.types.ts +7 -0
- package/src/Spinner/index.ts +3 -0
- package/src/Table/Table.tsx +16 -0
- package/src/Table/Table.types.ts +9 -0
- package/src/Table/index.ts +3 -0
- package/src/Tabs/Tabs.tsx +215 -0
- package/src/Tabs/Tabs.types.ts +49 -0
- package/src/Tabs/index.ts +3 -0
- package/src/ToggleButton/ToggleButton.tsx +21 -0
- package/src/ToggleButton/ToggleButton.types.ts +8 -0
- package/src/ToggleButton/index.ts +3 -0
- package/{hooks/index.d.ts → src/hooks/index.ts} +6 -5
- package/src/hooks/useClassname.ts +5 -0
- package/src/hooks/useDraggable.ts +186 -0
- package/src/hooks/useKeepElementFocused.ts +37 -0
- package/src/hooks/useScreenSize.ts +24 -0
- package/src/index.ts +21 -0
- package/src/styles/_Card.scss +166 -0
- package/src/styles/_CloseButton.scss +51 -0
- package/src/styles/_CustomButton.scss +132 -0
- package/src/styles/_Dropdown.scss +120 -0
- package/src/styles/_FloatingLabel.scss +56 -0
- package/src/styles/_Forms.scss +7 -0
- package/src/styles/_Grid.scss +178 -0
- package/src/styles/_InputGroup.scss +71 -0
- package/src/styles/_List.scss +62 -0
- package/src/styles/_Modal.scss +234 -0
- package/src/styles/_ModalOld.scss +242 -0
- package/src/styles/_Nav.scss +36 -0
- package/src/styles/_NavBar.scss +116 -0
- package/src/styles/_NavDropdown.scss +34 -0
- package/src/styles/_OffCanvas.scss +260 -0
- package/src/styles/_OverLay.scss +56 -0
- package/src/styles/_Popout.scss +75 -0
- package/src/styles/_Spinner.scss +19 -0
- package/src/styles/_Table.scss +34 -0
- package/src/styles/_Tabs.scss +129 -0
- package/src/styles/_colors.scss +510 -0
- package/src/styles/_components.scss +40 -0
- package/src/styles/_functions.scss +134 -0
- package/src/styles/_mixins.scss +26 -0
- package/src/styles/_reset.scss +231 -0
- package/src/styles/_utilities.scss +2480 -0
- package/src/styles/_variables.scss +146 -0
- package/src/styles/forms/_FormCheck.scss +269 -0
- package/src/styles/forms/_FormControl.scss +102 -0
- package/src/styles/forms/_FormGroup.scss +21 -0
- package/src/styles/forms/_FormLabel.scss +3 -0
- package/src/styles/forms/_FormSelect.scss +164 -0
- package/src/styles/forms/_FormSlider.scss +116 -0
- package/src/styles/forms/_FormText.scss +6 -0
- package/{utils/BaseTypes.d.ts → src/utils/BaseTypes.ts} +30 -23
- package/src/utils/ContrastingColor.ts +25 -0
- package/src/utils/FileImportExport.js +50 -0
- package/src/utils/MergeClassnames.ts +5 -0
- package/src/utils/MergeRefs.ts +12 -0
- package/src/vite-env.d.ts +1 -0
- package/tsconfig-build.json +4 -0
- package/tsconfig.json +79 -0
- package/tsconfig.node.json +10 -0
- package/types/BaseTypes.d.ts +19 -0
- package/{Button → types/components/Button}/Button.types.d.ts +1 -1
- package/types/components/Button/index.d.ts +1 -0
- package/{Card → types/components/Card}/Card.types.d.ts +1 -3
- package/types/components/Card/index.d.ts +1 -0
- package/{CloseButton → types/components/CloseButton}/CloseButton.types.d.ts +1 -1
- package/types/components/CloseButton/index.d.ts +1 -0
- package/{Dropdown → types/components/Dropdown}/Dropdown.types.d.ts +10 -3
- package/types/components/Dropdown/index.d.ts +1 -0
- package/{FloatingLabel → types/components/FloatingLabel}/FloatingLabel.types.d.ts +1 -1
- package/types/components/FloatingLabel/index.d.ts +1 -0
- package/types/components/Form/Form.d.ts +17 -0
- package/types/components/Form/Form.types.d.ts +50 -0
- package/types/components/Form/index.d.ts +1 -0
- package/types/components/InputGroup/InputGroup.d.ts +6 -0
- package/types/components/InputGroup/InputGroup.types.d.ts +10 -0
- package/types/components/InputGroup/index.d.ts +1 -0
- package/{Modal → types/components/Modal}/Modal.d.ts +1 -1
- package/{Modal → types/components/Modal}/Modal.types.d.ts +2 -2
- package/types/components/Modal/index.d.ts +1 -0
- package/{Nav → types/components/Nav}/Nav.types.d.ts +1 -1
- package/types/components/Nav/index.d.ts +1 -0
- package/{NavBar → types/components/NavBar}/Navbar.d.ts +2 -1
- package/{NavBar → types/components/NavBar}/Navbar.types.d.ts +1 -2
- package/types/components/NavBar/index.d.ts +1 -0
- package/{NavDropdown → types/components/NavDropdown}/NavDropdown.d.ts +2 -2
- package/types/components/NavDropdown/index.d.ts +1 -0
- package/{Popout → types/components/Popout}/Popout.types.d.ts +1 -1
- package/types/components/Popout/index.d.ts +1 -0
- package/types/components/Spinner/index.d.ts +1 -0
- package/{Table → types/components/Table}/Table.types.d.ts +1 -1
- package/types/components/Table/index.d.ts +1 -0
- package/{Tabs → types/components/Tabs}/Tabs.types.d.ts +1 -4
- package/types/components/Tabs/index.d.ts +1 -0
- package/types/components/ToggleButton/ToggleButton.d.ts +9 -0
- package/types/components/ToggleButton/ToggleButton.types.d.ts +0 -0
- package/types/components/ToggleButton/index.d.ts +1 -0
- package/types/components/index.d.ts +16 -0
- package/types/index.d.ts +1 -0
- package/vite.config.js +57 -0
- package/vite.config.js.timestamp-1708777378490-e94428ceb2bf9.mjs +42 -0
- package/Bar/Bar.type.d.ts +0 -6
- package/Bar/index.js +0 -2
- package/Bar/index.js.map +0 -1
- package/Bar/package.json +0 -1
- package/Button/Button.js +0 -12
- package/Button/Button.js.map +0 -1
- package/Button/index.d.ts +0 -3
- package/Button/index.js +0 -7
- package/Button/index.js.map +0 -1
- package/Button/package.json +0 -1
- package/ButtonGroup/ButtonGroup.d.ts +0 -4
- package/ButtonGroup/ButtonGroup.js +0 -10
- package/ButtonGroup/ButtonGroup.js.map +0 -1
- package/ButtonGroup/ButtonGroup.types.d.ts +0 -7
- package/ButtonGroup/index.d.ts +0 -3
- package/ButtonGroup/index.js +0 -7
- package/ButtonGroup/index.js.map +0 -1
- package/ButtonGroup/package.json +0 -1
- package/Card/Card.js +0 -41
- package/Card/Card.js.map +0 -1
- package/Card/index.d.ts +0 -3
- package/Card/index.js +0 -7
- package/Card/index.js.map +0 -1
- package/Card/package.json +0 -1
- package/CloseButton/CloseButton.js +0 -11
- package/CloseButton/CloseButton.js.map +0 -1
- package/CloseButton/index.d.ts +0 -3
- package/CloseButton/index.js +0 -7
- package/CloseButton/index.js.map +0 -1
- package/CloseButton/package.json +0 -1
- package/Dropdown/Dropdown.js +0 -292
- package/Dropdown/Dropdown.js.map +0 -1
- package/Dropdown/index.d.ts +0 -4
- package/Dropdown/index.js +0 -8
- package/Dropdown/index.js.map +0 -1
- package/Dropdown/package.json +0 -1
- package/FloatingLabel/FloatingLabel.js +0 -17
- package/FloatingLabel/FloatingLabel.js.map +0 -1
- package/FloatingLabel/index.d.ts +0 -3
- package/FloatingLabel/index.js +0 -7
- package/FloatingLabel/index.js.map +0 -1
- package/FloatingLabel/package.json +0 -1
- package/Form/Form.d.ts +0 -38
- package/Form/Form.js +0 -304
- package/Form/Form.js.map +0 -1
- package/Form/Form.types.d.ts +0 -105
- package/Form/index.d.ts +0 -4
- package/Form/index.js +0 -8
- package/Form/index.js.map +0 -1
- package/Form/package.json +0 -1
- package/InputGroup/InputGroup.d.ts +0 -7
- package/InputGroup/InputGroup.js +0 -31
- package/InputGroup/InputGroup.js.map +0 -1
- package/InputGroup/InputGroup.types.d.ts +0 -16
- package/InputGroup/index.d.ts +0 -4
- package/InputGroup/index.js +0 -7
- package/InputGroup/index.js.map +0 -1
- package/InputGroup/package.json +0 -1
- package/List/List.d.ts +0 -14
- package/List/List.js +0 -76
- package/List/List.js.map +0 -1
- package/List/List.types.d.ts +0 -28
- package/List/index.d.ts +0 -3
- package/List/index.js +0 -7
- package/List/index.js.map +0 -1
- package/List/package.json +0 -1
- package/Modal/Modal.js +0 -160
- package/Modal/Modal.js.map +0 -1
- package/Modal/index.d.ts +0 -3
- package/Modal/index.js +0 -7
- package/Modal/index.js.map +0 -1
- package/Modal/package.json +0 -1
- package/Nav/Nav.js +0 -28
- package/Nav/Nav.js.map +0 -1
- package/Nav/index.d.ts +0 -4
- package/Nav/index.js +0 -7
- package/Nav/index.js.map +0 -1
- package/Nav/package.json +0 -1
- package/NavBar/Navbar.js +0 -36
- package/NavBar/Navbar.js.map +0 -1
- package/NavBar/index.d.ts +0 -4
- package/NavBar/index.js +0 -8
- package/NavBar/index.js.map +0 -1
- package/NavBar/package.json +0 -1
- package/NavDropdown/NavDropdown.js +0 -77
- package/NavDropdown/NavDropdown.js.map +0 -1
- package/NavDropdown/index.d.ts +0 -3
- package/NavDropdown/index.js +0 -7
- package/NavDropdown/index.js.map +0 -1
- package/NavDropdown/package.json +0 -1
- package/Overlay/Overlay.d.ts +0 -4
- package/Overlay/Overlay.js +0 -228
- package/Overlay/Overlay.js.map +0 -1
- package/Overlay/Overlay.types.d.ts +0 -18
- package/Overlay/index.js +0 -7
- package/Overlay/index.js.map +0 -1
- package/Overlay/package.json +0 -1
- package/Popout/Popout.js +0 -110
- package/Popout/Popout.js.map +0 -1
- package/Popout/index.d.ts +0 -3
- package/Popout/index.js +0 -7
- package/Popout/index.js.map +0 -1
- package/Popout/package.json +0 -1
- package/Spinner/Spinner.js +0 -12
- package/Spinner/Spinner.js.map +0 -1
- package/Spinner/index.d.ts +0 -3
- package/Spinner/index.js +0 -7
- package/Spinner/index.js.map +0 -1
- package/Spinner/package.json +0 -1
- package/Table/Table.js +0 -11
- package/Table/Table.js.map +0 -1
- package/Table/index.d.ts +0 -3
- package/Table/index.js +0 -7
- package/Table/index.js.map +0 -1
- package/Table/package.json +0 -1
- package/Tabs/Tabs.js +0 -98
- package/Tabs/Tabs.js.map +0 -1
- package/Tabs/index.d.ts +0 -3
- package/Tabs/index.js +0 -7
- package/Tabs/index.js.map +0 -1
- package/Tabs/package.json +0 -1
- package/ToggleButton/ToggleButton.d.ts +0 -4
- package/ToggleButton/ToggleButton.js +0 -17
- package/ToggleButton/ToggleButton.js.map +0 -1
- package/ToggleButton/ToggleButton.types.d.ts +0 -7
- package/ToggleButton/index.d.ts +0 -3
- package/ToggleButton/index.js +0 -7
- package/ToggleButton/index.js.map +0 -1
- package/ToggleButton/package.json +0 -1
- package/hooks/index.js +0 -6
- package/hooks/index.js.map +0 -1
- package/hooks/package.json +0 -1
- package/hooks/useClassname.d.ts +0 -2
- package/hooks/useClassname.js +0 -7
- package/hooks/useClassname.js.map +0 -1
- package/hooks/useDraggable.d.ts +0 -23
- package/hooks/useDraggable.js +0 -147
- package/hooks/useDraggable.js.map +0 -1
- package/hooks/useKeepElementFocused.d.ts +0 -2
- package/hooks/useKeepElementFocused.js +0 -37
- package/hooks/useKeepElementFocused.js.map +0 -1
- package/hooks/useScreenSize.d.ts +0 -5
- package/hooks/useScreenSize.js +0 -21
- package/hooks/useScreenSize.js.map +0 -1
- package/index.d.ts +0 -18
- package/index.js +0 -19
- package/index.js.map +0 -1
- package/styles/stargazerui.css.map +0 -1
- package/utils/ContrastingColor.d.ts +0 -1
- package/utils/MergeRefs.d.ts +0 -2
- package/utils/MergeRefs.js +0 -16
- package/utils/MergeRefs.js.map +0 -1
- /package/{Button → types/components/Button}/Button.d.ts +0 -0
- /package/{Card → types/components/Card}/Card.d.ts +0 -0
- /package/{CloseButton → types/components/CloseButton}/CloseButton.d.ts +0 -0
- /package/{Dropdown → types/components/Dropdown}/Dropdown.d.ts +0 -0
- /package/{FloatingLabel → types/components/FloatingLabel}/FloatingLabel.d.ts +0 -0
- /package/{Nav → types/components/Nav}/Nav.d.ts +0 -0
- /package/{NavDropdown → types/components/NavDropdown}/NavDropdown.types.d.ts +0 -0
- /package/{Popout → types/components/Popout}/Popout.d.ts +0 -0
- /package/{Spinner → types/components/Spinner}/Spinner.d.ts +0 -0
- /package/{Spinner → types/components/Spinner}/Spinner.types.d.ts +0 -0
- /package/{Table → types/components/Table}/Table.d.ts +0 -0
- /package/{Tabs → types/components/Tabs}/Tabs.d.ts +0 -0
|
@@ -1,224 +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
1
|
@media (min-width: 576px) {
|
|
223
2
|
.float-sm-start {
|
|
224
3
|
float: left !important;
|
|
@@ -2699,17 +2478,6 @@ label {
|
|
|
2699
2478
|
text-align: center !important;
|
|
2700
2479
|
}
|
|
2701
2480
|
}
|
|
2702
|
-
:root {
|
|
2703
|
-
--sg-body-bg: #212529;
|
|
2704
|
-
--sg-body-color: white;
|
|
2705
|
-
}
|
|
2706
|
-
|
|
2707
|
-
body {
|
|
2708
|
-
background-color: var(--sg-body-bg);
|
|
2709
|
-
color: var(--sg-body-color);
|
|
2710
|
-
font-size: 18px;
|
|
2711
|
-
}
|
|
2712
|
-
|
|
2713
2481
|
/* Grid variables */
|
|
2714
2482
|
/* z indices */
|
|
2715
2483
|
/* Button */
|
|
@@ -2730,10 +2498,7 @@ body {
|
|
|
2730
2498
|
}
|
|
2731
2499
|
|
|
2732
2500
|
/* Table */
|
|
2733
|
-
/* Tabs */
|
|
2734
2501
|
/* Dropdown */
|
|
2735
|
-
/* Nav */
|
|
2736
|
-
/* Overlay */
|
|
2737
2502
|
.sg-visually-hidden {
|
|
2738
2503
|
position: absolute !important;
|
|
2739
2504
|
width: 1px !important;
|
|
@@ -2747,22 +2512,12 @@ body {
|
|
|
2747
2512
|
}
|
|
2748
2513
|
|
|
2749
2514
|
.sg-card {
|
|
2750
|
-
--card-border-radius: 0rem;
|
|
2751
|
-
--border-width: -2px;
|
|
2752
|
-
--border-gradient-color: color-mix(in srgb, color-mix(in hsl, white 3%, #212529), white 3%);
|
|
2753
|
-
--border-gradient-mix-color: color-mix(in srgb, color-mix(in hsl, white 3%, #212529), white 3%);
|
|
2754
|
-
--background-gradient-color: rgb(26, 27, 29);
|
|
2755
|
-
--background-gradient-mix-color: color-mix(in srgb, color-mix(in hsl, white 3%, #212529), white 3%);
|
|
2756
|
-
--divider-color: white;
|
|
2757
2515
|
display: flex;
|
|
2758
2516
|
flex-direction: column;
|
|
2759
|
-
border:
|
|
2760
|
-
position: relative;
|
|
2761
|
-
border-radius: var(--card-border-radius);
|
|
2762
|
-
background: linear-gradient(71deg, var(--background-gradient-color), var(--background-gradient-mix-color), var(--background-gradient-color));
|
|
2763
|
-
background-clip: padding-box;
|
|
2517
|
+
border-radius: 0.375em;
|
|
2764
2518
|
}
|
|
2765
2519
|
.sg-card.sg-card-overlay {
|
|
2520
|
+
background-color: #2e3236;
|
|
2766
2521
|
color: white;
|
|
2767
2522
|
border: 1px solid white;
|
|
2768
2523
|
}
|
|
@@ -2773,197 +2528,24 @@ body {
|
|
|
2773
2528
|
.sg-card .sg-card-header {
|
|
2774
2529
|
margin-bottom: 0;
|
|
2775
2530
|
padding: 0.5em 1em;
|
|
2776
|
-
|
|
2531
|
+
background-color: #212529;
|
|
2532
|
+
border-bottom: 1px solid white;
|
|
2777
2533
|
}
|
|
2778
2534
|
.sg-card .sg-card-header:first-child {
|
|
2779
|
-
border-
|
|
2780
|
-
border-top-right-radius: var(--card-border-radius);
|
|
2781
|
-
}
|
|
2782
|
-
.sg-card .sg-card-title {
|
|
2783
|
-
margin: 0;
|
|
2535
|
+
border-radius: 0.375em 0.375em 0 0;
|
|
2784
2536
|
}
|
|
2785
2537
|
.sg-card .sg-card-footer {
|
|
2786
2538
|
padding: 0.5em 1em;
|
|
2787
|
-
|
|
2539
|
+
background-color: #212529;
|
|
2540
|
+
border-top: 1px solid white;
|
|
2788
2541
|
}
|
|
2789
2542
|
.sg-card .sg-card-footer:last-child {
|
|
2790
|
-
border-
|
|
2791
|
-
border-bottom-right-radius: var(--card-border-radius);
|
|
2543
|
+
border-radius: 0 0 0.375em 0.375em;
|
|
2792
2544
|
}
|
|
2793
2545
|
.sg-card .sg-card-text:last-child {
|
|
2794
2546
|
margin-bottom: 0;
|
|
2795
2547
|
}
|
|
2796
2548
|
|
|
2797
|
-
.sg-card::after {
|
|
2798
|
-
position: absolute;
|
|
2799
|
-
content: "";
|
|
2800
|
-
top: var(--border-width);
|
|
2801
|
-
bottom: var(--border-width);
|
|
2802
|
-
right: var(--border-width);
|
|
2803
|
-
left: var(--border-width);
|
|
2804
|
-
z-index: -1;
|
|
2805
|
-
border-radius: var(--card-border-radius);
|
|
2806
|
-
background: linear-gradient(71deg, var(--border-gradient-color), var(--border-gradient-mix-color), var(--border-gradient-color));
|
|
2807
|
-
}
|
|
2808
|
-
|
|
2809
|
-
.primary {
|
|
2810
|
-
--border-gradient-mix-color: rgb(252, 95, 95);
|
|
2811
|
-
grid-column: 2/3;
|
|
2812
|
-
grid-row: 1;
|
|
2813
|
-
}
|
|
2814
|
-
.primary.inverted {
|
|
2815
|
-
--border-gradient-color: color-mix(in srgb, rgb(252, 95, 95), black 30%);
|
|
2816
|
-
--border-gradient-mix-color: rgb(252, 95, 95);
|
|
2817
|
-
--background-gradient-color: color-mix(in srgb, rgb(252, 95, 95), black 0%);
|
|
2818
|
-
--background-gradient-mix-color: rgb(252, 95, 95);
|
|
2819
|
-
--divider-color: color-mix(in srgb, rgb(252, 95, 95), black 15%);
|
|
2820
|
-
/*
|
|
2821
|
-
> h1, h2, h3, h4, h5, h6, span, p, small {
|
|
2822
|
-
background-color: $color;
|
|
2823
|
-
box-shadow: 1px -1px 10px $color, 1px 1px 10px $color, -1px 1px 10px $color, -1px -1px 10px $color;
|
|
2824
|
-
}
|
|
2825
|
-
*/
|
|
2826
|
-
color: black;
|
|
2827
|
-
}
|
|
2828
|
-
|
|
2829
|
-
.secondary {
|
|
2830
|
-
--border-gradient-mix-color: #6c757d;
|
|
2831
|
-
grid-column: 4/5;
|
|
2832
|
-
grid-row: 1;
|
|
2833
|
-
}
|
|
2834
|
-
.secondary.inverted {
|
|
2835
|
-
--border-gradient-color: color-mix(in srgb, #6c757d, black 30%);
|
|
2836
|
-
--border-gradient-mix-color: #6c757d;
|
|
2837
|
-
--background-gradient-color: color-mix(in srgb, #6c757d, black 0%);
|
|
2838
|
-
--background-gradient-mix-color: #6c757d;
|
|
2839
|
-
--divider-color: color-mix(in srgb, #6c757d, black 15%);
|
|
2840
|
-
/*
|
|
2841
|
-
> h1, h2, h3, h4, h5, h6, span, p, small {
|
|
2842
|
-
background-color: $color;
|
|
2843
|
-
box-shadow: 1px -1px 10px $color, 1px 1px 10px $color, -1px 1px 10px $color, -1px -1px 10px $color;
|
|
2844
|
-
}
|
|
2845
|
-
*/
|
|
2846
|
-
}
|
|
2847
|
-
|
|
2848
|
-
.success {
|
|
2849
|
-
--border-gradient-mix-color: #1fad61;
|
|
2850
|
-
grid-column: 6/7;
|
|
2851
|
-
grid-row: 1;
|
|
2852
|
-
}
|
|
2853
|
-
.success.inverted {
|
|
2854
|
-
--border-gradient-color: color-mix(in srgb, #1fad61, black 30%);
|
|
2855
|
-
--border-gradient-mix-color: #1fad61;
|
|
2856
|
-
--background-gradient-color: color-mix(in srgb, #1fad61, black 0%);
|
|
2857
|
-
--background-gradient-mix-color: #1fad61;
|
|
2858
|
-
--divider-color: color-mix(in srgb, #1fad61, black 15%);
|
|
2859
|
-
/*
|
|
2860
|
-
> h1, h2, h3, h4, h5, h6, span, p, small {
|
|
2861
|
-
background-color: $color;
|
|
2862
|
-
box-shadow: 1px -1px 10px $color, 1px 1px 10px $color, -1px 1px 10px $color, -1px -1px 10px $color;
|
|
2863
|
-
}
|
|
2864
|
-
*/
|
|
2865
|
-
color: black;
|
|
2866
|
-
}
|
|
2867
|
-
|
|
2868
|
-
.info {
|
|
2869
|
-
--border-gradient-mix-color: #9184bd;
|
|
2870
|
-
grid-column: 8/9;
|
|
2871
|
-
grid-row: 1;
|
|
2872
|
-
}
|
|
2873
|
-
.info.inverted {
|
|
2874
|
-
--border-gradient-color: color-mix(in srgb, #9184bd, black 30%);
|
|
2875
|
-
--border-gradient-mix-color: #9184bd;
|
|
2876
|
-
--background-gradient-color: color-mix(in srgb, #9184bd, black 0%);
|
|
2877
|
-
--background-gradient-mix-color: #9184bd;
|
|
2878
|
-
--divider-color: color-mix(in srgb, #9184bd, black 15%);
|
|
2879
|
-
/*
|
|
2880
|
-
> h1, h2, h3, h4, h5, h6, span, p, small {
|
|
2881
|
-
background-color: $color;
|
|
2882
|
-
box-shadow: 1px -1px 10px $color, 1px 1px 10px $color, -1px 1px 10px $color, -1px -1px 10px $color;
|
|
2883
|
-
}
|
|
2884
|
-
*/
|
|
2885
|
-
color: black;
|
|
2886
|
-
}
|
|
2887
|
-
|
|
2888
|
-
.warning {
|
|
2889
|
-
--border-gradient-mix-color: hsl(48, 75%, 52%);
|
|
2890
|
-
grid-column: 2/3;
|
|
2891
|
-
grid-row: 2;
|
|
2892
|
-
}
|
|
2893
|
-
.warning.inverted {
|
|
2894
|
-
--border-gradient-color: color-mix(in srgb, hsl(48, 75%, 52%), black 30%);
|
|
2895
|
-
--border-gradient-mix-color: hsl(48, 75%, 52%);
|
|
2896
|
-
--background-gradient-color: color-mix(in srgb, hsl(48, 75%, 52%), black 0%);
|
|
2897
|
-
--background-gradient-mix-color: hsl(48, 75%, 52%);
|
|
2898
|
-
--divider-color: color-mix(in srgb, hsl(48, 75%, 52%), black 15%);
|
|
2899
|
-
/*
|
|
2900
|
-
> h1, h2, h3, h4, h5, h6, span, p, small {
|
|
2901
|
-
background-color: $color;
|
|
2902
|
-
box-shadow: 1px -1px 10px $color, 1px 1px 10px $color, -1px 1px 10px $color, -1px -1px 10px $color;
|
|
2903
|
-
}
|
|
2904
|
-
*/
|
|
2905
|
-
color: black;
|
|
2906
|
-
}
|
|
2907
|
-
|
|
2908
|
-
.danger {
|
|
2909
|
-
--border-gradient-mix-color: #4995d5;
|
|
2910
|
-
grid-column: 4/5;
|
|
2911
|
-
grid-row: 2;
|
|
2912
|
-
}
|
|
2913
|
-
.danger.inverted {
|
|
2914
|
-
--border-gradient-color: color-mix(in srgb, #4995d5, black 30%);
|
|
2915
|
-
--border-gradient-mix-color: #4995d5;
|
|
2916
|
-
--background-gradient-color: color-mix(in srgb, #4995d5, black 0%);
|
|
2917
|
-
--background-gradient-mix-color: #4995d5;
|
|
2918
|
-
--divider-color: color-mix(in srgb, #4995d5, black 15%);
|
|
2919
|
-
/*
|
|
2920
|
-
> h1, h2, h3, h4, h5, h6, span, p, small {
|
|
2921
|
-
background-color: $color;
|
|
2922
|
-
box-shadow: 1px -1px 10px $color, 1px 1px 10px $color, -1px 1px 10px $color, -1px -1px 10px $color;
|
|
2923
|
-
}
|
|
2924
|
-
*/
|
|
2925
|
-
color: black;
|
|
2926
|
-
}
|
|
2927
|
-
|
|
2928
|
-
.light {
|
|
2929
|
-
--border-gradient-mix-color: #f8f9fa;
|
|
2930
|
-
grid-column: 6/7;
|
|
2931
|
-
grid-row: 2;
|
|
2932
|
-
}
|
|
2933
|
-
.light.inverted {
|
|
2934
|
-
--border-gradient-color: color-mix(in srgb, #f8f9fa, black 30%);
|
|
2935
|
-
--border-gradient-mix-color: #f8f9fa;
|
|
2936
|
-
--background-gradient-color: color-mix(in srgb, #f8f9fa, black 0%);
|
|
2937
|
-
--background-gradient-mix-color: #f8f9fa;
|
|
2938
|
-
--divider-color: color-mix(in srgb, #f8f9fa, black 15%);
|
|
2939
|
-
/*
|
|
2940
|
-
> h1, h2, h3, h4, h5, h6, span, p, small {
|
|
2941
|
-
background-color: $color;
|
|
2942
|
-
box-shadow: 1px -1px 10px $color, 1px 1px 10px $color, -1px 1px 10px $color, -1px -1px 10px $color;
|
|
2943
|
-
}
|
|
2944
|
-
*/
|
|
2945
|
-
color: black;
|
|
2946
|
-
}
|
|
2947
|
-
|
|
2948
|
-
.dark {
|
|
2949
|
-
--border-gradient-mix-color: #212529;
|
|
2950
|
-
grid-column: 8/9;
|
|
2951
|
-
grid-row: 2;
|
|
2952
|
-
}
|
|
2953
|
-
.dark.inverted {
|
|
2954
|
-
--border-gradient-color: color-mix(in srgb, #212529, black 30%);
|
|
2955
|
-
--border-gradient-mix-color: #212529;
|
|
2956
|
-
--background-gradient-color: color-mix(in srgb, #212529, black 0%);
|
|
2957
|
-
--background-gradient-mix-color: #212529;
|
|
2958
|
-
--divider-color: color-mix(in srgb, #212529, black 15%);
|
|
2959
|
-
/*
|
|
2960
|
-
> h1, h2, h3, h4, h5, h6, span, p, small {
|
|
2961
|
-
background-color: $color;
|
|
2962
|
-
box-shadow: 1px -1px 10px $color, 1px 1px 10px $color, -1px 1px 10px $color, -1px -1px 10px $color;
|
|
2963
|
-
}
|
|
2964
|
-
*/
|
|
2965
|
-
}
|
|
2966
|
-
|
|
2967
2549
|
.sg-button-close {
|
|
2968
2550
|
box-sizing: content-box;
|
|
2969
2551
|
width: 1rem;
|
|
@@ -3019,22 +2601,15 @@ body {
|
|
|
3019
2601
|
--focus-visible-border-color: white;
|
|
3020
2602
|
--focus-visible-outline-color: #0d6efd;
|
|
3021
2603
|
--focus-visible-boxshadow-color: white;
|
|
2604
|
+
border-radius: 0.375rem;
|
|
3022
2605
|
min-width: fit-content;
|
|
3023
2606
|
display: inline-block;
|
|
3024
2607
|
text-align: center;
|
|
3025
2608
|
vertical-align: middle;
|
|
3026
2609
|
padding: 0.375rem 0.75rem;
|
|
3027
2610
|
background-color: var(--bg-color);
|
|
3028
|
-
border:
|
|
2611
|
+
border: 1px solid var(--border-color);
|
|
3029
2612
|
color: var(--text-color);
|
|
3030
|
-
/*
|
|
3031
|
-
&:focus-visible {
|
|
3032
|
-
box-shadow: 0 0 0 3px var(--focus-visible-boxshadow-color);
|
|
3033
|
-
border: 1px solid var(--focus-visible-border-color);
|
|
3034
|
-
outline: 2px solid var(--focus-visible-outline-color);
|
|
3035
|
-
z-index: 5;
|
|
3036
|
-
}
|
|
3037
|
-
*/
|
|
3038
2613
|
}
|
|
3039
2614
|
.sg-button:hover, .sg-button:focus {
|
|
3040
2615
|
background-color: var(--bg-hover-color);
|
|
@@ -3043,20 +2618,25 @@ body {
|
|
|
3043
2618
|
.sg-button:active {
|
|
3044
2619
|
background-color: var(--bg-active-color);
|
|
3045
2620
|
border-color: var(--border-active-color);
|
|
3046
|
-
|
|
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;
|
|
3047
2627
|
}
|
|
3048
2628
|
|
|
3049
2629
|
.sg-button-primary {
|
|
3050
|
-
--text-color:
|
|
3051
|
-
--bg-color:
|
|
3052
|
-
--border-color:
|
|
3053
|
-
--bg-hover-color: #
|
|
3054
|
-
--border-hover-color: #
|
|
3055
|
-
--bg-active-color: #
|
|
3056
|
-
--border-active-color: #
|
|
3057
|
-
--focus-visible-border-color:
|
|
3058
|
-
--focus-visible-outline-color:
|
|
3059
|
-
--focus-visible-boxshadow-color:
|
|
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;
|
|
3060
2640
|
}
|
|
3061
2641
|
|
|
3062
2642
|
.sg-button-group > .btn-primary {
|
|
@@ -3083,16 +2663,16 @@ body {
|
|
|
3083
2663
|
}
|
|
3084
2664
|
|
|
3085
2665
|
.sg-button-success {
|
|
3086
|
-
--text-color:
|
|
3087
|
-
--bg-color: #
|
|
3088
|
-
--border-color: #
|
|
3089
|
-
--bg-hover-color: #
|
|
3090
|
-
--border-hover-color: #
|
|
3091
|
-
--bg-active-color: #
|
|
3092
|
-
--border-active-color: #
|
|
3093
|
-
--focus-visible-border-color:
|
|
3094
|
-
--focus-visible-outline-color: #
|
|
3095
|
-
--focus-visible-boxshadow-color:
|
|
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;
|
|
3096
2676
|
}
|
|
3097
2677
|
|
|
3098
2678
|
.sg-button-group > .btn-success {
|
|
@@ -3102,14 +2682,14 @@ body {
|
|
|
3102
2682
|
|
|
3103
2683
|
.sg-button-info {
|
|
3104
2684
|
--text-color: black;
|
|
3105
|
-
--bg-color: #
|
|
3106
|
-
--border-color: #
|
|
3107
|
-
--bg-hover-color: #
|
|
3108
|
-
--border-hover-color: #
|
|
3109
|
-
--bg-active-color: #
|
|
3110
|
-
--border-active-color: #
|
|
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;
|
|
3111
2691
|
--focus-visible-border-color: black;
|
|
3112
|
-
--focus-visible-outline-color: #
|
|
2692
|
+
--focus-visible-outline-color: #0dcaf0;
|
|
3113
2693
|
--focus-visible-boxshadow-color: black;
|
|
3114
2694
|
}
|
|
3115
2695
|
|
|
@@ -3120,14 +2700,14 @@ body {
|
|
|
3120
2700
|
|
|
3121
2701
|
.sg-button-warning {
|
|
3122
2702
|
--text-color: black;
|
|
3123
|
-
--bg-color:
|
|
3124
|
-
--border-color:
|
|
3125
|
-
--bg-hover-color: #
|
|
3126
|
-
--border-hover-color: #
|
|
3127
|
-
--bg-active-color: #
|
|
3128
|
-
--border-active-color: #
|
|
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;
|
|
3129
2709
|
--focus-visible-border-color: black;
|
|
3130
|
-
--focus-visible-outline-color:
|
|
2710
|
+
--focus-visible-outline-color: #ffc107;
|
|
3131
2711
|
--focus-visible-boxshadow-color: black;
|
|
3132
2712
|
}
|
|
3133
2713
|
|
|
@@ -3137,16 +2717,16 @@ body {
|
|
|
3137
2717
|
}
|
|
3138
2718
|
|
|
3139
2719
|
.sg-button-danger {
|
|
3140
|
-
--text-color:
|
|
3141
|
-
--bg-color: #
|
|
3142
|
-
--border-color: #
|
|
3143
|
-
--bg-hover-color: #
|
|
3144
|
-
--border-hover-color: #
|
|
3145
|
-
--bg-active-color: #
|
|
3146
|
-
--border-active-color: #
|
|
3147
|
-
--focus-visible-border-color:
|
|
3148
|
-
--focus-visible-outline-color: #
|
|
3149
|
-
--focus-visible-boxshadow-color:
|
|
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;
|
|
3150
2730
|
}
|
|
3151
2731
|
|
|
3152
2732
|
.sg-button-group > .btn-danger {
|
|
@@ -3246,23 +2826,25 @@ body {
|
|
|
3246
2826
|
position: relative;
|
|
3247
2827
|
}
|
|
3248
2828
|
|
|
3249
|
-
.sg-dropdown {
|
|
3250
|
-
--sg-dropdown-list-bg: ${$sg-dropdown-list-bg} ;
|
|
3251
|
-
}
|
|
3252
|
-
|
|
3253
2829
|
.sg-dropdown-list {
|
|
3254
2830
|
position: absolute;
|
|
3255
2831
|
z-index: 1000;
|
|
3256
2832
|
display: none;
|
|
3257
2833
|
min-width: 10rem;
|
|
3258
|
-
padding: 0;
|
|
2834
|
+
padding: 0.5rem 0rem;
|
|
3259
2835
|
margin: 0;
|
|
3260
2836
|
text-align: left;
|
|
3261
2837
|
list-style: none;
|
|
3262
|
-
background-color: #
|
|
2838
|
+
background-color: #343a40;
|
|
3263
2839
|
color: white;
|
|
3264
2840
|
background-clip: padding-box;
|
|
3265
|
-
border:
|
|
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;
|
|
3266
2848
|
}
|
|
3267
2849
|
|
|
3268
2850
|
.sg-dropdown-list.show {
|
|
@@ -3282,26 +2864,6 @@ body {
|
|
|
3282
2864
|
border-bottom: 0;
|
|
3283
2865
|
border-left: 0.3em solid transparent;
|
|
3284
2866
|
}
|
|
3285
|
-
.sg-dropdown-toggle[data-drop=up]::after {
|
|
3286
|
-
transform: rotate(180deg);
|
|
3287
|
-
}
|
|
3288
|
-
.sg-dropdown-toggle[data-drop=right]::after {
|
|
3289
|
-
transform: rotate(270deg);
|
|
3290
|
-
}
|
|
3291
|
-
.sg-dropdown-toggle[data-drop=left]::after {
|
|
3292
|
-
display: none;
|
|
3293
|
-
}
|
|
3294
|
-
.sg-dropdown-toggle[data-drop=left]::before {
|
|
3295
|
-
display: inline-block;
|
|
3296
|
-
margin-right: 0.255em;
|
|
3297
|
-
vertical-align: 0.255em;
|
|
3298
|
-
content: "";
|
|
3299
|
-
border-top: 0.3em solid;
|
|
3300
|
-
border-right: 0.3em solid transparent;
|
|
3301
|
-
border-bottom: 0;
|
|
3302
|
-
border-left: 0.3em solid transparent;
|
|
3303
|
-
transform: rotate(90deg);
|
|
3304
|
-
}
|
|
3305
2867
|
|
|
3306
2868
|
.sg-dropdown-divider {
|
|
3307
2869
|
--line-color: rgba(0, 0, 0, 0.175);
|
|
@@ -3321,7 +2883,10 @@ body {
|
|
|
3321
2883
|
white-space: nowrap;
|
|
3322
2884
|
background-color: transparent;
|
|
3323
2885
|
color: inherit;
|
|
3324
|
-
border:
|
|
2886
|
+
border: 1px solid transparent;
|
|
2887
|
+
}
|
|
2888
|
+
.sg-dropdown-item:hover {
|
|
2889
|
+
background-color: #2c3136;
|
|
3325
2890
|
}
|
|
3326
2891
|
.sg-dropdown-item.active, .sg-dropdown-item:active {
|
|
3327
2892
|
background-color: #2a2e33;
|
|
@@ -3331,43 +2896,42 @@ body {
|
|
|
3331
2896
|
opacity: 0.5;
|
|
3332
2897
|
}
|
|
3333
2898
|
.sg-dropdown-item.sg-dropdown-item-visual-focus {
|
|
3334
|
-
|
|
3335
|
-
background-color: $sg-dropdown-item-hover-bg;
|
|
2899
|
+
background-color: #2c3136;
|
|
3336
2900
|
border-top: 1px solid white;
|
|
3337
2901
|
border-bottom: 1px solid white;
|
|
3338
|
-
*/
|
|
3339
|
-
background-color: color-mix(in oklab, rgb(252, 95, 95), transparent 50%);
|
|
3340
|
-
border: 2px outset color-mix(in oklab, rgb(252, 95, 95), currentColor 20%);
|
|
3341
2902
|
}
|
|
3342
2903
|
|
|
3343
2904
|
.sg-form-floating {
|
|
3344
2905
|
position: relative;
|
|
3345
|
-
--sg-form-floating-height: calc(
|
|
2906
|
+
--sg-form-floating-height: calc(3.5rem + 2px);
|
|
3346
2907
|
}
|
|
3347
|
-
.sg-form-floating > .sg-form-control, .sg-form-floating > .sg-form-control-plaintext, .sg-form-floating > .sg-form-select
|
|
2908
|
+
.sg-form-floating > .sg-form-control, .sg-form-floating > .sg-form-control-plaintext, .sg-form-floating > .sg-form-select {
|
|
3348
2909
|
height: var(--sg-form-floating-height);
|
|
3349
|
-
padding-inline: 1.25rem;
|
|
3350
2910
|
}
|
|
3351
|
-
.sg-form-floating > .sg-form-control
|
|
2911
|
+
.sg-form-floating > .sg-form-control, .sg-form-floating > .sg-form-control-plaintext {
|
|
2912
|
+
padding-inline: 1rem;
|
|
2913
|
+
}
|
|
2914
|
+
.sg-form-floating > .sg-form-control::placeholder, .sg-form-floating > .sg-form-control-plaintext::placeholder {
|
|
3352
2915
|
color: transparent;
|
|
3353
2916
|
}
|
|
3354
|
-
.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)
|
|
3355
|
-
padding-top: 1.
|
|
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;
|
|
3356
2919
|
}
|
|
3357
|
-
.sg-form-floating > .sg-form-control:-webkit-autofill, .sg-form-floating > .sg-form-control-plaintext:-webkit-autofill
|
|
3358
|
-
padding-top: 1.
|
|
2920
|
+
.sg-form-floating > .sg-form-control:-webkit-autofill, .sg-form-floating > .sg-form-control-plaintext:-webkit-autofill {
|
|
2921
|
+
padding-top: 1.5rem;
|
|
3359
2922
|
}
|
|
3360
2923
|
.sg-form-floating > .sg-form-floating-label {
|
|
3361
2924
|
position: absolute;
|
|
3362
2925
|
top: 0;
|
|
3363
2926
|
left: 0;
|
|
3364
|
-
color:
|
|
2927
|
+
color: #212529;
|
|
3365
2928
|
width: 100%;
|
|
3366
2929
|
height: 100%;
|
|
3367
2930
|
padding-inline: 1rem;
|
|
3368
|
-
padding-block:
|
|
2931
|
+
padding-block: 1rem;
|
|
2932
|
+
border-radius: 50%;
|
|
3369
2933
|
pointer-events: none;
|
|
3370
|
-
transition:
|
|
2934
|
+
transition: 0.1s ease-in-out;
|
|
3371
2935
|
transform-origin: 0 0;
|
|
3372
2936
|
z-index: 5;
|
|
3373
2937
|
text-overflow: ellipsis;
|
|
@@ -3380,33 +2944,28 @@ body {
|
|
|
3380
2944
|
.sg-form-floating > .sg-form-control:focus ~ .sg-form-floating-label,
|
|
3381
2945
|
.sg-form-floating > .sg-form-control:not(:placeholder-shown) ~ .sg-form-floating-label,
|
|
3382
2946
|
.sg-form-floating > .sg-form-control-plaintext ~ .sg-form-floating-label,
|
|
3383
|
-
.sg-form-floating > .sg-form-select ~ .sg-form-floating-label
|
|
3384
|
-
|
|
3385
|
-
font-size: 0.75rem;
|
|
3386
|
-
height: fit-content;
|
|
3387
|
-
padding: 0.5rem 0.5rem;
|
|
2947
|
+
.sg-form-floating > .sg-form-select ~ .sg-form-floating-label {
|
|
2948
|
+
padding: 0.5rem 0.75rem;
|
|
3388
2949
|
transform: translate(0, -0.25rem);
|
|
3389
2950
|
opacity: 0.75;
|
|
3390
2951
|
}
|
|
3391
2952
|
|
|
3392
2953
|
.sg-form-check {
|
|
3393
|
-
--input-background-color: rgb(26, 27, 29);
|
|
3394
|
-
--input-border-color: color-mix(in oklab, rgb(26, 27, 29), white 25%);
|
|
3395
|
-
--input-border-color-focus: rgb(252, 95, 95);
|
|
3396
|
-
--input-border-color-invalid: hsl(48, 75%, 52%);
|
|
3397
2954
|
display: block;
|
|
3398
2955
|
min-height: 1.4em;
|
|
3399
|
-
padding-
|
|
2956
|
+
padding-left: 1.4em;
|
|
2957
|
+
margin-bottom: 0.125em;
|
|
3400
2958
|
}
|
|
3401
2959
|
.sg-form-check .sg-form-check-input {
|
|
3402
2960
|
float: left;
|
|
2961
|
+
margin-left: -1.4em;
|
|
3403
2962
|
}
|
|
3404
2963
|
|
|
3405
2964
|
.sg-form-check-reverse {
|
|
3406
2965
|
display: block;
|
|
3407
2966
|
min-height: 1.4em;
|
|
3408
2967
|
padding-right: 1.4em;
|
|
3409
|
-
|
|
2968
|
+
margin-bottom: 0.125em;
|
|
3410
2969
|
text-align: right;
|
|
3411
2970
|
}
|
|
3412
2971
|
.sg-form-check-reverse .sg-form-check-input {
|
|
@@ -3415,69 +2974,51 @@ body {
|
|
|
3415
2974
|
margin-left: 0;
|
|
3416
2975
|
}
|
|
3417
2976
|
|
|
3418
|
-
/*
|
|
3419
|
-
@media (prefers-color-scheme: dark) {
|
|
3420
|
-
.sg-form-check {
|
|
3421
|
-
--input-background-color: #ffffff;
|
|
3422
|
-
--input-border-color: color-mix(in oklab, white, rgb(26, 27, 29) 25%);
|
|
3423
|
-
--input-border-color-focus: color-mix(in oklab, rgb(252, 95, 95), black 25%);
|
|
3424
|
-
--input-border-color-invalid: color-mix(in oklab, hsl(48, 75%, 52%), black 25%);
|
|
3425
|
-
}
|
|
3426
|
-
|
|
3427
|
-
}
|
|
3428
|
-
*/
|
|
3429
2977
|
.sg-form-check-input {
|
|
3430
|
-
|
|
3431
|
-
|
|
3432
|
-
|
|
3433
|
-
|
|
2978
|
+
width: 1em;
|
|
2979
|
+
height: 1em;
|
|
2980
|
+
margin-top: 0.2em;
|
|
2981
|
+
vertical-align: top;
|
|
2982
|
+
background-color: white;
|
|
3434
2983
|
background-repeat: no-repeat;
|
|
3435
2984
|
background-position: center;
|
|
3436
2985
|
background-size: contain;
|
|
2986
|
+
border: 1px;
|
|
3437
2987
|
appearance: none;
|
|
3438
2988
|
print-color-adjust: exact;
|
|
3439
|
-
border: 2px outset var(--input-border-color);
|
|
3440
2989
|
}
|
|
3441
2990
|
.sg-form-check-input[type=checkbox] {
|
|
3442
|
-
border-radius: 0;
|
|
3443
|
-
background-clip: padding-box;
|
|
3444
|
-
}
|
|
3445
|
-
.sg-form-check-input[type=checkbox]:indeterminate {
|
|
3446
|
-
background-color: var(--input-border-color-focus);
|
|
3447
|
-
border-color: var(--input-border-color-focus);
|
|
3448
|
-
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;
|
|
3449
2992
|
}
|
|
3450
2993
|
.sg-form-check-input[type=radio] {
|
|
3451
2994
|
border-radius: 50%;
|
|
3452
2995
|
}
|
|
3453
|
-
.sg-form-check-input[type=color] {
|
|
3454
|
-
width: 3em;
|
|
3455
|
-
height: calc(2.15em + 4px);
|
|
3456
|
-
padding: 0.375em;
|
|
3457
|
-
}
|
|
3458
|
-
.sg-form-check-input[type=color]:not(:disabled):not([readonly]) {
|
|
3459
|
-
cursor: pointer;
|
|
3460
|
-
}
|
|
3461
|
-
.sg-form-check-input[type=color]::-moz-color-swatch {
|
|
3462
|
-
border: 0 !important;
|
|
3463
|
-
border-radius: 0;
|
|
3464
|
-
}
|
|
3465
|
-
.sg-form-check-input[type=color]::-webkit-color-swatch {
|
|
3466
|
-
border-radius: 0;
|
|
3467
|
-
}
|
|
3468
2996
|
.sg-form-check-input:active {
|
|
3469
2997
|
filter: brightness(90%);
|
|
3470
2998
|
}
|
|
3471
2999
|
.sg-form-check-input:focus-visible {
|
|
3472
|
-
|
|
3473
|
-
outline:
|
|
3474
|
-
|
|
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;
|
|
3475
3008
|
}
|
|
3476
3009
|
.sg-form-check-input:checked[type=checkbox] {
|
|
3477
|
-
background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='
|
|
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>");
|
|
3478
3011
|
}
|
|
3479
3012
|
.sg-form-check-input:checked[type=radio] {
|
|
3480
|
-
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='
|
|
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>");
|
|
3481
3022
|
}
|
|
3482
3023
|
.sg-form-check-input:disabled {
|
|
3483
3024
|
pointer-events: none;
|
|
@@ -3488,103 +3029,39 @@ body {
|
|
|
3488
3029
|
cursor: default;
|
|
3489
3030
|
opacity: 0.5;
|
|
3490
3031
|
}
|
|
3491
|
-
.sg-form-check-input:user-invalid, .sg-form-check-input.invalid {
|
|
3492
|
-
box-shadow: 0 0 4px 2px var(--input-border-color-invalid);
|
|
3493
|
-
}
|
|
3494
3032
|
|
|
3495
|
-
.sg-form-
|
|
3496
|
-
|
|
3497
|
-
grid-template-columns: auto 1fr;
|
|
3498
|
-
align-items: center;
|
|
3033
|
+
.sg-form-switch {
|
|
3034
|
+
padding-left: 2.5em;
|
|
3499
3035
|
}
|
|
3500
|
-
|
|
3501
3036
|
.sg-form-switch .sg-form-check-input {
|
|
3502
3037
|
width: 2em;
|
|
3503
|
-
margin-
|
|
3504
|
-
background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='
|
|
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>");
|
|
3505
3040
|
background-position: left center;
|
|
3506
3041
|
border-radius: 2em;
|
|
3507
3042
|
transition: background-position 0.15s ease-in-out;
|
|
3508
3043
|
}
|
|
3509
3044
|
.sg-form-switch .sg-form-check-input:focus-visible {
|
|
3510
|
-
|
|
3511
|
-
outline:
|
|
3512
|
-
|
|
3045
|
+
box-shadow: 0 0 0 3px white;
|
|
3046
|
+
outline: 2px solid #0d6efd;
|
|
3047
|
+
z-index: 5;
|
|
3513
3048
|
}
|
|
3514
3049
|
.sg-form-switch .sg-form-check-input:checked {
|
|
3515
3050
|
background-position: right center;
|
|
3516
|
-
background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='
|
|
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>");
|
|
3517
3052
|
}
|
|
3518
3053
|
|
|
3519
|
-
.sg-form-
|
|
3520
|
-
position: relative;
|
|
3521
|
-
padding: 2px;
|
|
3522
|
-
width: fit-content;
|
|
3523
|
-
height: fit-content;
|
|
3524
|
-
margin-right: 1ch;
|
|
3525
|
-
overflow: hidden;
|
|
3526
|
-
--border-opacity: 0;
|
|
3527
|
-
box-shadow: 50% 50% 0 white;
|
|
3528
|
-
}
|
|
3529
|
-
.sg-form-check-border:focus-within {
|
|
3530
|
-
--border-opacity: 1;
|
|
3531
|
-
}
|
|
3532
|
-
.sg-form-check-border::before {
|
|
3533
|
-
content: "";
|
|
3534
|
-
opacity: var(--border-opacity);
|
|
3535
|
-
display: block;
|
|
3536
|
-
position: absolute;
|
|
3537
|
-
top: 25%;
|
|
3538
|
-
left: -25%;
|
|
3539
|
-
width: 150%;
|
|
3540
|
-
height: 50%;
|
|
3541
|
-
background-image: conic-gradient(from 0deg, white, white 50%);
|
|
3542
|
-
z-index: -2;
|
|
3543
|
-
animation: spin 3s linear;
|
|
3544
|
-
animation-direction: forwards;
|
|
3545
|
-
animation-iteration-count: infinite;
|
|
3546
|
-
}
|
|
3547
|
-
.sg-form-check-border::after {
|
|
3548
|
-
content: "";
|
|
3549
|
-
opacity: var(--border-opacity);
|
|
3550
|
-
display: block;
|
|
3551
|
-
position: absolute;
|
|
3552
|
-
top: -3px;
|
|
3553
|
-
left: -3px;
|
|
3554
|
-
width: calc(4px + 100%);
|
|
3555
|
-
height: calc(4px + 100%);
|
|
3556
|
-
background-color: transparent;
|
|
3557
|
-
clip-path: rect(-2px 100% 100% -2px);
|
|
3558
|
-
z-index: -1;
|
|
3559
|
-
}
|
|
3560
|
-
@keyframes spin {
|
|
3561
|
-
0% {
|
|
3562
|
-
transform: rotate(-45deg);
|
|
3563
|
-
}
|
|
3564
|
-
50% {
|
|
3565
|
-
transform: rotate(45deg);
|
|
3566
|
-
}
|
|
3567
|
-
100% {
|
|
3568
|
-
transform: rotate(-45deg);
|
|
3569
|
-
}
|
|
3570
|
-
}
|
|
3571
|
-
.sg-form-control {
|
|
3572
|
-
--input-text-color: white;
|
|
3573
|
-
--input-background-color: rgb(26, 27, 29);
|
|
3574
|
-
--input-border-color: color-mix(in oklab, rgb(26, 27, 29), white 25%);
|
|
3575
|
-
--input-border-color-focus: rgb(252, 95, 95);
|
|
3576
|
-
--input-border-color-invalid: hsl(48, 75%, 52%);
|
|
3577
|
-
--input-disabled-color: #e9ecef;
|
|
3054
|
+
.sg-form-control {
|
|
3578
3055
|
position: relative;
|
|
3579
3056
|
display: block;
|
|
3580
3057
|
width: 100%;
|
|
3581
|
-
min-width: 5rem;
|
|
3582
3058
|
padding: 0.375em 0.5em;
|
|
3583
|
-
color:
|
|
3584
|
-
background-color:
|
|
3585
|
-
|
|
3586
|
-
border
|
|
3587
|
-
|
|
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;
|
|
3588
3065
|
transition: border-color 0.15s ease-in-out;
|
|
3589
3066
|
}
|
|
3590
3067
|
.sg-form-control[type=file] {
|
|
@@ -3594,1145 +3071,125 @@ body {
|
|
|
3594
3071
|
cursor: pointer;
|
|
3595
3072
|
}
|
|
3596
3073
|
.sg-form-control:focus-visible {
|
|
3597
|
-
|
|
3598
|
-
outline:
|
|
3599
|
-
|
|
3074
|
+
box-shadow: 0 0 0 3px white;
|
|
3075
|
+
outline: 2px solid #0d6efd;
|
|
3076
|
+
z-index: 5;
|
|
3600
3077
|
}
|
|
3601
3078
|
.sg-form-control::-webkit-date-and-time-value {
|
|
3602
3079
|
height: 1.4em;
|
|
3603
3080
|
}
|
|
3604
3081
|
.sg-form-control::placeholder {
|
|
3605
|
-
color:
|
|
3082
|
+
color: #6c757d;
|
|
3606
3083
|
opacity: 1;
|
|
3607
3084
|
}
|
|
3608
3085
|
.sg-form-control:disabled {
|
|
3609
|
-
background-color:
|
|
3086
|
+
background-color: #e9ecef;
|
|
3610
3087
|
opacity: 1;
|
|
3611
3088
|
}
|
|
3612
3089
|
.sg-form-control::file-selector-button {
|
|
3613
|
-
padding: 0.375em 0.5em;
|
|
3614
|
-
margin: -0.375em -0.5em;
|
|
3615
|
-
margin-inline-end: 0.375em;
|
|
3616
|
-
pointer-events: none;
|
|
3617
|
-
border-color: inherit;
|
|
3618
|
-
border-style: solid;
|
|
3619
|
-
border-width: 0;
|
|
3620
|
-
border-inline-end-width:
|
|
3621
|
-
border-radius: 0;
|
|
3622
|
-
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
|
|
3623
|
-
}
|
|
3624
|
-
.sg-form-control:hover:not(:disabled):not([readonly])::file-selector-button {
|
|
3625
|
-
background-color:
|
|
3626
|
-
}
|
|
3627
|
-
.sg-form-control:user-invalid, .sg-form-control.invalid {
|
|
3628
|
-
box-shadow: 0 0 4px 2px var(--input-border-color-invalid);
|
|
3629
|
-
}
|
|
3630
|
-
|
|
3631
|
-
.sg-form-control-plaintext {
|
|
3632
|
-
display: block;
|
|
3633
|
-
width: 100%;
|
|
3634
|
-
padding: 0.375em 0;
|
|
3635
|
-
margin-bottom: 0;
|
|
3636
|
-
color: var(--input-text-color);
|
|
3637
|
-
background-color: transparent;
|
|
3638
|
-
border: solid transparent;
|
|
3639
|
-
border-width: 2px 0;
|
|
3640
|
-
}
|
|
3641
|
-
|
|
3642
|
-
textarea.sg-form-control {
|
|
3643
|
-
min-height: calc(2.15em + 4px);
|
|
3644
|
-
margin: 0;
|
|
3645
|
-
}
|
|
3646
|
-
|
|
3647
|
-
.sg-form-group {
|
|
3648
|
-
padding-bottom: 0.5rem;
|
|
3649
|
-
display: flex;
|
|
3650
|
-
flex-direction: column;
|
|
3651
|
-
}
|
|
3652
|
-
.sg-form-group label {
|
|
3653
|
-
margin-bottom: 0.5rem;
|
|
3654
|
-
}
|
|
3655
|
-
.sg-form-group.sg-form-group-vertical {
|
|
3656
|
-
flex-direction: row;
|
|
3657
|
-
align-items: center;
|
|
3658
|
-
}
|
|
3659
|
-
.sg-form-group.sg-form-group-vertical label {
|
|
3660
|
-
min-width: max-content;
|
|
3661
|
-
margin-right: 0.5rem;
|
|
3662
|
-
margin-bottom: 0;
|
|
3663
|
-
}
|
|
3664
|
-
|
|
3665
|
-
.sg-form-label {
|
|
3666
|
-
margin-bottom: 0.5em;
|
|
3667
|
-
}
|
|
3668
|
-
|
|
3669
|
-
.sg-form-slider {
|
|
3670
|
-
--slider-height: 1.75rem;
|
|
3671
|
-
--slider-filled-color: rgb(252, 95, 95);
|
|
3672
|
-
--slider-filled-border-color: color-mix(in oklab, rgb(252, 95, 95), black 20%);
|
|
3673
|
-
--slider-empty-color: rgb(26, 27, 29);
|
|
3674
|
-
--slider-empty-border-color: color-mix(in oklab, color-mix(in oklab, rgb(26, 27, 29), white 25%), black 15%);
|
|
3675
|
-
--padding-block-fraction: 1/3;
|
|
3676
|
-
--slider-thumb-width: 1.5rem;
|
|
3677
|
-
--slider-thumb-height: 0.5rem;
|
|
3678
|
-
--slider-thumb-border-color: color-mix(in oklab, rgb(26, 27, 29), white 25%);
|
|
3679
|
-
--filled: 40%;
|
|
3680
|
-
display: grid;
|
|
3681
|
-
grid-template-columns: var(--filled) auto calc(100% - var(--filled));
|
|
3682
|
-
position: relative;
|
|
3683
|
-
height: var(--slider-height);
|
|
3684
|
-
padding-block: calc(var(--slider-height) * var(--padding-block-fraction));
|
|
3685
|
-
padding-inline: calc(var(--slider-thumb-width) * 0.5);
|
|
3686
|
-
}
|
|
3687
|
-
.sg-form-slider:hover {
|
|
3688
|
-
--slider-filled-color: color-mix(in oklab, rgb(252, 95, 95), black 15%);
|
|
3689
|
-
--slider-filled-border-color: color-mix(in oklab, rgb(252, 95, 95), black 35%);
|
|
3690
|
-
--slider-empty-color: color-mix(in oklab, rgb(26, 27, 29), black 15%);
|
|
3691
|
-
--slider-empty-border-color: color-mix(in oklab, color-mix(in oklab, rgb(26, 27, 29), white 25%), black 25%);
|
|
3692
|
-
}
|
|
3693
|
-
.sg-form-slider .sg-form-slider-filled {
|
|
3694
|
-
display: block;
|
|
3695
|
-
background-color: var(--slider-filled-color);
|
|
3696
|
-
border: 1px outset var(--slider-filled-border-color);
|
|
3697
|
-
border-left: none;
|
|
3698
|
-
border-right: none;
|
|
3699
|
-
height: 100%;
|
|
3700
|
-
width: 100%;
|
|
3701
|
-
}
|
|
3702
|
-
.sg-form-slider .sg-form-slider-filled::before {
|
|
3703
|
-
--cap-height: calc( 1 - 2*var(--padding-block-fraction));
|
|
3704
|
-
box-sizing: border-box;
|
|
3705
|
-
content: "";
|
|
3706
|
-
position: absolute;
|
|
3707
|
-
top: calc(100% * var(--padding-block-fraction));
|
|
3708
|
-
height: calc(100% * var(--cap-height));
|
|
3709
|
-
width: calc(var(--slider-thumb-width) * 0.5);
|
|
3710
|
-
background-color: var(--slider-filled-color);
|
|
3711
|
-
border: 1px outset var(--slider-filled-border-color);
|
|
3712
|
-
border-right: none;
|
|
3713
|
-
left: 0;
|
|
3714
|
-
}
|
|
3715
|
-
.sg-form-slider .sg-form-slider-thumb {
|
|
3716
|
-
cursor: grab;
|
|
3717
|
-
position: relative;
|
|
3718
|
-
display: block;
|
|
3719
|
-
height: 100%;
|
|
3720
|
-
}
|
|
3721
|
-
.sg-form-slider .sg-form-slider-thumb[data-grabbing=true] {
|
|
3722
|
-
cursor: grabbing;
|
|
3723
|
-
}
|
|
3724
|
-
.sg-form-slider .sg-form-slider-thumb:focus-visible {
|
|
3725
|
-
--slider-thumb-border-color: white;
|
|
3726
|
-
}
|
|
3727
|
-
.sg-form-slider .sg-form-slider-thumb::before {
|
|
3728
|
-
content: "";
|
|
3729
|
-
position: absolute;
|
|
3730
|
-
box-sizing: border-box;
|
|
3731
|
-
left: calc(var(--slider-thumb-width) * -0.5);
|
|
3732
|
-
top: calc(-1 * var(--padding-block-fraction) * 100%);
|
|
3733
|
-
height: calc((2 * var(--padding-block-fraction) + 1) * 100%);
|
|
3734
|
-
width: var(--slider-thumb-width);
|
|
3735
|
-
background-color: color-mix(in oklab, rgb(26, 27, 29), white 25%);
|
|
3736
|
-
border: 2px outset var(--slider-thumb-border-color);
|
|
3737
|
-
}
|
|
3738
|
-
.sg-form-slider .sg-form-slider-thumb:focus-visible {
|
|
3739
|
-
--focus-outline: 2px outset $danger;
|
|
3740
|
-
outline: 0;
|
|
3741
|
-
box-shadow: none;
|
|
3742
|
-
}
|
|
3743
|
-
.sg-form-slider .sg-form-slider-empty {
|
|
3744
|
-
display: block;
|
|
3745
|
-
background-color: var(--slider-empty-color);
|
|
3746
|
-
border: 1px outset var(--slider-empty-border-color);
|
|
3747
|
-
border-left: none;
|
|
3748
|
-
border-right: none;
|
|
3749
|
-
height: 100%;
|
|
3750
|
-
width: 100%;
|
|
3751
|
-
}
|
|
3752
|
-
.sg-form-slider .sg-form-slider-empty::after {
|
|
3753
|
-
--cap-height: calc( 1 - 2*var(--padding-block-fraction));
|
|
3754
|
-
box-sizing: border-box;
|
|
3755
|
-
content: "";
|
|
3756
|
-
position: absolute;
|
|
3757
|
-
top: calc(100% * var(--padding-block-fraction));
|
|
3758
|
-
height: calc(100% * var(--cap-height));
|
|
3759
|
-
width: calc(var(--slider-thumb-width) * 0.5);
|
|
3760
|
-
background-color: var(--slider-empty-color);
|
|
3761
|
-
border: 1px outset var(--slider-empty-border-color);
|
|
3762
|
-
border-left: none;
|
|
3763
|
-
right: 0;
|
|
3764
|
-
}
|
|
3765
|
-
|
|
3766
|
-
.sg-form-select-tag {
|
|
3767
|
-
--input-text-color: white;
|
|
3768
|
-
--input-background-color: rgb(26, 27, 29);
|
|
3769
|
-
--input-border-color: color-mix(in oklab, rgb(26, 27, 29), white 25%);
|
|
3770
|
-
--input-border-color-focus: rgb(252, 95, 95);
|
|
3771
|
-
--input-border-color-invalid: hsl(48, 75%, 52%);
|
|
3772
|
-
--input-disabled-color: #e9ecef;
|
|
3773
|
-
position: relative;
|
|
3774
|
-
display: block;
|
|
3775
|
-
width: 100%;
|
|
3776
|
-
padding-block: 0.375em;
|
|
3777
|
-
padding-inline: 0.5em 1.5em;
|
|
3778
|
-
color: var(--input-text-color);
|
|
3779
|
-
background-color: var(--input-background-color);
|
|
3780
|
-
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");
|
|
3781
|
-
background-repeat: no-repeat;
|
|
3782
|
-
background-position: right 0.375em center;
|
|
3783
|
-
background-size: 1em 0.75em;
|
|
3784
|
-
border: 2px outset var(--input-border-color);
|
|
3785
|
-
border-radius: 0;
|
|
3786
|
-
appearance: none;
|
|
3787
|
-
}
|
|
3788
|
-
.sg-form-select-tag:focus-visible, .sg-form-select-tag:focus {
|
|
3789
|
-
border-color: var(--input-border-color-focus);
|
|
3790
|
-
outline: 0;
|
|
3791
|
-
box-shadow: 0;
|
|
3792
|
-
}
|
|
3793
|
-
.sg-form-select-tag[multiple], .sg-form-select-tag[size]:not([size="1"]) {
|
|
3794
|
-
padding-right: 0.375em;
|
|
3795
|
-
background-image: none;
|
|
3796
|
-
}
|
|
3797
|
-
.sg-form-select-tag:disabled {
|
|
3798
|
-
background-color: var(--input-disabled-color);
|
|
3799
|
-
opacity: 1;
|
|
3800
|
-
}
|
|
3801
|
-
.sg-form-select-tag.invalid, .sg-form-select-tag:user-invalid {
|
|
3802
|
-
box-shadow: 0 0 4px 2px var(--input-border-color-invalid);
|
|
3803
|
-
}
|
|
3804
|
-
|
|
3805
|
-
.sg-form-select {
|
|
3806
|
-
--input-text-color: white;
|
|
3807
|
-
--input-background-color: rgb(26, 27, 29);
|
|
3808
|
-
--input-border-color: color-mix(in oklab, rgb(26, 27, 29), white 25%);
|
|
3809
|
-
--input-border-color-focus: rgb(252, 95, 95);
|
|
3810
|
-
--input-border-color-invalid: hsl(48, 75%, 52%);
|
|
3811
|
-
--input-disabled-color: #e9ecef;
|
|
3812
|
-
position: relative;
|
|
3813
|
-
display: block;
|
|
3814
|
-
width: 100%;
|
|
3815
|
-
color: white;
|
|
3816
|
-
}
|
|
3817
|
-
|
|
3818
|
-
.sg-select-control {
|
|
3819
|
-
width: 100%;
|
|
3820
|
-
height: fit-content;
|
|
3821
|
-
padding-block: 0.375em;
|
|
3822
|
-
padding-inline: 0.5em 1.5em;
|
|
3823
|
-
color: inherit;
|
|
3824
|
-
background-color: rgb(26, 27, 29);
|
|
3825
|
-
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");
|
|
3826
|
-
background-repeat: no-repeat;
|
|
3827
|
-
background-position: right 0.375em center;
|
|
3828
|
-
background-size: 1em 0.75em;
|
|
3829
|
-
border: 2px solid color-mix(in oklab, rgb(26, 27, 29), white 25%);
|
|
3830
|
-
border-radius: 0;
|
|
3831
|
-
}
|
|
3832
|
-
.sg-select-control:focus-within {
|
|
3833
|
-
border-color: rgb(252, 95, 95);
|
|
3834
|
-
outline: 0;
|
|
3835
|
-
box-shadow: 0;
|
|
3836
|
-
}
|
|
3837
|
-
.sg-select-control.invalid {
|
|
3838
|
-
border-color: hsl(48, 75%, 52%);
|
|
3839
|
-
}
|
|
3840
|
-
|
|
3841
|
-
.sg-select-input {
|
|
3842
|
-
background-color: inherit;
|
|
3843
|
-
border: none;
|
|
3844
|
-
height: 100%;
|
|
3845
|
-
max-width: 80%;
|
|
3846
|
-
color: inherit;
|
|
3847
|
-
}
|
|
3848
|
-
.sg-select-input[multiple], .sg-select-input[size]:not([size="1"]) {
|
|
3849
|
-
padding-right: 0.375em;
|
|
3850
|
-
background-image: none;
|
|
3851
|
-
}
|
|
3852
|
-
.sg-select-input:disabled {
|
|
3853
|
-
color: inherit;
|
|
3854
|
-
background-color: inherit;
|
|
3855
|
-
opacity: 1;
|
|
3856
|
-
}
|
|
3857
|
-
.sg-select-input:focus, .sg-select-input:focus-within, .sg-select-input:focus-visible {
|
|
3858
|
-
border-color: transparent;
|
|
3859
|
-
outline: none;
|
|
3860
|
-
}
|
|
3861
|
-
.sg-select-input::placeholder {
|
|
3862
|
-
color: rgba(255, 255, 255, 0.336);
|
|
3863
|
-
opacity: 1;
|
|
3864
|
-
}
|
|
3865
|
-
|
|
3866
|
-
.sg-select-list {
|
|
3867
|
-
--bg-color: rgb(26, 27, 29);
|
|
3868
|
-
--txt-color: black;
|
|
3869
|
-
background-color: var(--bg-color);
|
|
3870
|
-
color: inherit;
|
|
3871
|
-
position: absolute;
|
|
3872
|
-
top: calc(100% + 1px);
|
|
3873
|
-
width: 100%;
|
|
3874
|
-
padding: 0;
|
|
3875
|
-
border-radius: 0;
|
|
3876
|
-
border: 2px outset color-mix(in oklab, #212529, white 60%);
|
|
3877
|
-
list-style-type: none;
|
|
3878
|
-
}
|
|
3879
|
-
|
|
3880
|
-
.sg-select-list-item {
|
|
3881
|
-
padding: 0.25rem 0.5rem;
|
|
3882
|
-
font-size: 0.85rem;
|
|
3883
|
-
border: 2px solid transparent;
|
|
3884
|
-
}
|
|
3885
|
-
.sg-select-list-item.focus {
|
|
3886
|
-
background-color: color-mix(in oklab, rgb(252, 95, 95), transparent 50%);
|
|
3887
|
-
border: 2px outset color-mix(in oklab, rgb(252, 95, 95), currentColor 20%);
|
|
3888
|
-
}
|
|
3889
|
-
.sg-select-list-item.focus:active {
|
|
3890
|
-
background-color: color-mix(in oklab, rgb(252, 95, 95), transparent 60%);
|
|
3891
|
-
border: 2px outset color-mix(in oklab, rgb(252, 95, 95), currentColor 30%);
|
|
3892
|
-
}
|
|
3893
|
-
.sg-select-list-item:first-child {
|
|
3894
|
-
border-top-right-radius: inherit;
|
|
3895
|
-
border-top-left-radius: inherit;
|
|
3896
|
-
}
|
|
3897
|
-
.sg-select-list-item:last-child {
|
|
3898
|
-
border-bottom-left-radius: inherit;
|
|
3899
|
-
border-bottom-right-radius: inherit;
|
|
3900
|
-
}
|
|
3901
|
-
|
|
3902
|
-
.sg-form-text {
|
|
3903
|
-
font-size: 0.75em;
|
|
3904
|
-
padding-inline: 0.5em;
|
|
3905
|
-
opacity: 0.8;
|
|
3906
|
-
margin-top: 0.25em;
|
|
3907
|
-
}
|
|
3908
|
-
|
|
3909
|
-
.sg-row {
|
|
3910
|
-
--sg-gutter-x: 1.5rem;
|
|
3911
|
-
--sg-gutter-y: 0;
|
|
3912
|
-
display: flex;
|
|
3913
|
-
flex-wrap: wrap;
|
|
3914
|
-
margin-top: calc(-1 * var(--sg-gutter-y));
|
|
3915
|
-
margin-right: calc(-0.5 * var(--sg-gutter-x));
|
|
3916
|
-
margin-left: calc(-0.5 * var(--sg-gutter-x));
|
|
3917
|
-
}
|
|
3918
|
-
.sg-row > * {
|
|
3919
|
-
flex-shrink: 0;
|
|
3920
|
-
width: 100%;
|
|
3921
|
-
max-width: 100%;
|
|
3922
|
-
padding-right: calc(var(--sg-gutter-x) * 0.5);
|
|
3923
|
-
padding-left: calc(var(--sg-gutter-x) * 0.5);
|
|
3924
|
-
margin-top: var(--sg-gutter-y);
|
|
3925
|
-
}
|
|
3926
|
-
|
|
3927
|
-
.sg-col {
|
|
3928
|
-
flex: 1 0 0%;
|
|
3929
|
-
}
|
|
3930
|
-
|
|
3931
|
-
.sg-row-cols-auto > * {
|
|
3932
|
-
flex: 0 0 auto;
|
|
3933
|
-
width: auto;
|
|
3934
|
-
}
|
|
3935
|
-
|
|
3936
|
-
.sg-row-cols-1 > * {
|
|
3937
|
-
flex: 0 0 auto;
|
|
3938
|
-
width: 100%;
|
|
3939
|
-
}
|
|
3940
|
-
|
|
3941
|
-
.sg-row-cols-2 > * {
|
|
3942
|
-
flex: 0 0 auto;
|
|
3943
|
-
width: 50%;
|
|
3944
|
-
}
|
|
3945
|
-
|
|
3946
|
-
.sg-row-cols-3 > * {
|
|
3947
|
-
flex: 0 0 auto;
|
|
3948
|
-
width: 33.3333333333%;
|
|
3949
|
-
}
|
|
3950
|
-
|
|
3951
|
-
.sg-row-cols-4 > * {
|
|
3952
|
-
flex: 0 0 auto;
|
|
3953
|
-
width: 25%;
|
|
3954
|
-
}
|
|
3955
|
-
|
|
3956
|
-
.sg-row-cols-5 > * {
|
|
3957
|
-
flex: 0 0 auto;
|
|
3958
|
-
width: 20%;
|
|
3959
|
-
}
|
|
3960
|
-
|
|
3961
|
-
.sg-row-cols-6 > * {
|
|
3962
|
-
flex: 0 0 auto;
|
|
3963
|
-
width: 16.6666666667%;
|
|
3964
|
-
}
|
|
3965
|
-
|
|
3966
|
-
.sg-col-auto {
|
|
3967
|
-
flex: 0 0 auto;
|
|
3968
|
-
width: auto;
|
|
3969
|
-
}
|
|
3970
|
-
|
|
3971
|
-
.sg-col-1 {
|
|
3972
|
-
flex: 0 0 auto;
|
|
3973
|
-
width: 8.3333333333%;
|
|
3974
|
-
}
|
|
3975
|
-
|
|
3976
|
-
.sg-col-2 {
|
|
3977
|
-
flex: 0 0 auto;
|
|
3978
|
-
width: 16.6666666667%;
|
|
3979
|
-
}
|
|
3980
|
-
|
|
3981
|
-
.sg-col-3 {
|
|
3982
|
-
flex: 0 0 auto;
|
|
3983
|
-
width: 25%;
|
|
3984
|
-
}
|
|
3985
|
-
|
|
3986
|
-
.sg-col-4 {
|
|
3987
|
-
flex: 0 0 auto;
|
|
3988
|
-
width: 33.3333333333%;
|
|
3989
|
-
}
|
|
3990
|
-
|
|
3991
|
-
.sg-col-5 {
|
|
3992
|
-
flex: 0 0 auto;
|
|
3993
|
-
width: 41.6666666667%;
|
|
3994
|
-
}
|
|
3995
|
-
|
|
3996
|
-
.sg-col-6 {
|
|
3997
|
-
flex: 0 0 auto;
|
|
3998
|
-
width: 50%;
|
|
3999
|
-
}
|
|
4000
|
-
|
|
4001
|
-
.sg-col-7 {
|
|
4002
|
-
flex: 0 0 auto;
|
|
4003
|
-
width: 58.3333333333%;
|
|
4004
|
-
}
|
|
4005
|
-
|
|
4006
|
-
.sg-col-8 {
|
|
4007
|
-
flex: 0 0 auto;
|
|
4008
|
-
width: 66.6666666667%;
|
|
4009
|
-
}
|
|
4010
|
-
|
|
4011
|
-
.sg-col-9 {
|
|
4012
|
-
flex: 0 0 auto;
|
|
4013
|
-
width: 75%;
|
|
4014
|
-
}
|
|
4015
|
-
|
|
4016
|
-
.sg-col-10 {
|
|
4017
|
-
flex: 0 0 auto;
|
|
4018
|
-
width: 83.3333333333%;
|
|
4019
|
-
}
|
|
4020
|
-
|
|
4021
|
-
.sg-col-11 {
|
|
4022
|
-
flex: 0 0 auto;
|
|
4023
|
-
width: 91.6666666667%;
|
|
4024
|
-
}
|
|
4025
|
-
|
|
4026
|
-
.sg-col-12 {
|
|
4027
|
-
flex: 0 0 auto;
|
|
4028
|
-
width: 100%;
|
|
4029
|
-
}
|
|
4030
|
-
|
|
4031
|
-
.sg-offset-1 {
|
|
4032
|
-
margin-left: 8.3333333333%;
|
|
4033
|
-
}
|
|
4034
|
-
|
|
4035
|
-
.sg-offset-2 {
|
|
4036
|
-
margin-left: 16.6666666667%;
|
|
4037
|
-
}
|
|
4038
|
-
|
|
4039
|
-
.sg-offset-3 {
|
|
4040
|
-
margin-left: 25%;
|
|
4041
|
-
}
|
|
4042
|
-
|
|
4043
|
-
.sg-offset-4 {
|
|
4044
|
-
margin-left: 33.3333333333%;
|
|
4045
|
-
}
|
|
4046
|
-
|
|
4047
|
-
.sg-offset-5 {
|
|
4048
|
-
margin-left: 41.6666666667%;
|
|
4049
|
-
}
|
|
4050
|
-
|
|
4051
|
-
.sg-offset-6 {
|
|
4052
|
-
margin-left: 50%;
|
|
4053
|
-
}
|
|
4054
|
-
|
|
4055
|
-
.sg-offset-7 {
|
|
4056
|
-
margin-left: 58.3333333333%;
|
|
4057
|
-
}
|
|
4058
|
-
|
|
4059
|
-
.sg-offset-8 {
|
|
4060
|
-
margin-left: 66.6666666667%;
|
|
4061
|
-
}
|
|
4062
|
-
|
|
4063
|
-
.sg-offset-9 {
|
|
4064
|
-
margin-left: 75%;
|
|
4065
|
-
}
|
|
4066
|
-
|
|
4067
|
-
.sg-offset-10 {
|
|
4068
|
-
margin-left: 83.3333333333%;
|
|
4069
|
-
}
|
|
4070
|
-
|
|
4071
|
-
.sg-offset-11 {
|
|
4072
|
-
margin-left: 91.6666666667%;
|
|
4073
|
-
}
|
|
4074
|
-
|
|
4075
|
-
@media (min-width: 576px) {
|
|
4076
|
-
.sg-col-sm {
|
|
4077
|
-
flex: 1 0 0%;
|
|
4078
|
-
}
|
|
4079
|
-
.sg-row-cols-sm-auto > * {
|
|
4080
|
-
flex: 0 0 auto;
|
|
4081
|
-
width: auto;
|
|
4082
|
-
}
|
|
4083
|
-
.sg-row-cols-sm-1 > * {
|
|
4084
|
-
flex: 0 0 auto;
|
|
4085
|
-
width: 100%;
|
|
4086
|
-
}
|
|
4087
|
-
.sg-row-cols-sm-2 > * {
|
|
4088
|
-
flex: 0 0 auto;
|
|
4089
|
-
width: 50%;
|
|
4090
|
-
}
|
|
4091
|
-
.sg-row-cols-sm-3 > * {
|
|
4092
|
-
flex: 0 0 auto;
|
|
4093
|
-
width: 33.3333333333%;
|
|
4094
|
-
}
|
|
4095
|
-
.sg-row-cols-sm-4 > * {
|
|
4096
|
-
flex: 0 0 auto;
|
|
4097
|
-
width: 25%;
|
|
4098
|
-
}
|
|
4099
|
-
.sg-row-cols-sm-5 > * {
|
|
4100
|
-
flex: 0 0 auto;
|
|
4101
|
-
width: 20%;
|
|
4102
|
-
}
|
|
4103
|
-
.sg-row-cols-sm-6 > * {
|
|
4104
|
-
flex: 0 0 auto;
|
|
4105
|
-
width: 16.6666666667%;
|
|
4106
|
-
}
|
|
4107
|
-
.sg-col-sm-auto {
|
|
4108
|
-
flex: 0 0 auto;
|
|
4109
|
-
width: auto;
|
|
4110
|
-
}
|
|
4111
|
-
.sg-col-sm-1 {
|
|
4112
|
-
flex: 0 0 auto;
|
|
4113
|
-
width: 8.3333333333%;
|
|
4114
|
-
}
|
|
4115
|
-
.sg-col-sm-2 {
|
|
4116
|
-
flex: 0 0 auto;
|
|
4117
|
-
width: 16.6666666667%;
|
|
4118
|
-
}
|
|
4119
|
-
.sg-col-sm-3 {
|
|
4120
|
-
flex: 0 0 auto;
|
|
4121
|
-
width: 25%;
|
|
4122
|
-
}
|
|
4123
|
-
.sg-col-sm-4 {
|
|
4124
|
-
flex: 0 0 auto;
|
|
4125
|
-
width: 33.3333333333%;
|
|
4126
|
-
}
|
|
4127
|
-
.sg-col-sm-5 {
|
|
4128
|
-
flex: 0 0 auto;
|
|
4129
|
-
width: 41.6666666667%;
|
|
4130
|
-
}
|
|
4131
|
-
.sg-col-sm-6 {
|
|
4132
|
-
flex: 0 0 auto;
|
|
4133
|
-
width: 50%;
|
|
4134
|
-
}
|
|
4135
|
-
.sg-col-sm-7 {
|
|
4136
|
-
flex: 0 0 auto;
|
|
4137
|
-
width: 58.3333333333%;
|
|
4138
|
-
}
|
|
4139
|
-
.sg-col-sm-8 {
|
|
4140
|
-
flex: 0 0 auto;
|
|
4141
|
-
width: 66.6666666667%;
|
|
4142
|
-
}
|
|
4143
|
-
.sg-col-sm-9 {
|
|
4144
|
-
flex: 0 0 auto;
|
|
4145
|
-
width: 75%;
|
|
4146
|
-
}
|
|
4147
|
-
.sg-col-sm-10 {
|
|
4148
|
-
flex: 0 0 auto;
|
|
4149
|
-
width: 83.3333333333%;
|
|
4150
|
-
}
|
|
4151
|
-
.sg-col-sm-11 {
|
|
4152
|
-
flex: 0 0 auto;
|
|
4153
|
-
width: 91.6666666667%;
|
|
4154
|
-
}
|
|
4155
|
-
.sg-col-sm-12 {
|
|
4156
|
-
flex: 0 0 auto;
|
|
4157
|
-
width: 100%;
|
|
4158
|
-
}
|
|
4159
|
-
.sg-offset-sm-0 {
|
|
4160
|
-
margin-left: 0;
|
|
4161
|
-
}
|
|
4162
|
-
.sg-offset-sm-1 {
|
|
4163
|
-
margin-left: 8.3333333333%;
|
|
4164
|
-
}
|
|
4165
|
-
.sg-offset-sm-2 {
|
|
4166
|
-
margin-left: 16.6666666667%;
|
|
4167
|
-
}
|
|
4168
|
-
.sg-offset-sm-3 {
|
|
4169
|
-
margin-left: 25%;
|
|
4170
|
-
}
|
|
4171
|
-
.sg-offset-sm-4 {
|
|
4172
|
-
margin-left: 33.3333333333%;
|
|
4173
|
-
}
|
|
4174
|
-
.sg-offset-sm-5 {
|
|
4175
|
-
margin-left: 41.6666666667%;
|
|
4176
|
-
}
|
|
4177
|
-
.sg-offset-sm-6 {
|
|
4178
|
-
margin-left: 50%;
|
|
4179
|
-
}
|
|
4180
|
-
.sg-offset-sm-7 {
|
|
4181
|
-
margin-left: 58.3333333333%;
|
|
4182
|
-
}
|
|
4183
|
-
.sg-offset-sm-8 {
|
|
4184
|
-
margin-left: 66.6666666667%;
|
|
4185
|
-
}
|
|
4186
|
-
.sg-offset-sm-9 {
|
|
4187
|
-
margin-left: 75%;
|
|
4188
|
-
}
|
|
4189
|
-
.sg-offset-sm-10 {
|
|
4190
|
-
margin-left: 83.3333333333%;
|
|
4191
|
-
}
|
|
4192
|
-
.sg-offset-sm-11 {
|
|
4193
|
-
margin-left: 91.6666666667%;
|
|
4194
|
-
}
|
|
4195
|
-
}
|
|
4196
|
-
@media (min-width: 768px) {
|
|
4197
|
-
.sg-col-md {
|
|
4198
|
-
flex: 1 0 0%;
|
|
4199
|
-
}
|
|
4200
|
-
.sg-row-cols-md-auto > * {
|
|
4201
|
-
flex: 0 0 auto;
|
|
4202
|
-
width: auto;
|
|
4203
|
-
}
|
|
4204
|
-
.sg-row-cols-md-1 > * {
|
|
4205
|
-
flex: 0 0 auto;
|
|
4206
|
-
width: 100%;
|
|
4207
|
-
}
|
|
4208
|
-
.sg-row-cols-md-2 > * {
|
|
4209
|
-
flex: 0 0 auto;
|
|
4210
|
-
width: 50%;
|
|
4211
|
-
}
|
|
4212
|
-
.sg-row-cols-md-3 > * {
|
|
4213
|
-
flex: 0 0 auto;
|
|
4214
|
-
width: 33.3333333333%;
|
|
4215
|
-
}
|
|
4216
|
-
.sg-row-cols-md-4 > * {
|
|
4217
|
-
flex: 0 0 auto;
|
|
4218
|
-
width: 25%;
|
|
4219
|
-
}
|
|
4220
|
-
.sg-row-cols-md-5 > * {
|
|
4221
|
-
flex: 0 0 auto;
|
|
4222
|
-
width: 20%;
|
|
4223
|
-
}
|
|
4224
|
-
.sg-row-cols-md-6 > * {
|
|
4225
|
-
flex: 0 0 auto;
|
|
4226
|
-
width: 16.6666666667%;
|
|
4227
|
-
}
|
|
4228
|
-
.sg-col-md-auto {
|
|
4229
|
-
flex: 0 0 auto;
|
|
4230
|
-
width: auto;
|
|
4231
|
-
}
|
|
4232
|
-
.sg-col-md-1 {
|
|
4233
|
-
flex: 0 0 auto;
|
|
4234
|
-
width: 8.3333333333%;
|
|
4235
|
-
}
|
|
4236
|
-
.sg-col-md-2 {
|
|
4237
|
-
flex: 0 0 auto;
|
|
4238
|
-
width: 16.6666666667%;
|
|
4239
|
-
}
|
|
4240
|
-
.sg-col-md-3 {
|
|
4241
|
-
flex: 0 0 auto;
|
|
4242
|
-
width: 25%;
|
|
4243
|
-
}
|
|
4244
|
-
.sg-col-md-4 {
|
|
4245
|
-
flex: 0 0 auto;
|
|
4246
|
-
width: 33.3333333333%;
|
|
4247
|
-
}
|
|
4248
|
-
.sg-col-md-5 {
|
|
4249
|
-
flex: 0 0 auto;
|
|
4250
|
-
width: 41.6666666667%;
|
|
4251
|
-
}
|
|
4252
|
-
.sg-col-md-6 {
|
|
4253
|
-
flex: 0 0 auto;
|
|
4254
|
-
width: 50%;
|
|
4255
|
-
}
|
|
4256
|
-
.sg-col-md-7 {
|
|
4257
|
-
flex: 0 0 auto;
|
|
4258
|
-
width: 58.3333333333%;
|
|
4259
|
-
}
|
|
4260
|
-
.sg-col-md-8 {
|
|
4261
|
-
flex: 0 0 auto;
|
|
4262
|
-
width: 66.6666666667%;
|
|
4263
|
-
}
|
|
4264
|
-
.sg-col-md-9 {
|
|
4265
|
-
flex: 0 0 auto;
|
|
4266
|
-
width: 75%;
|
|
4267
|
-
}
|
|
4268
|
-
.sg-col-md-10 {
|
|
4269
|
-
flex: 0 0 auto;
|
|
4270
|
-
width: 83.3333333333%;
|
|
4271
|
-
}
|
|
4272
|
-
.sg-col-md-11 {
|
|
4273
|
-
flex: 0 0 auto;
|
|
4274
|
-
width: 91.6666666667%;
|
|
4275
|
-
}
|
|
4276
|
-
.sg-col-md-12 {
|
|
4277
|
-
flex: 0 0 auto;
|
|
4278
|
-
width: 100%;
|
|
4279
|
-
}
|
|
4280
|
-
.sg-offset-md-0 {
|
|
4281
|
-
margin-left: 0;
|
|
4282
|
-
}
|
|
4283
|
-
.sg-offset-md-1 {
|
|
4284
|
-
margin-left: 8.3333333333%;
|
|
4285
|
-
}
|
|
4286
|
-
.sg-offset-md-2 {
|
|
4287
|
-
margin-left: 16.6666666667%;
|
|
4288
|
-
}
|
|
4289
|
-
.sg-offset-md-3 {
|
|
4290
|
-
margin-left: 25%;
|
|
4291
|
-
}
|
|
4292
|
-
.sg-offset-md-4 {
|
|
4293
|
-
margin-left: 33.3333333333%;
|
|
4294
|
-
}
|
|
4295
|
-
.sg-offset-md-5 {
|
|
4296
|
-
margin-left: 41.6666666667%;
|
|
4297
|
-
}
|
|
4298
|
-
.sg-offset-md-6 {
|
|
4299
|
-
margin-left: 50%;
|
|
4300
|
-
}
|
|
4301
|
-
.sg-offset-md-7 {
|
|
4302
|
-
margin-left: 58.3333333333%;
|
|
4303
|
-
}
|
|
4304
|
-
.sg-offset-md-8 {
|
|
4305
|
-
margin-left: 66.6666666667%;
|
|
4306
|
-
}
|
|
4307
|
-
.sg-offset-md-9 {
|
|
4308
|
-
margin-left: 75%;
|
|
4309
|
-
}
|
|
4310
|
-
.sg-offset-md-10 {
|
|
4311
|
-
margin-left: 83.3333333333%;
|
|
4312
|
-
}
|
|
4313
|
-
.sg-offset-md-11 {
|
|
4314
|
-
margin-left: 91.6666666667%;
|
|
4315
|
-
}
|
|
4316
|
-
}
|
|
4317
|
-
@media (min-width: 992px) {
|
|
4318
|
-
.sg-col-lg {
|
|
4319
|
-
flex: 1 0 0%;
|
|
4320
|
-
}
|
|
4321
|
-
.sg-row-cols-lg-auto > * {
|
|
4322
|
-
flex: 0 0 auto;
|
|
4323
|
-
width: auto;
|
|
4324
|
-
}
|
|
4325
|
-
.sg-row-cols-lg-1 > * {
|
|
4326
|
-
flex: 0 0 auto;
|
|
4327
|
-
width: 100%;
|
|
4328
|
-
}
|
|
4329
|
-
.sg-row-cols-lg-2 > * {
|
|
4330
|
-
flex: 0 0 auto;
|
|
4331
|
-
width: 50%;
|
|
4332
|
-
}
|
|
4333
|
-
.sg-row-cols-lg-3 > * {
|
|
4334
|
-
flex: 0 0 auto;
|
|
4335
|
-
width: 33.3333333333%;
|
|
4336
|
-
}
|
|
4337
|
-
.sg-row-cols-lg-4 > * {
|
|
4338
|
-
flex: 0 0 auto;
|
|
4339
|
-
width: 25%;
|
|
4340
|
-
}
|
|
4341
|
-
.sg-row-cols-lg-5 > * {
|
|
4342
|
-
flex: 0 0 auto;
|
|
4343
|
-
width: 20%;
|
|
4344
|
-
}
|
|
4345
|
-
.sg-row-cols-lg-6 > * {
|
|
4346
|
-
flex: 0 0 auto;
|
|
4347
|
-
width: 16.6666666667%;
|
|
4348
|
-
}
|
|
4349
|
-
.sg-col-lg-auto {
|
|
4350
|
-
flex: 0 0 auto;
|
|
4351
|
-
width: auto;
|
|
4352
|
-
}
|
|
4353
|
-
.sg-col-lg-1 {
|
|
4354
|
-
flex: 0 0 auto;
|
|
4355
|
-
width: 8.3333333333%;
|
|
4356
|
-
}
|
|
4357
|
-
.sg-col-lg-2 {
|
|
4358
|
-
flex: 0 0 auto;
|
|
4359
|
-
width: 16.6666666667%;
|
|
4360
|
-
}
|
|
4361
|
-
.sg-col-lg-3 {
|
|
4362
|
-
flex: 0 0 auto;
|
|
4363
|
-
width: 25%;
|
|
4364
|
-
}
|
|
4365
|
-
.sg-col-lg-4 {
|
|
4366
|
-
flex: 0 0 auto;
|
|
4367
|
-
width: 33.3333333333%;
|
|
4368
|
-
}
|
|
4369
|
-
.sg-col-lg-5 {
|
|
4370
|
-
flex: 0 0 auto;
|
|
4371
|
-
width: 41.6666666667%;
|
|
4372
|
-
}
|
|
4373
|
-
.sg-col-lg-6 {
|
|
4374
|
-
flex: 0 0 auto;
|
|
4375
|
-
width: 50%;
|
|
4376
|
-
}
|
|
4377
|
-
.sg-col-lg-7 {
|
|
4378
|
-
flex: 0 0 auto;
|
|
4379
|
-
width: 58.3333333333%;
|
|
4380
|
-
}
|
|
4381
|
-
.sg-col-lg-8 {
|
|
4382
|
-
flex: 0 0 auto;
|
|
4383
|
-
width: 66.6666666667%;
|
|
4384
|
-
}
|
|
4385
|
-
.sg-col-lg-9 {
|
|
4386
|
-
flex: 0 0 auto;
|
|
4387
|
-
width: 75%;
|
|
4388
|
-
}
|
|
4389
|
-
.sg-col-lg-10 {
|
|
4390
|
-
flex: 0 0 auto;
|
|
4391
|
-
width: 83.3333333333%;
|
|
4392
|
-
}
|
|
4393
|
-
.sg-col-lg-11 {
|
|
4394
|
-
flex: 0 0 auto;
|
|
4395
|
-
width: 91.6666666667%;
|
|
4396
|
-
}
|
|
4397
|
-
.sg-col-lg-12 {
|
|
4398
|
-
flex: 0 0 auto;
|
|
4399
|
-
width: 100%;
|
|
4400
|
-
}
|
|
4401
|
-
.sg-offset-lg-0 {
|
|
4402
|
-
margin-left: 0;
|
|
4403
|
-
}
|
|
4404
|
-
.sg-offset-lg-1 {
|
|
4405
|
-
margin-left: 8.3333333333%;
|
|
4406
|
-
}
|
|
4407
|
-
.sg-offset-lg-2 {
|
|
4408
|
-
margin-left: 16.6666666667%;
|
|
4409
|
-
}
|
|
4410
|
-
.sg-offset-lg-3 {
|
|
4411
|
-
margin-left: 25%;
|
|
4412
|
-
}
|
|
4413
|
-
.sg-offset-lg-4 {
|
|
4414
|
-
margin-left: 33.3333333333%;
|
|
4415
|
-
}
|
|
4416
|
-
.sg-offset-lg-5 {
|
|
4417
|
-
margin-left: 41.6666666667%;
|
|
4418
|
-
}
|
|
4419
|
-
.sg-offset-lg-6 {
|
|
4420
|
-
margin-left: 50%;
|
|
4421
|
-
}
|
|
4422
|
-
.sg-offset-lg-7 {
|
|
4423
|
-
margin-left: 58.3333333333%;
|
|
4424
|
-
}
|
|
4425
|
-
.sg-offset-lg-8 {
|
|
4426
|
-
margin-left: 66.6666666667%;
|
|
4427
|
-
}
|
|
4428
|
-
.sg-offset-lg-9 {
|
|
4429
|
-
margin-left: 75%;
|
|
4430
|
-
}
|
|
4431
|
-
.sg-offset-lg-10 {
|
|
4432
|
-
margin-left: 83.3333333333%;
|
|
4433
|
-
}
|
|
4434
|
-
.sg-offset-lg-11 {
|
|
4435
|
-
margin-left: 91.6666666667%;
|
|
4436
|
-
}
|
|
4437
|
-
}
|
|
4438
|
-
@media (min-width: 1200px) {
|
|
4439
|
-
.sg-col-xl {
|
|
4440
|
-
flex: 1 0 0%;
|
|
4441
|
-
}
|
|
4442
|
-
.sg-row-cols-xl-auto > * {
|
|
4443
|
-
flex: 0 0 auto;
|
|
4444
|
-
width: auto;
|
|
4445
|
-
}
|
|
4446
|
-
.sg-row-cols-xl-1 > * {
|
|
4447
|
-
flex: 0 0 auto;
|
|
4448
|
-
width: 100%;
|
|
4449
|
-
}
|
|
4450
|
-
.sg-row-cols-xl-2 > * {
|
|
4451
|
-
flex: 0 0 auto;
|
|
4452
|
-
width: 50%;
|
|
4453
|
-
}
|
|
4454
|
-
.sg-row-cols-xl-3 > * {
|
|
4455
|
-
flex: 0 0 auto;
|
|
4456
|
-
width: 33.3333333333%;
|
|
4457
|
-
}
|
|
4458
|
-
.sg-row-cols-xl-4 > * {
|
|
4459
|
-
flex: 0 0 auto;
|
|
4460
|
-
width: 25%;
|
|
4461
|
-
}
|
|
4462
|
-
.sg-row-cols-xl-5 > * {
|
|
4463
|
-
flex: 0 0 auto;
|
|
4464
|
-
width: 20%;
|
|
4465
|
-
}
|
|
4466
|
-
.sg-row-cols-xl-6 > * {
|
|
4467
|
-
flex: 0 0 auto;
|
|
4468
|
-
width: 16.6666666667%;
|
|
4469
|
-
}
|
|
4470
|
-
.sg-col-xl-auto {
|
|
4471
|
-
flex: 0 0 auto;
|
|
4472
|
-
width: auto;
|
|
4473
|
-
}
|
|
4474
|
-
.sg-col-xl-1 {
|
|
4475
|
-
flex: 0 0 auto;
|
|
4476
|
-
width: 8.3333333333%;
|
|
4477
|
-
}
|
|
4478
|
-
.sg-col-xl-2 {
|
|
4479
|
-
flex: 0 0 auto;
|
|
4480
|
-
width: 16.6666666667%;
|
|
4481
|
-
}
|
|
4482
|
-
.sg-col-xl-3 {
|
|
4483
|
-
flex: 0 0 auto;
|
|
4484
|
-
width: 25%;
|
|
4485
|
-
}
|
|
4486
|
-
.sg-col-xl-4 {
|
|
4487
|
-
flex: 0 0 auto;
|
|
4488
|
-
width: 33.3333333333%;
|
|
4489
|
-
}
|
|
4490
|
-
.sg-col-xl-5 {
|
|
4491
|
-
flex: 0 0 auto;
|
|
4492
|
-
width: 41.6666666667%;
|
|
4493
|
-
}
|
|
4494
|
-
.sg-col-xl-6 {
|
|
4495
|
-
flex: 0 0 auto;
|
|
4496
|
-
width: 50%;
|
|
4497
|
-
}
|
|
4498
|
-
.sg-col-xl-7 {
|
|
4499
|
-
flex: 0 0 auto;
|
|
4500
|
-
width: 58.3333333333%;
|
|
4501
|
-
}
|
|
4502
|
-
.sg-col-xl-8 {
|
|
4503
|
-
flex: 0 0 auto;
|
|
4504
|
-
width: 66.6666666667%;
|
|
4505
|
-
}
|
|
4506
|
-
.sg-col-xl-9 {
|
|
4507
|
-
flex: 0 0 auto;
|
|
4508
|
-
width: 75%;
|
|
4509
|
-
}
|
|
4510
|
-
.sg-col-xl-10 {
|
|
4511
|
-
flex: 0 0 auto;
|
|
4512
|
-
width: 83.3333333333%;
|
|
4513
|
-
}
|
|
4514
|
-
.sg-col-xl-11 {
|
|
4515
|
-
flex: 0 0 auto;
|
|
4516
|
-
width: 91.6666666667%;
|
|
4517
|
-
}
|
|
4518
|
-
.sg-col-xl-12 {
|
|
4519
|
-
flex: 0 0 auto;
|
|
4520
|
-
width: 100%;
|
|
4521
|
-
}
|
|
4522
|
-
.sg-offset-xl-0 {
|
|
4523
|
-
margin-left: 0;
|
|
4524
|
-
}
|
|
4525
|
-
.sg-offset-xl-1 {
|
|
4526
|
-
margin-left: 8.3333333333%;
|
|
4527
|
-
}
|
|
4528
|
-
.sg-offset-xl-2 {
|
|
4529
|
-
margin-left: 16.6666666667%;
|
|
4530
|
-
}
|
|
4531
|
-
.sg-offset-xl-3 {
|
|
4532
|
-
margin-left: 25%;
|
|
4533
|
-
}
|
|
4534
|
-
.sg-offset-xl-4 {
|
|
4535
|
-
margin-left: 33.3333333333%;
|
|
4536
|
-
}
|
|
4537
|
-
.sg-offset-xl-5 {
|
|
4538
|
-
margin-left: 41.6666666667%;
|
|
4539
|
-
}
|
|
4540
|
-
.sg-offset-xl-6 {
|
|
4541
|
-
margin-left: 50%;
|
|
4542
|
-
}
|
|
4543
|
-
.sg-offset-xl-7 {
|
|
4544
|
-
margin-left: 58.3333333333%;
|
|
4545
|
-
}
|
|
4546
|
-
.sg-offset-xl-8 {
|
|
4547
|
-
margin-left: 66.6666666667%;
|
|
4548
|
-
}
|
|
4549
|
-
.sg-offset-xl-9 {
|
|
4550
|
-
margin-left: 75%;
|
|
4551
|
-
}
|
|
4552
|
-
.sg-offset-xl-10 {
|
|
4553
|
-
margin-left: 83.3333333333%;
|
|
4554
|
-
}
|
|
4555
|
-
.sg-offset-xl-11 {
|
|
4556
|
-
margin-left: 91.6666666667%;
|
|
4557
|
-
}
|
|
4558
|
-
}
|
|
4559
|
-
@media (min-width: 1400px) {
|
|
4560
|
-
.sg-col-xxl {
|
|
4561
|
-
flex: 1 0 0%;
|
|
4562
|
-
}
|
|
4563
|
-
.sg-row-cols-xxl-auto > * {
|
|
4564
|
-
flex: 0 0 auto;
|
|
4565
|
-
width: auto;
|
|
4566
|
-
}
|
|
4567
|
-
.sg-row-cols-xxl-1 > * {
|
|
4568
|
-
flex: 0 0 auto;
|
|
4569
|
-
width: 100%;
|
|
4570
|
-
}
|
|
4571
|
-
.sg-row-cols-xxl-2 > * {
|
|
4572
|
-
flex: 0 0 auto;
|
|
4573
|
-
width: 50%;
|
|
4574
|
-
}
|
|
4575
|
-
.sg-row-cols-xxl-3 > * {
|
|
4576
|
-
flex: 0 0 auto;
|
|
4577
|
-
width: 33.3333333333%;
|
|
4578
|
-
}
|
|
4579
|
-
.sg-row-cols-xxl-4 > * {
|
|
4580
|
-
flex: 0 0 auto;
|
|
4581
|
-
width: 25%;
|
|
4582
|
-
}
|
|
4583
|
-
.sg-row-cols-xxl-5 > * {
|
|
4584
|
-
flex: 0 0 auto;
|
|
4585
|
-
width: 20%;
|
|
4586
|
-
}
|
|
4587
|
-
.sg-row-cols-xxl-6 > * {
|
|
4588
|
-
flex: 0 0 auto;
|
|
4589
|
-
width: 16.6666666667%;
|
|
4590
|
-
}
|
|
4591
|
-
.sg-col-xxl-auto {
|
|
4592
|
-
flex: 0 0 auto;
|
|
4593
|
-
width: auto;
|
|
4594
|
-
}
|
|
4595
|
-
.sg-col-xxl-1 {
|
|
4596
|
-
flex: 0 0 auto;
|
|
4597
|
-
width: 8.3333333333%;
|
|
4598
|
-
}
|
|
4599
|
-
.sg-col-xxl-2 {
|
|
4600
|
-
flex: 0 0 auto;
|
|
4601
|
-
width: 16.6666666667%;
|
|
4602
|
-
}
|
|
4603
|
-
.sg-col-xxl-3 {
|
|
4604
|
-
flex: 0 0 auto;
|
|
4605
|
-
width: 25%;
|
|
4606
|
-
}
|
|
4607
|
-
.sg-col-xxl-4 {
|
|
4608
|
-
flex: 0 0 auto;
|
|
4609
|
-
width: 33.3333333333%;
|
|
4610
|
-
}
|
|
4611
|
-
.sg-col-xxl-5 {
|
|
4612
|
-
flex: 0 0 auto;
|
|
4613
|
-
width: 41.6666666667%;
|
|
4614
|
-
}
|
|
4615
|
-
.sg-col-xxl-6 {
|
|
4616
|
-
flex: 0 0 auto;
|
|
4617
|
-
width: 50%;
|
|
4618
|
-
}
|
|
4619
|
-
.sg-col-xxl-7 {
|
|
4620
|
-
flex: 0 0 auto;
|
|
4621
|
-
width: 58.3333333333%;
|
|
4622
|
-
}
|
|
4623
|
-
.sg-col-xxl-8 {
|
|
4624
|
-
flex: 0 0 auto;
|
|
4625
|
-
width: 66.6666666667%;
|
|
4626
|
-
}
|
|
4627
|
-
.sg-col-xxl-9 {
|
|
4628
|
-
flex: 0 0 auto;
|
|
4629
|
-
width: 75%;
|
|
4630
|
-
}
|
|
4631
|
-
.sg-col-xxl-10 {
|
|
4632
|
-
flex: 0 0 auto;
|
|
4633
|
-
width: 83.3333333333%;
|
|
4634
|
-
}
|
|
4635
|
-
.sg-col-xxl-11 {
|
|
4636
|
-
flex: 0 0 auto;
|
|
4637
|
-
width: 91.6666666667%;
|
|
4638
|
-
}
|
|
4639
|
-
.sg-col-xxl-12 {
|
|
4640
|
-
flex: 0 0 auto;
|
|
4641
|
-
width: 100%;
|
|
4642
|
-
}
|
|
4643
|
-
.sg-offset-xxl-0 {
|
|
4644
|
-
margin-left: 0;
|
|
4645
|
-
}
|
|
4646
|
-
.sg-offset-xxl-1 {
|
|
4647
|
-
margin-left: 8.3333333333%;
|
|
4648
|
-
}
|
|
4649
|
-
.sg-offset-xxl-2 {
|
|
4650
|
-
margin-left: 16.6666666667%;
|
|
4651
|
-
}
|
|
4652
|
-
.sg-offset-xxl-3 {
|
|
4653
|
-
margin-left: 25%;
|
|
4654
|
-
}
|
|
4655
|
-
.sg-offset-xxl-4 {
|
|
4656
|
-
margin-left: 33.3333333333%;
|
|
4657
|
-
}
|
|
4658
|
-
.sg-offset-xxl-5 {
|
|
4659
|
-
margin-left: 41.6666666667%;
|
|
4660
|
-
}
|
|
4661
|
-
.sg-offset-xxl-6 {
|
|
4662
|
-
margin-left: 50%;
|
|
4663
|
-
}
|
|
4664
|
-
.sg-offset-xxl-7 {
|
|
4665
|
-
margin-left: 58.3333333333%;
|
|
4666
|
-
}
|
|
4667
|
-
.sg-offset-xxl-8 {
|
|
4668
|
-
margin-left: 66.6666666667%;
|
|
4669
|
-
}
|
|
4670
|
-
.sg-offset-xxl-9 {
|
|
4671
|
-
margin-left: 75%;
|
|
4672
|
-
}
|
|
4673
|
-
.sg-offset-xxl-10 {
|
|
4674
|
-
margin-left: 83.3333333333%;
|
|
4675
|
-
}
|
|
4676
|
-
.sg-offset-xxl-11 {
|
|
4677
|
-
margin-left: 91.6666666667%;
|
|
4678
|
-
}
|
|
3090
|
+
padding: 0.375em 0.5em;
|
|
3091
|
+
margin: -0.375em -0.5em;
|
|
3092
|
+
margin-inline-end: 0.375em;
|
|
3093
|
+
pointer-events: none;
|
|
3094
|
+
border-color: inherit;
|
|
3095
|
+
border-style: solid;
|
|
3096
|
+
border-width: 0;
|
|
3097
|
+
border-inline-end-width: 1px;
|
|
3098
|
+
border-radius: 0;
|
|
3099
|
+
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
|
|
3100
|
+
}
|
|
3101
|
+
.sg-form-control:hover:not(:disabled):not([readonly])::file-selector-button {
|
|
3102
|
+
background-color: #1f2327;
|
|
4679
3103
|
}
|
|
4680
|
-
|
|
4681
|
-
.sg-
|
|
4682
|
-
|
|
4683
|
-
.sg-container-xxl,
|
|
4684
|
-
.sg-container-xl,
|
|
4685
|
-
.sg-container-lg,
|
|
4686
|
-
.sg-container-md,
|
|
4687
|
-
.sg-container-sm {
|
|
4688
|
-
--sg-gutter-x: 1.5rem;
|
|
4689
|
-
--sg-gutter-y: 0;
|
|
3104
|
+
|
|
3105
|
+
.sg-form-control-plaintext {
|
|
3106
|
+
display: block;
|
|
4690
3107
|
width: 100%;
|
|
4691
|
-
padding
|
|
4692
|
-
|
|
4693
|
-
|
|
4694
|
-
|
|
3108
|
+
padding: 0.375em 0;
|
|
3109
|
+
margin-bottom: 0;
|
|
3110
|
+
color: #212529;
|
|
3111
|
+
background-color: transparent;
|
|
3112
|
+
border: solid transparent;
|
|
3113
|
+
border-width: 1px 0;
|
|
3114
|
+
}
|
|
3115
|
+
.sg-form-control-plaintext:focus-visible {
|
|
3116
|
+
outline: 0;
|
|
4695
3117
|
}
|
|
4696
3118
|
|
|
4697
|
-
|
|
4698
|
-
|
|
4699
|
-
max-width: 540px;
|
|
4700
|
-
}
|
|
3119
|
+
textarea.sg-form-control {
|
|
3120
|
+
min-height: calc(2.15em + 2px);
|
|
4701
3121
|
}
|
|
4702
|
-
|
|
4703
|
-
|
|
4704
|
-
|
|
4705
|
-
|
|
3122
|
+
|
|
3123
|
+
.sg-form-control-color {
|
|
3124
|
+
width: 3em;
|
|
3125
|
+
height: calc(2.15em + 2px);
|
|
3126
|
+
padding: 0.375em;
|
|
4706
3127
|
}
|
|
4707
|
-
|
|
4708
|
-
|
|
4709
|
-
max-width: 960px;
|
|
4710
|
-
}
|
|
3128
|
+
.sg-form-control-color:not(:disabled):not([readonly]) {
|
|
3129
|
+
cursor: pointer;
|
|
4711
3130
|
}
|
|
4712
|
-
|
|
4713
|
-
|
|
4714
|
-
|
|
4715
|
-
}
|
|
3131
|
+
.sg-form-control-color::-moz-color-swatch {
|
|
3132
|
+
border: 0 !important;
|
|
3133
|
+
border-radius: 0.375em;
|
|
4716
3134
|
}
|
|
4717
|
-
|
|
4718
|
-
|
|
4719
|
-
|
|
4720
|
-
|
|
3135
|
+
.sg-form-control-color::-webkit-color-swatch {
|
|
3136
|
+
border-radius: 0.375em;
|
|
3137
|
+
}
|
|
3138
|
+
|
|
3139
|
+
.sg-form-label {
|
|
3140
|
+
margin-bottom: 0.5em;
|
|
3141
|
+
}
|
|
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;
|
|
3158
|
+
}
|
|
3159
|
+
.sg-form-select:focus-visible {
|
|
3160
|
+
box-shadow: 0 0 0 3px white;
|
|
3161
|
+
outline: 2px solid #0d6efd;
|
|
3162
|
+
z-index: 5;
|
|
3163
|
+
}
|
|
3164
|
+
.sg-form-select[multiple], .sg-form-select[size]:not([size="1"]) {
|
|
3165
|
+
padding-right: 0.375em;
|
|
3166
|
+
background-image: none;
|
|
3167
|
+
}
|
|
3168
|
+
.sg-form-select:disabled {
|
|
3169
|
+
background-color: #e9ecef;
|
|
3170
|
+
opacity: 1;
|
|
4721
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;
|
|
3178
|
+
}
|
|
3179
|
+
|
|
4722
3180
|
.sg-input-group {
|
|
4723
3181
|
display: flex;
|
|
4724
3182
|
flex-wrap: wrap;
|
|
4725
3183
|
align-items: stretch;
|
|
4726
3184
|
width: 100%;
|
|
4727
|
-
padding-bottom: 0.5rem;
|
|
4728
3185
|
}
|
|
4729
3186
|
.sg-input-group > .sg-form-control,
|
|
4730
3187
|
.sg-input-group > .sg-form-control-plaintext,
|
|
4731
3188
|
.sg-input-group > .sg-form-select,
|
|
4732
|
-
.sg-input-group > .sg-form-
|
|
3189
|
+
.sg-input-group > .sg-form-floating {
|
|
4733
3190
|
flex: 1 1 auto;
|
|
4734
3191
|
width: 1%;
|
|
4735
|
-
min-width:
|
|
3192
|
+
min-width: 0;
|
|
4736
3193
|
}
|
|
4737
3194
|
.sg-input-group > .sg-button, .sg-input-group > button {
|
|
4738
3195
|
position: relative;
|
|
@@ -4741,205 +3198,81 @@ textarea.sg-form-control {
|
|
|
4741
3198
|
.sg-input-group > :not(:first-child):not(:last-child) {
|
|
4742
3199
|
border-radius: 0;
|
|
4743
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
|
+
}
|
|
4744
3204
|
.sg-input-group > :first-child {
|
|
4745
3205
|
border-top-right-radius: 0;
|
|
4746
3206
|
border-bottom-right-radius: 0;
|
|
4747
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
|
+
}
|
|
4748
3212
|
.sg-input-group > :last-child {
|
|
4749
3213
|
border-top-left-radius: 0;
|
|
4750
3214
|
border-bottom-left-radius: 0;
|
|
4751
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
|
+
}
|
|
4752
3220
|
|
|
4753
3221
|
.sg-input-group-text {
|
|
4754
3222
|
display: flex;
|
|
4755
|
-
flex: 0 1 auto;
|
|
4756
|
-
overflow: auto;
|
|
4757
3223
|
width: fit-content;
|
|
4758
|
-
max-width: 8rem;
|
|
4759
3224
|
align-items: center;
|
|
4760
3225
|
text-align: center;
|
|
4761
|
-
font-size: 0.
|
|
3226
|
+
font-size: 0.8rem;
|
|
4762
3227
|
padding: 0.375em 0.5em;
|
|
4763
3228
|
white-space: nowrap;
|
|
4764
|
-
background-color:
|
|
4765
|
-
color:
|
|
4766
|
-
border:
|
|
4767
|
-
border-
|
|
4768
|
-
border-radius: 0;
|
|
4769
|
-
}
|
|
4770
|
-
|
|
4771
|
-
.sg-form-control + .sg-input-group-text {
|
|
4772
|
-
border-left-width: 0;
|
|
4773
|
-
border-right-width: 2px;
|
|
4774
|
-
}
|
|
4775
|
-
|
|
4776
|
-
.sg-input-group-grid {
|
|
4777
|
-
display: flex;
|
|
4778
|
-
flex-wrap: wrap;
|
|
4779
|
-
width: 100%;
|
|
4780
|
-
align-items: stretch;
|
|
4781
|
-
padding-bottom: 0.5rem;
|
|
4782
|
-
}
|
|
4783
|
-
.sg-input-group-grid > .sg-input-group, .sg-input-group-grid > .sg-form-floating {
|
|
4784
|
-
flex: 1 1 auto;
|
|
4785
|
-
width: 1%;
|
|
4786
|
-
min-width: 13rem;
|
|
4787
|
-
padding-bottom: 0;
|
|
4788
|
-
}
|
|
4789
|
-
|
|
4790
|
-
.sg-list {
|
|
4791
|
-
--padding: 0rem;
|
|
4792
|
-
list-style-type: none;
|
|
4793
|
-
padding: 0;
|
|
4794
|
-
margin: 0;
|
|
4795
|
-
padding-left: var(--padding);
|
|
4796
|
-
}
|
|
4797
|
-
.sg-list span {
|
|
4798
|
-
display: list-item;
|
|
4799
|
-
}
|
|
4800
|
-
.sg-list .sg-list {
|
|
4801
|
-
--padding: 0.5rem;
|
|
4802
|
-
}
|
|
4803
|
-
|
|
4804
|
-
.sg-sublist {
|
|
4805
|
-
list-style-type: none;
|
|
4806
|
-
padding: 0;
|
|
4807
|
-
margin: 0;
|
|
4808
|
-
}
|
|
4809
|
-
|
|
4810
|
-
.sg-list-label {
|
|
4811
|
-
background-color: black;
|
|
4812
|
-
}
|
|
4813
|
-
|
|
4814
|
-
.sg-list-item {
|
|
4815
|
-
margin: 0;
|
|
4816
|
-
background-color: black;
|
|
4817
|
-
}
|
|
4818
|
-
.sg-list-item > * {
|
|
4819
|
-
user-select: inherit;
|
|
4820
|
-
}
|
|
4821
|
-
|
|
4822
|
-
.moving {
|
|
4823
|
-
position: absolute;
|
|
4824
|
-
top: 0;
|
|
4825
|
-
left: 0;
|
|
4826
|
-
z-index: 1010;
|
|
4827
|
-
}
|
|
4828
|
-
|
|
4829
|
-
.phantom {
|
|
4830
|
-
position: relative;
|
|
4831
|
-
display: list-item;
|
|
4832
|
-
border: 1px solid transparent;
|
|
4833
|
-
margin-left: calc((var(--depth) - 1) * 0.5rem);
|
|
4834
|
-
transition: all 0.2s ease-in-out;
|
|
4835
|
-
outline: 2px solid red;
|
|
4836
|
-
animation: size 0.3s ease-in-out;
|
|
3229
|
+
background-color: #e9ecef;
|
|
3230
|
+
color: #212529;
|
|
3231
|
+
border: 1px solid #dde0e3;
|
|
3232
|
+
border-radius: 0.375em;
|
|
4837
3233
|
}
|
|
4838
3234
|
|
|
4839
|
-
@keyframes size {
|
|
4840
|
-
from {
|
|
4841
|
-
height: 10px;
|
|
4842
|
-
}
|
|
4843
|
-
}
|
|
4844
3235
|
.sg-modal-tag::backdrop {
|
|
4845
3236
|
z-index: 1060;
|
|
4846
|
-
background:
|
|
4847
|
-
opacity: 0.75;
|
|
4848
|
-
animation-name: fadeInBackdrop;
|
|
4849
|
-
animation-duration: 0.3s;
|
|
4850
|
-
animation-timing-function: ease-in-out;
|
|
4851
|
-
animation-fill-mode: forwards;
|
|
4852
|
-
}
|
|
4853
|
-
.sg-modal-tag::backdrop.close {
|
|
4854
|
-
background: transparent;
|
|
4855
|
-
opacity: 0;
|
|
4856
|
-
animation-name: fadeInBackdrop;
|
|
4857
|
-
animation-duration: 0.3s;
|
|
4858
|
-
animation-timing-function: ease-in-out;
|
|
4859
|
-
animation-fill-mode: backwards;
|
|
3237
|
+
background: hsla(0, 0%, 0%, 0.5);
|
|
4860
3238
|
}
|
|
4861
3239
|
|
|
4862
|
-
@keyframes fadeInBackdrop {
|
|
4863
|
-
from {
|
|
4864
|
-
opacity: 0;
|
|
4865
|
-
}
|
|
4866
|
-
to {
|
|
4867
|
-
opacity: 0.5;
|
|
4868
|
-
}
|
|
4869
|
-
}
|
|
4870
|
-
@keyframes fadeOutBackdrop {
|
|
4871
|
-
from {
|
|
4872
|
-
opacity: 0.5;
|
|
4873
|
-
}
|
|
4874
|
-
to {
|
|
4875
|
-
opacity: 0;
|
|
4876
|
-
}
|
|
4877
|
-
}
|
|
4878
3240
|
.sg-modal-tag {
|
|
4879
3241
|
z-index: 1061;
|
|
4880
3242
|
padding: 0;
|
|
4881
|
-
|
|
4882
|
-
|
|
4883
|
-
|
|
4884
|
-
margin-left: auto;
|
|
3243
|
+
margin: 2rem;
|
|
3244
|
+
width: 100%;
|
|
3245
|
+
height: fit-content;
|
|
4885
3246
|
color: white;
|
|
4886
|
-
background-color: #
|
|
3247
|
+
background-color: #2e3236;
|
|
4887
3248
|
background-clip: padding-box;
|
|
4888
|
-
border:
|
|
4889
|
-
|
|
4890
|
-
|
|
4891
|
-
}
|
|
4892
|
-
.sg-modal-tag[open=""] {
|
|
4893
|
-
display: grid;
|
|
4894
|
-
width: 100%;
|
|
4895
|
-
grid-template-rows: [header-start] auto [header-end body-start] 1fr [body-end footer-start] auto [footer-end];
|
|
4896
|
-
animation-name: slide-in-up;
|
|
4897
|
-
animation-duration: 0.3s;
|
|
4898
|
-
animation-timing-function: ease-in-out;
|
|
4899
|
-
animation-fill-mode: forwards;
|
|
4900
|
-
}
|
|
4901
|
-
.sg-modal-tag.close {
|
|
4902
|
-
animation: scale-down 0.3s ease-in-out;
|
|
4903
|
-
animation-fill-mode: forwards;
|
|
4904
|
-
}
|
|
4905
|
-
.sg-modal-tag > form {
|
|
4906
|
-
grid: body;
|
|
4907
|
-
display: grid;
|
|
4908
|
-
grid-template-rows: [body-start] 1fr [body-end footer-start] auto [footer-end];
|
|
4909
|
-
}
|
|
4910
|
-
.sg-modal-tag > form .sg-modal-body {
|
|
4911
|
-
grid-row: body;
|
|
3249
|
+
border: 1px solid white;
|
|
3250
|
+
border-radius: 0.5rem;
|
|
3251
|
+
outline: 0;
|
|
4912
3252
|
}
|
|
4913
|
-
.sg-modal-
|
|
4914
|
-
|
|
3253
|
+
.sg-modal.sg-modal-static .sg-modal-tag {
|
|
3254
|
+
transition: transform 0.3s ease-out;
|
|
3255
|
+
transform: scale(1.02);
|
|
4915
3256
|
}
|
|
4916
3257
|
|
|
4917
|
-
|
|
4918
|
-
|
|
4919
|
-
|
|
4920
|
-
|
|
4921
|
-
|
|
4922
|
-
|
|
4923
|
-
|
|
4924
|
-
from {
|
|
4925
|
-
transform: translateY(-10%);
|
|
4926
|
-
opacity: 0.5;
|
|
4927
|
-
}
|
|
4928
|
-
}
|
|
4929
|
-
.sg-modal-fill {
|
|
4930
|
-
margin: auto;
|
|
4931
|
-
top: 0;
|
|
4932
|
-
height: 100%;
|
|
4933
|
-
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;
|
|
4934
3265
|
}
|
|
4935
3266
|
|
|
4936
3267
|
.sg-modal-header {
|
|
4937
|
-
grid-row: header;
|
|
4938
3268
|
display: flex;
|
|
3269
|
+
flex-shrink: 0;
|
|
4939
3270
|
align-items: center;
|
|
4940
3271
|
justify-content: space-between;
|
|
4941
3272
|
padding: 0.75rem;
|
|
4942
|
-
|
|
3273
|
+
border-bottom: 1px solid white;
|
|
3274
|
+
border-top-left-radius: 0.5rem;
|
|
3275
|
+
border-top-right-radius: 0.5rem;
|
|
4943
3276
|
}
|
|
4944
3277
|
.sg-modal-header .sg-button-close {
|
|
4945
3278
|
padding: 0.5rem 0.5rem;
|
|
@@ -4947,105 +3280,55 @@ textarea.sg-form-control {
|
|
|
4947
3280
|
}
|
|
4948
3281
|
|
|
4949
3282
|
.sg-modal-title {
|
|
4950
|
-
margin: 0;
|
|
3283
|
+
margin-bottom: 0;
|
|
4951
3284
|
}
|
|
4952
3285
|
|
|
4953
3286
|
.sg-modal-body {
|
|
4954
|
-
grid-row: body;
|
|
4955
3287
|
position: relative;
|
|
3288
|
+
flex: 1 1 auto;
|
|
4956
3289
|
padding: 1rem;
|
|
4957
|
-
background-color:
|
|
4958
|
-
min-height: 20ch;
|
|
4959
|
-
overflow: auto;
|
|
4960
|
-
}
|
|
4961
|
-
.sg-modal-body p {
|
|
4962
|
-
margin: 0;
|
|
3290
|
+
background-color: #43474a;
|
|
4963
3291
|
}
|
|
4964
3292
|
|
|
4965
3293
|
.sg-modal-footer {
|
|
4966
|
-
grid-row: footer;
|
|
4967
3294
|
display: flex;
|
|
4968
3295
|
flex-shrink: 0;
|
|
4969
3296
|
flex-wrap: wrap;
|
|
4970
3297
|
align-items: center;
|
|
4971
3298
|
justify-content: flex-end;
|
|
4972
3299
|
padding: 0.75rem;
|
|
4973
|
-
background-color: #
|
|
3300
|
+
background-color: #2e3236;
|
|
3301
|
+
border-top: 1px solid white;
|
|
3302
|
+
border-bottom-right-radius: 0.5rem;
|
|
3303
|
+
border-bottom-left-radius: 0.5rem;
|
|
4974
3304
|
gap: 0.5rem;
|
|
4975
3305
|
}
|
|
4976
3306
|
|
|
4977
|
-
|
|
4978
|
-
max-width: 300px;
|
|
4979
|
-
}
|
|
4980
|
-
|
|
4981
|
-
.sg-modal-md {
|
|
4982
|
-
max-width: 500px;
|
|
4983
|
-
}
|
|
4984
|
-
|
|
4985
|
-
.sg-modal-lg {
|
|
4986
|
-
max-width: 700px;
|
|
4987
|
-
}
|
|
4988
|
-
|
|
4989
|
-
@media (max-width: 324px) {
|
|
3307
|
+
@media (max-width: 575px) {
|
|
4990
3308
|
.sg-modal-tag {
|
|
4991
|
-
margin:
|
|
4992
|
-
top: 0;
|
|
4993
|
-
width: 100%;
|
|
3309
|
+
margin: 0.5rem;
|
|
4994
3310
|
}
|
|
4995
3311
|
}
|
|
4996
|
-
@media (min-width:
|
|
4997
|
-
.sg-modal-
|
|
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 {
|
|
4998
3319
|
max-width: 300px;
|
|
4999
3320
|
}
|
|
5000
3321
|
}
|
|
5001
|
-
@media (min-width:
|
|
5002
|
-
.
|
|
5003
|
-
max-width:
|
|
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;
|
|
5004
3330
|
}
|
|
5005
3331
|
}
|
|
5006
|
-
@media (min-width: 768px) {
|
|
5007
|
-
.sg-modal-lg {
|
|
5008
|
-
max-width: 700px;
|
|
5009
|
-
}
|
|
5010
|
-
}
|
|
5011
|
-
/*
|
|
5012
|
-
@each $breakpoint, $value in $grid-breakpoints {
|
|
5013
|
-
@if $breakpoint == "xs" {
|
|
5014
|
-
@media (max-width: 575px) {
|
|
5015
|
-
.sg-modal-tag {
|
|
5016
|
-
margin: 0.5rem auto;
|
|
5017
|
-
}
|
|
5018
|
-
}
|
|
5019
|
-
}
|
|
5020
|
-
@if $breakpoint == "sm" {
|
|
5021
|
-
@media (min-width: 576px) {
|
|
5022
|
-
.sg-modal-tag {
|
|
5023
|
-
max-width: 500px;
|
|
5024
|
-
margin-right: auto;
|
|
5025
|
-
margin-left: auto;
|
|
5026
|
-
}
|
|
5027
|
-
.sg-modal-sm {
|
|
5028
|
-
max-width: 300px
|
|
5029
|
-
}
|
|
5030
|
-
}
|
|
5031
|
-
}
|
|
5032
|
-
@else if $breakpoint == "lg" {
|
|
5033
|
-
@media (min-width: 992px) {
|
|
5034
|
-
.modal-lg, .modal-xl {
|
|
5035
|
-
max-width: 800px;
|
|
5036
|
-
}
|
|
5037
|
-
}
|
|
5038
|
-
}
|
|
5039
|
-
@else if $breakpoint == "xl" {
|
|
5040
|
-
@media (min-width: 1200px) {
|
|
5041
|
-
.modal-xl {
|
|
5042
|
-
max-width: 1140px;
|
|
5043
|
-
}
|
|
5044
|
-
}
|
|
5045
|
-
}
|
|
5046
|
-
}
|
|
5047
|
-
*/
|
|
5048
|
-
/*
|
|
5049
3332
|
.sg-modal-open {
|
|
5050
3333
|
overflow: hidden;
|
|
5051
3334
|
}
|
|
@@ -5054,25 +3337,24 @@ textarea.sg-form-control {
|
|
|
5054
3337
|
position: fixed;
|
|
5055
3338
|
top: 0;
|
|
5056
3339
|
left: 0;
|
|
5057
|
-
z-index:
|
|
3340
|
+
z-index: 1050;
|
|
5058
3341
|
width: 100vw;
|
|
5059
3342
|
height: 100vh;
|
|
5060
3343
|
background-color: black;
|
|
5061
|
-
|
|
5062
|
-
// Fade for backdrop
|
|
5063
|
-
&.fadeIn {
|
|
5064
|
-
animation-name: fadeInBackdrop;
|
|
5065
|
-
animation-duration: .3s;
|
|
5066
|
-
animation-timing-function: ease-out;
|
|
5067
|
-
animation-fill-mode: forwards;
|
|
5068
|
-
}
|
|
5069
|
-
&.fadeOut {
|
|
5070
|
-
animation-name: fadeOutBackdrop;
|
|
5071
|
-
animation-duration: .3s;
|
|
5072
|
-
animation-timing-function: ease-out;
|
|
5073
|
-
animation-fill-mode: forwards;
|
|
5074
|
-
}
|
|
5075
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
|
+
|
|
5076
3358
|
@keyframes fadeInBackdrop {
|
|
5077
3359
|
0% {
|
|
5078
3360
|
opacity: 0;
|
|
@@ -5089,113 +3371,94 @@ textarea.sg-form-control {
|
|
|
5089
3371
|
opacity: 0;
|
|
5090
3372
|
}
|
|
5091
3373
|
}
|
|
5092
|
-
|
|
5093
|
-
.sg-modal { //scroll ocntainer
|
|
3374
|
+
.sg-modal {
|
|
5094
3375
|
position: fixed;
|
|
5095
3376
|
top: 0;
|
|
5096
3377
|
left: 0;
|
|
5097
|
-
z-index:
|
|
3378
|
+
z-index: 1060;
|
|
5098
3379
|
display: block;
|
|
5099
3380
|
width: 100%;
|
|
5100
3381
|
height: 100%;
|
|
5101
3382
|
overflow-x: hidden;
|
|
5102
3383
|
overflow-y: auto;
|
|
5103
|
-
// Prevent Chrome on Windows from adding a focus outline. For details, see
|
|
5104
|
-
// https://github.com/twbs/bootstrap/pull/10951.
|
|
5105
3384
|
outline: 0;
|
|
5106
|
-
// We deliberately don't use `-webkit-overflow-scrolling: touch;` due to a
|
|
5107
|
-
// gnarly iOS Safari bug: https://bugs.webkit.org/show_bug.cgi?id=158342
|
|
5108
|
-
// See also https://github.com/twbs/bootstrap/issues/17695
|
|
5109
3385
|
}
|
|
5110
3386
|
|
|
5111
|
-
.sg-modal-dialog {
|
|
5112
|
-
z-index:
|
|
3387
|
+
.sg-modal-dialog {
|
|
3388
|
+
z-index: 1061;
|
|
5113
3389
|
position: relative;
|
|
5114
3390
|
width: auto;
|
|
5115
|
-
margin:
|
|
5116
|
-
// allow clicks to pass through for custom click handling to close modal
|
|
3391
|
+
margin: 2rem;
|
|
5117
3392
|
pointer-events: none;
|
|
5118
|
-
|
|
5119
|
-
|
|
5120
|
-
|
|
5121
|
-
|
|
5122
|
-
|
|
5123
|
-
|
|
5124
|
-
|
|
5125
|
-
|
|
5126
|
-
|
|
5127
|
-
|
|
5128
|
-
|
|
5129
|
-
|
|
5130
|
-
|
|
5131
|
-
|
|
5132
|
-
|
|
5133
|
-
|
|
5134
|
-
|
|
5135
|
-
}
|
|
5136
|
-
@keyframes fadeIn {
|
|
5137
|
-
0% {
|
|
5138
|
-
opacity: 0;
|
|
5139
|
-
top: -50px;
|
|
5140
|
-
}
|
|
5141
|
-
100% {
|
|
5142
|
-
opacity: 1;
|
|
5143
|
-
top: 0px;
|
|
5144
|
-
}
|
|
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;
|
|
5145
3410
|
}
|
|
5146
|
-
|
|
5147
|
-
|
|
5148
|
-
|
|
5149
|
-
opacity: 1;
|
|
5150
|
-
top: 0px;
|
|
5151
|
-
}
|
|
5152
|
-
100% {
|
|
5153
|
-
opacity: 0;
|
|
5154
|
-
top: -50px;
|
|
5155
|
-
}
|
|
3411
|
+
100% {
|
|
3412
|
+
opacity: 1;
|
|
3413
|
+
top: 0px;
|
|
5156
3414
|
}
|
|
5157
|
-
|
|
5158
|
-
|
|
5159
|
-
|
|
5160
|
-
|
|
5161
|
-
|
|
3415
|
+
}
|
|
3416
|
+
@keyframes fadeOut {
|
|
3417
|
+
0% {
|
|
3418
|
+
opacity: 1;
|
|
3419
|
+
top: 0px;
|
|
5162
3420
|
}
|
|
3421
|
+
100% {
|
|
3422
|
+
opacity: 0;
|
|
3423
|
+
top: -50px;
|
|
3424
|
+
}
|
|
3425
|
+
}
|
|
3426
|
+
.sg-modal.sg-modal-static .sg-modal-dialog {
|
|
3427
|
+
transition: transform 0.3s ease-out;
|
|
3428
|
+
transform: scale(1.02);
|
|
5163
3429
|
}
|
|
5164
3430
|
|
|
5165
3431
|
.sg-modal-dialog-scrollable {
|
|
5166
|
-
height: calc(100% -
|
|
5167
|
-
|
|
5168
|
-
|
|
5169
|
-
|
|
5170
|
-
|
|
5171
|
-
}
|
|
5172
|
-
|
|
5173
|
-
.sg-modal-body {
|
|
5174
|
-
overflow-y: auto;
|
|
5175
|
-
}
|
|
3432
|
+
height: calc(100% - 1rem);
|
|
3433
|
+
}
|
|
3434
|
+
.sg-modal-dialog-scrollable .sg-modal-content {
|
|
3435
|
+
max-height: 100%;
|
|
3436
|
+
overflow: hidden;
|
|
5176
3437
|
}
|
|
3438
|
+
.sg-modal-dialog-scrollable .sg-modal-body {
|
|
3439
|
+
overflow-y: auto;
|
|
3440
|
+
}
|
|
3441
|
+
|
|
5177
3442
|
.sg-modal-dialog-centered {
|
|
5178
3443
|
display: flex;
|
|
5179
3444
|
justify-content: center;
|
|
5180
3445
|
align-items: center;
|
|
5181
3446
|
height: 100dvh;
|
|
5182
3447
|
max-width: 100dvw;
|
|
5183
|
-
margin:0;
|
|
3448
|
+
margin: 0;
|
|
5184
3449
|
}
|
|
5185
3450
|
|
|
5186
3451
|
.sg-modal-content {
|
|
5187
3452
|
position: relative;
|
|
5188
3453
|
display: flex;
|
|
5189
3454
|
flex-direction: column;
|
|
5190
|
-
width: 100%;
|
|
5191
|
-
|
|
5192
|
-
color: $sg-modal-text-color;
|
|
3455
|
+
width: 100%;
|
|
3456
|
+
color: white;
|
|
5193
3457
|
pointer-events: auto;
|
|
5194
|
-
background-color:
|
|
3458
|
+
background-color: #2e3236;
|
|
5195
3459
|
background-clip: padding-box;
|
|
5196
|
-
border: 1px solid
|
|
5197
|
-
border-radius:
|
|
5198
|
-
// Remove focus outline from opened modal
|
|
3460
|
+
border: 1px solid white;
|
|
3461
|
+
border-radius: 0.5rem;
|
|
5199
3462
|
outline: 0;
|
|
5200
3463
|
}
|
|
5201
3464
|
|
|
@@ -5203,16 +3466,17 @@ textarea.sg-form-control {
|
|
|
5203
3466
|
display: flex;
|
|
5204
3467
|
flex-shrink: 0;
|
|
5205
3468
|
align-items: center;
|
|
5206
|
-
justify-content: space-between;
|
|
3469
|
+
justify-content: space-between;
|
|
5207
3470
|
padding: 0.75rem;
|
|
5208
|
-
border-bottom: 1px solid
|
|
5209
|
-
|
|
5210
|
-
|
|
5211
|
-
|
|
5212
|
-
|
|
5213
|
-
|
|
5214
|
-
|
|
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;
|
|
5215
3478
|
}
|
|
3479
|
+
|
|
5216
3480
|
.sg-modal-title {
|
|
5217
3481
|
margin-bottom: 0;
|
|
5218
3482
|
}
|
|
@@ -5221,8 +3485,9 @@ textarea.sg-form-control {
|
|
|
5221
3485
|
position: relative;
|
|
5222
3486
|
flex: 1 1 auto;
|
|
5223
3487
|
padding: 1rem;
|
|
5224
|
-
background-color:
|
|
3488
|
+
background-color: #43474a;
|
|
5225
3489
|
}
|
|
3490
|
+
|
|
5226
3491
|
.sg-modal-footer {
|
|
5227
3492
|
display: flex;
|
|
5228
3493
|
flex-shrink: 0;
|
|
@@ -5230,55 +3495,38 @@ textarea.sg-form-control {
|
|
|
5230
3495
|
align-items: center;
|
|
5231
3496
|
justify-content: flex-end;
|
|
5232
3497
|
padding: 0.75rem;
|
|
5233
|
-
background-color:
|
|
5234
|
-
border-top: 1px solid
|
|
5235
|
-
|
|
5236
|
-
|
|
3498
|
+
background-color: #2e3236;
|
|
3499
|
+
border-top: 1px solid white;
|
|
3500
|
+
border-bottom-right-radius: 0.5rem;
|
|
3501
|
+
border-bottom-left-radius: 0.5rem;
|
|
5237
3502
|
gap: 0.5rem;
|
|
5238
3503
|
}
|
|
5239
3504
|
|
|
5240
|
-
|
|
5241
|
-
|
|
5242
|
-
|
|
5243
|
-
|
|
5244
|
-
|
|
5245
|
-
|
|
5246
|
-
|
|
5247
|
-
|
|
5248
|
-
|
|
5249
|
-
|
|
5250
|
-
|
|
5251
|
-
|
|
5252
|
-
|
|
5253
|
-
}
|
|
5254
|
-
|
|
5255
|
-
|
|
5256
|
-
|
|
5257
|
-
|
|
5258
|
-
|
|
5259
|
-
|
|
5260
|
-
|
|
5261
|
-
|
|
5262
|
-
|
|
5263
|
-
|
|
5264
|
-
|
|
5265
|
-
}
|
|
5266
|
-
@else if $breakpoint == "lg" {
|
|
5267
|
-
@media (min-width: 992px) {
|
|
5268
|
-
.modal-lg, .modal-xl {
|
|
5269
|
-
max-width: 800px;
|
|
5270
|
-
}
|
|
5271
|
-
}
|
|
5272
|
-
}
|
|
5273
|
-
@else if $breakpoint == "xl" {
|
|
5274
|
-
@media (min-width: 1200px) {
|
|
5275
|
-
.modal-xl {
|
|
5276
|
-
max-width: 1140px;
|
|
5277
|
-
}
|
|
5278
|
-
}
|
|
5279
|
-
}
|
|
5280
|
-
}
|
|
5281
|
-
*/
|
|
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
|
+
}
|
|
5282
3530
|
.sg-nav {
|
|
5283
3531
|
display: flex;
|
|
5284
3532
|
flex-wrap: wrap;
|
|
@@ -5288,63 +3536,36 @@ $grid-breakpoints: (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 140
|
|
|
5288
3536
|
}
|
|
5289
3537
|
|
|
5290
3538
|
.sg-nav-link {
|
|
3539
|
+
display: block;
|
|
5291
3540
|
padding: 0.5rem 1rem;
|
|
5292
3541
|
text-decoration: none;
|
|
5293
|
-
display: flex;
|
|
5294
|
-
align-items: center;
|
|
5295
|
-
gap: 0.5rem;
|
|
5296
|
-
margin-block: auto;
|
|
5297
|
-
color: var(--sg-navbar-link-color);
|
|
5298
|
-
}
|
|
5299
|
-
.sg-nav-link:hover {
|
|
5300
|
-
color: var(--sg-navbar-hover-color);
|
|
5301
3542
|
}
|
|
5302
3543
|
.sg-nav-link.disabled {
|
|
5303
3544
|
pointer-events: none;
|
|
5304
3545
|
cursor: default;
|
|
5305
3546
|
}
|
|
5306
3547
|
|
|
5307
|
-
[data-navdropdown=true] .sg-nav-link {
|
|
5308
|
-
color: var(--sg-navbar-hover-color);
|
|
5309
|
-
font-size: 0.85rem;
|
|
5310
|
-
text-decoration: none;
|
|
5311
|
-
}
|
|
5312
|
-
|
|
5313
3548
|
.sg-nav-item {
|
|
5314
3549
|
margin-block: auto;
|
|
5315
3550
|
}
|
|
5316
3551
|
|
|
5317
3552
|
.sg-navbar {
|
|
5318
|
-
--sg-navbar-bg:
|
|
5319
|
-
--sg-navbar-
|
|
5320
|
-
--sg-navbar-
|
|
5321
|
-
--sg-navbar-
|
|
5322
|
-
--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);
|
|
5323
3557
|
--sg-navbar-active-color: white;
|
|
5324
|
-
--sg-navbar-
|
|
5325
|
-
|
|
5326
|
-
background
|
|
5327
|
-
|
|
5328
|
-
min-height: 3rem;
|
|
5329
|
-
z-index: 990;
|
|
5330
|
-
box-sizing: border-box;
|
|
5331
|
-
border: 2px outset color-mix(in srgb, white 5%, var(--sg-navbar-bg));
|
|
5332
|
-
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;
|
|
5333
3562
|
display: flex;
|
|
5334
3563
|
flex-wrap: wrap;
|
|
5335
3564
|
align-items: center;
|
|
5336
3565
|
padding: 0.5rem 0rem;
|
|
5337
|
-
position: sticky;
|
|
5338
|
-
top: 0;
|
|
5339
|
-
left: 0;
|
|
5340
3566
|
}
|
|
5341
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,
|
|
5342
|
-
.sg-navbar > .sg-container-fluid
|
|
5343
|
-
.sg-navbar > .sg-container-sm,
|
|
5344
|
-
.sg-navbar > .sg-container-md,
|
|
5345
|
-
.sg-navbar > .sg-container-lg,
|
|
5346
|
-
.sg-navbar > .sg-container-xl,
|
|
5347
|
-
.sg-navbar > .sg-container-xxl {
|
|
3568
|
+
.sg-navbar > .sg-container-fluid {
|
|
5348
3569
|
display: flex;
|
|
5349
3570
|
flex-wrap: inherit;
|
|
5350
3571
|
align-items: center;
|
|
@@ -5355,22 +3576,21 @@ $grid-breakpoints: (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 140
|
|
|
5355
3576
|
padding-bottom: 0.25rem;
|
|
5356
3577
|
margin-inline: 1rem;
|
|
5357
3578
|
margin-block: auto;
|
|
5358
|
-
color: var(--sg-navbar-
|
|
3579
|
+
color: var(--sg-navbar-brand-color);
|
|
5359
3580
|
text-decoration: none;
|
|
5360
3581
|
white-space: nowrap;
|
|
5361
3582
|
}
|
|
5362
3583
|
.sg-navbar-brand:hover, .sg-navbar-brand:focus {
|
|
5363
|
-
color: var(--sg-navbar-hover-color);
|
|
3584
|
+
color: var(--sg-navbar-brand-hover-color);
|
|
5364
3585
|
text-decoration: none;
|
|
5365
3586
|
}
|
|
5366
3587
|
|
|
5367
3588
|
.sg-navbar-nav {
|
|
5368
3589
|
--nav-link-padding-x: 0;
|
|
5369
3590
|
--nav-link-padding-y: 0.5rem;
|
|
5370
|
-
--nav-link-color:
|
|
5371
|
-
--nav-link-hover-color:
|
|
5372
|
-
--nav-link-disabled-color:
|
|
5373
|
-
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);
|
|
5374
3594
|
display: flex;
|
|
5375
3595
|
flex-direction: row;
|
|
5376
3596
|
padding-left: 0;
|
|
@@ -5388,7 +3608,7 @@ $grid-breakpoints: (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 140
|
|
|
5388
3608
|
.sg-navbar-text {
|
|
5389
3609
|
padding-top: 0.5rem;
|
|
5390
3610
|
padding-bottom: 0.5rem;
|
|
5391
|
-
color: var(--sg-navbar-
|
|
3611
|
+
color: var(--sg-navbar-color);
|
|
5392
3612
|
}
|
|
5393
3613
|
.sg-navbar-text a,
|
|
5394
3614
|
.sg-navbar-text a:hover,
|
|
@@ -5404,272 +3624,32 @@ $grid-breakpoints: (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 140
|
|
|
5404
3624
|
.sg-nav-dropdown-toggle {
|
|
5405
3625
|
background-color: transparent;
|
|
5406
3626
|
display: block;
|
|
5407
|
-
padding: 0.
|
|
5408
|
-
color:
|
|
3627
|
+
padding: 0.25rem 0.5rem;
|
|
3628
|
+
color: white;
|
|
5409
3629
|
text-decoration: none;
|
|
5410
|
-
border-radius: 0;
|
|
3630
|
+
border-radius: 0.375rem;
|
|
5411
3631
|
border: 1px solid transparent;
|
|
5412
|
-
cursor: pointer;
|
|
5413
3632
|
}
|
|
5414
3633
|
.sg-nav-dropdown-toggle:hover, .sg-nav-dropdown-toggle:focus {
|
|
3634
|
+
border-color: white;
|
|
5415
3635
|
background-color: transparent;
|
|
5416
|
-
border: 1px solid transparent;
|
|
5417
|
-
color: var(--sg-navbar-hover-color);
|
|
5418
3636
|
}
|
|
5419
3637
|
.sg-nav-dropdown-toggle:active {
|
|
5420
3638
|
background-color: transparent;
|
|
5421
3639
|
}
|
|
5422
|
-
.sg-nav-dropdown-toggle:focus-visible, .sg-nav-dropdown-toggle:focus {
|
|
5423
|
-
border: 1px solid transparent;
|
|
5424
|
-
}
|
|
5425
|
-
.sg-nav-dropdown-toggle[aria-expanded=true] {
|
|
5426
|
-
color: var(--sg-navbar-hover-color);
|
|
5427
|
-
}
|
|
5428
3640
|
.sg-nav-dropdown-toggle.disabled {
|
|
5429
3641
|
color: rgba(0, 0, 0, 0.24);
|
|
5430
3642
|
pointer-events: none;
|
|
5431
3643
|
cursor: default;
|
|
5432
3644
|
}
|
|
5433
3645
|
|
|
5434
|
-
.sg-offCanvas-open {
|
|
5435
|
-
overflow: hidden;
|
|
5436
|
-
}
|
|
5437
|
-
|
|
5438
|
-
.sg-offCanvas-backdrop {
|
|
5439
|
-
position: fixed;
|
|
5440
|
-
top: 0;
|
|
5441
|
-
left: 0;
|
|
5442
|
-
z-index: 1050;
|
|
5443
|
-
width: 100vw;
|
|
5444
|
-
height: 100vh;
|
|
5445
|
-
background-color: black;
|
|
5446
|
-
}
|
|
5447
|
-
.sg-offCanvas-backdrop.fadeIn {
|
|
5448
|
-
animation-name: fadeInBackdrop;
|
|
5449
|
-
animation-duration: 0.3s;
|
|
5450
|
-
animation-timing-function: ease-out;
|
|
5451
|
-
animation-fill-mode: forwards;
|
|
5452
|
-
}
|
|
5453
|
-
.sg-offCanvas-backdrop.fadeOut {
|
|
5454
|
-
animation-name: fadeOutBackdrop;
|
|
5455
|
-
animation-duration: 0.3s;
|
|
5456
|
-
animation-timing-function: ease-out;
|
|
5457
|
-
animation-fill-mode: forwards;
|
|
5458
|
-
}
|
|
5459
|
-
|
|
5460
|
-
@keyframes fadeInBackdrop {
|
|
5461
|
-
0% {
|
|
5462
|
-
opacity: 0;
|
|
5463
|
-
}
|
|
5464
|
-
100% {
|
|
5465
|
-
opacity: 0.5;
|
|
5466
|
-
}
|
|
5467
|
-
}
|
|
5468
|
-
@keyframes fadeOutBackdrop {
|
|
5469
|
-
0% {
|
|
5470
|
-
opacity: 0.5;
|
|
5471
|
-
}
|
|
5472
|
-
100% {
|
|
5473
|
-
opacity: 0;
|
|
5474
|
-
}
|
|
5475
|
-
}
|
|
5476
|
-
.sg-offCanvas {
|
|
5477
|
-
position: fixed;
|
|
5478
|
-
top: 0;
|
|
5479
|
-
left: 0;
|
|
5480
|
-
z-index: 1060;
|
|
5481
|
-
display: block;
|
|
5482
|
-
width: 100%;
|
|
5483
|
-
height: 100%;
|
|
5484
|
-
overflow-x: hidden;
|
|
5485
|
-
overflow-y: auto;
|
|
5486
|
-
outline: 0;
|
|
5487
|
-
}
|
|
5488
|
-
|
|
5489
|
-
.sg-offCanvas-dialog {
|
|
5490
|
-
z-index: 1061;
|
|
5491
|
-
position: relative;
|
|
5492
|
-
width: auto;
|
|
5493
|
-
max-height: 100vh;
|
|
5494
|
-
pointer-events: none;
|
|
5495
|
-
}
|
|
5496
|
-
.sg-offCanvas.fadeIn .sg-offCanvas-dialog {
|
|
5497
|
-
animation-name: fadeIn;
|
|
5498
|
-
animation-duration: 0.6s;
|
|
5499
|
-
animation-timing-function: ease-out;
|
|
5500
|
-
animation-fill-mode: forwards;
|
|
5501
|
-
}
|
|
5502
|
-
.sg-offCanvas.fadeOut .sg-offCanvas-dialog {
|
|
5503
|
-
animation-name: fadeOut;
|
|
5504
|
-
animation-duration: 0.3s;
|
|
5505
|
-
animation-timing-function: ease-out;
|
|
5506
|
-
animation-fill-mode: forwards;
|
|
5507
|
-
}
|
|
5508
|
-
@keyframes fadeIn {
|
|
5509
|
-
0% {
|
|
5510
|
-
opacity: 0;
|
|
5511
|
-
}
|
|
5512
|
-
100% {
|
|
5513
|
-
opacity: 1;
|
|
5514
|
-
}
|
|
5515
|
-
}
|
|
5516
|
-
@keyframes fadeOut {
|
|
5517
|
-
0% {
|
|
5518
|
-
opacity: 1;
|
|
5519
|
-
}
|
|
5520
|
-
100% {
|
|
5521
|
-
opacity: 0;
|
|
5522
|
-
}
|
|
5523
|
-
}
|
|
5524
|
-
|
|
5525
|
-
.sg-offCanvas-content {
|
|
5526
|
-
--sg-offcanvas-size: 478px;
|
|
5527
|
-
position: fixed;
|
|
5528
|
-
bottom: 0;
|
|
5529
|
-
display: flex;
|
|
5530
|
-
flex-direction: column;
|
|
5531
|
-
max-width: 100%;
|
|
5532
|
-
max-height: 100%;
|
|
5533
|
-
color: white;
|
|
5534
|
-
pointer-events: auto;
|
|
5535
|
-
background-color: #2e3236;
|
|
5536
|
-
background-clip: padding-box;
|
|
5537
|
-
outline: 0;
|
|
5538
|
-
transition: transform 0.3s ease-in-out;
|
|
5539
|
-
/*
|
|
5540
|
-
&.sg-offCanvas-footer {
|
|
5541
|
-
display: flex;
|
|
5542
|
-
flex-shrink: 0;
|
|
5543
|
-
flex-wrap: wrap;
|
|
5544
|
-
align-items: center;
|
|
5545
|
-
justify-content: flex-end;
|
|
5546
|
-
padding: 0.75em;
|
|
5547
|
-
background-color: $sg-offCanvas-background-color;
|
|
5548
|
-
border-top: 1px solid $sg-offCanvas-text-color;
|
|
5549
|
-
@include border-bottom-radius($sg-offCanvas-radius);
|
|
5550
|
-
|
|
5551
|
-
gap: 0.5em;
|
|
5552
|
-
}
|
|
5553
|
-
*/
|
|
5554
|
-
}
|
|
5555
|
-
.sg-offCanvas-content.sg-offcanvas-start {
|
|
5556
|
-
top: 0;
|
|
5557
|
-
left: 0;
|
|
5558
|
-
width: var(--sg-offcanvas-size);
|
|
5559
|
-
border-right: 1px solid #2e3236;
|
|
5560
|
-
transform: translateX(-100%);
|
|
5561
|
-
}
|
|
5562
|
-
.sg-offCanvas-content.sg-offcanvas-end {
|
|
5563
|
-
top: 0;
|
|
5564
|
-
right: 0;
|
|
5565
|
-
width: var(--sg-offcanvas-size);
|
|
5566
|
-
border-left: 1px solid #2e3236;
|
|
5567
|
-
transform: translateX(100%);
|
|
5568
|
-
}
|
|
5569
|
-
.sg-offCanvas-content.sg-offcanvas-top {
|
|
5570
|
-
top: 0;
|
|
5571
|
-
right: 0;
|
|
5572
|
-
left: 0;
|
|
5573
|
-
height: var(--sg-offcanvas-size);
|
|
5574
|
-
max-height: 100%;
|
|
5575
|
-
border-bottom: 1px solid #2e3236;
|
|
5576
|
-
transform: translateY(-100%);
|
|
5577
|
-
}
|
|
5578
|
-
.sg-offCanvas-content.sg-offcanvas-bottom {
|
|
5579
|
-
right: 0;
|
|
5580
|
-
left: 0;
|
|
5581
|
-
height: var(--sg-offcanvas-size);
|
|
5582
|
-
max-height: 100%;
|
|
5583
|
-
border-top: 1px solid #2e3236;
|
|
5584
|
-
transform: translateY(100%);
|
|
5585
|
-
}
|
|
5586
|
-
.sg-offCanvas-content.sg-slide-in {
|
|
5587
|
-
transform: none;
|
|
5588
|
-
}
|
|
5589
|
-
.sg-offCanvas-content.sg-offCanvas-static {
|
|
5590
|
-
transition: transform 0.3s ease-out;
|
|
5591
|
-
transform: scaleX(1.02);
|
|
5592
|
-
}
|
|
5593
|
-
.sg-offCanvas-content .sg-offCanvas-header {
|
|
5594
|
-
display: flex;
|
|
5595
|
-
flex-shrink: 0;
|
|
5596
|
-
align-items: center;
|
|
5597
|
-
justify-content: space-between;
|
|
5598
|
-
padding: 1em;
|
|
5599
|
-
}
|
|
5600
|
-
.sg-offCanvas-content .sg-offCanvas-header .sg-button-close {
|
|
5601
|
-
padding: 0.5em 0.5em;
|
|
5602
|
-
margin: -0.25em -0.25em -0.25em auto;
|
|
5603
|
-
}
|
|
5604
|
-
.sg-offCanvas-content .sg-offCanvas-title {
|
|
5605
|
-
margin-bottom: 0;
|
|
5606
|
-
}
|
|
5607
|
-
.sg-offCanvas-content .sg-offCanvas-body {
|
|
5608
|
-
position: relative;
|
|
5609
|
-
flex: 1 1 auto;
|
|
5610
|
-
padding: 1em;
|
|
5611
|
-
background-color: #43474a;
|
|
5612
|
-
overflow: auto;
|
|
5613
|
-
}
|
|
5614
|
-
|
|
5615
|
-
/*
|
|
5616
|
-
$offCanvas-lg: 800px !default;
|
|
5617
|
-
$offCanvas-xl: 1140px !default;
|
|
5618
|
-
|
|
5619
|
-
$container-max-widths: ( sm: 540px, md: 720px, lg: 960px, xl: 1140px, xxl: 1320px ) !default;
|
|
5620
|
-
$grid-breakpoints: (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 1400px ) !default;
|
|
5621
|
-
|
|
5622
|
-
@each $breakpoint, $value in $grid-breakpoints {
|
|
5623
|
-
@if $breakpoint == "xs" {
|
|
5624
|
-
@media (max-width: 575px) {
|
|
5625
|
-
.sg-offCanvas-dialog {
|
|
5626
|
-
margin: 0.5em;
|
|
5627
|
-
}
|
|
5628
|
-
}
|
|
5629
|
-
}
|
|
5630
|
-
@if $breakpoint == "sm" {
|
|
5631
|
-
@media (min-width: 576px) {
|
|
5632
|
-
.sg-offCanvas-dialog {
|
|
5633
|
-
max-width: 500px;
|
|
5634
|
-
margin-right: auto;
|
|
5635
|
-
margin-left: auto;
|
|
5636
|
-
}
|
|
5637
|
-
.sg-offCanvas-sm {
|
|
5638
|
-
max-width: 300px
|
|
5639
|
-
}
|
|
5640
|
-
}
|
|
5641
|
-
}
|
|
5642
|
-
@else if $breakpoint == "lg" {
|
|
5643
|
-
@media (min-width: 992px) {
|
|
5644
|
-
.offCanvas-lg, .offCanvas-xl {
|
|
5645
|
-
max-width: 800px;
|
|
5646
|
-
}
|
|
5647
|
-
}
|
|
5648
|
-
}
|
|
5649
|
-
@else if $breakpoint == "xl" {
|
|
5650
|
-
@media (min-width: 1200px) {
|
|
5651
|
-
.offCanvas-xl {
|
|
5652
|
-
max-width: 1140px;
|
|
5653
|
-
}
|
|
5654
|
-
}
|
|
5655
|
-
}
|
|
5656
|
-
}
|
|
5657
|
-
*/
|
|
5658
|
-
.sg-overlay-wrapper {
|
|
5659
|
-
max-width: 100%;
|
|
5660
|
-
max-height: 100%;
|
|
5661
|
-
z-index: 1010;
|
|
5662
|
-
}
|
|
5663
|
-
|
|
5664
3646
|
.sg-overlay-arrow {
|
|
5665
|
-
--width: 15px;
|
|
5666
|
-
--height: 20px;
|
|
5667
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>');
|
|
5668
3648
|
background-repeat: no-repeat no-repeat;
|
|
5669
3649
|
background-position: center center;
|
|
5670
3650
|
background-size: cover;
|
|
5671
|
-
height:
|
|
5672
|
-
width:
|
|
3651
|
+
height: 20px;
|
|
3652
|
+
width: 15px;
|
|
5673
3653
|
z-index: 1010;
|
|
5674
3654
|
}
|
|
5675
3655
|
.sg-overlay-arrow.overlay-position-right {
|
|
@@ -5685,30 +3665,6 @@ $grid-breakpoints: (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 140
|
|
|
5685
3665
|
transform: rotate(270deg);
|
|
5686
3666
|
}
|
|
5687
3667
|
|
|
5688
|
-
.sg-tooltip-arrow {
|
|
5689
|
-
--width: 10px;
|
|
5690
|
-
--heigth: 15px;
|
|
5691
|
-
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>');
|
|
5692
|
-
}
|
|
5693
|
-
|
|
5694
|
-
.sg-tooltip-wrapper {
|
|
5695
|
-
--input-text-color: white;
|
|
5696
|
-
--input-background-color: rgb(26, 27, 29);
|
|
5697
|
-
--input-border-color: color-mix(in oklab, rgb(26, 27, 29), white 25%);
|
|
5698
|
-
font-size: 0.8rem;
|
|
5699
|
-
display: flex;
|
|
5700
|
-
flex-wrap: wrap;
|
|
5701
|
-
max-width: 12rem;
|
|
5702
|
-
padding: 0.375em 0.5em;
|
|
5703
|
-
color: var(--input-text-color);
|
|
5704
|
-
background-color: var(--input-background-color);
|
|
5705
|
-
border: 2px outset var(--input-border-color);
|
|
5706
|
-
border-radius: 0;
|
|
5707
|
-
}
|
|
5708
|
-
.sg-tooltip-wrapper > * {
|
|
5709
|
-
font-size: 0.8rem;
|
|
5710
|
-
}
|
|
5711
|
-
|
|
5712
3668
|
.sg-moveable-popout {
|
|
5713
3669
|
--popout-index: 1010;
|
|
5714
3670
|
position: absolute;
|
|
@@ -5730,7 +3686,7 @@ $grid-breakpoints: (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 140
|
|
|
5730
3686
|
user-select: inherit;
|
|
5731
3687
|
margin-bottom: 0;
|
|
5732
3688
|
padding: 0.25em 0.5em;
|
|
5733
|
-
background-color:
|
|
3689
|
+
background-color: #212529;
|
|
5734
3690
|
border-bottom: 1px solid white;
|
|
5735
3691
|
}
|
|
5736
3692
|
.sg-moveable-popout .sg-popout-header > * {
|
|
@@ -5739,9 +3695,6 @@ $grid-breakpoints: (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 140
|
|
|
5739
3695
|
.sg-moveable-popout .sg-popout-header:first-child {
|
|
5740
3696
|
border-radius: 0.375em 0.375em 0 0;
|
|
5741
3697
|
}
|
|
5742
|
-
.sg-moveable-popout[data-move=true] {
|
|
5743
|
-
touch-action: none;
|
|
5744
|
-
}
|
|
5745
3698
|
.sg-moveable-popout[data-move=true] .sg-popout-header {
|
|
5746
3699
|
cursor: move;
|
|
5747
3700
|
}
|
|
@@ -5749,12 +3702,12 @@ $grid-breakpoints: (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 140
|
|
|
5749
3702
|
flex: 1 1 auto;
|
|
5750
3703
|
padding: 0.5em;
|
|
5751
3704
|
user-select: inherit;
|
|
5752
|
-
background-color: color-mix(in srgb, white 4%,
|
|
3705
|
+
background-color: color-mix(in srgb, white 4%, #212529);
|
|
5753
3706
|
}
|
|
5754
3707
|
.sg-moveable-popout .sg-popout-footer {
|
|
5755
3708
|
user-select: inherit;
|
|
5756
3709
|
padding: 0.25em 0.5em;
|
|
5757
|
-
background-color:
|
|
3710
|
+
background-color: #212529;
|
|
5758
3711
|
border-top: 1px solid white;
|
|
5759
3712
|
}
|
|
5760
3713
|
.sg-moveable-popout .sg-popout-footer:last-child {
|
|
@@ -5777,54 +3730,6 @@ $grid-breakpoints: (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 140
|
|
|
5777
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>');
|
|
5778
3731
|
}
|
|
5779
3732
|
|
|
5780
|
-
.sg-spinner {
|
|
5781
|
-
display: inline-block;
|
|
5782
|
-
border-radius: 50%;
|
|
5783
|
-
width: 1em;
|
|
5784
|
-
height: 1em;
|
|
5785
|
-
border: 0.2em solid white;
|
|
5786
|
-
border-right-color: transparent;
|
|
5787
|
-
margin: auto;
|
|
5788
|
-
animation-name: spinny;
|
|
5789
|
-
animation-duration: 0.5s;
|
|
5790
|
-
animation-timing-function: linear;
|
|
5791
|
-
animation-iteration-count: infinite;
|
|
5792
|
-
}
|
|
5793
|
-
|
|
5794
|
-
@keyframes spinny {
|
|
5795
|
-
100% {
|
|
5796
|
-
transform: rotate(360deg);
|
|
5797
|
-
}
|
|
5798
|
-
}
|
|
5799
|
-
.sg-table {
|
|
5800
|
-
--sg-table-padding: $sg-table-padding;
|
|
5801
|
-
width: 100%;
|
|
5802
|
-
margin-bottom: 1rem;
|
|
5803
|
-
color: black;
|
|
5804
|
-
vertical-align: top;
|
|
5805
|
-
border-color: black;
|
|
5806
|
-
}
|
|
5807
|
-
.sg-table > :not(caption) > * > * {
|
|
5808
|
-
padding: 0.5rem 0.5rem;
|
|
5809
|
-
background-color: transparent;
|
|
5810
|
-
border-bottom-width: 1px;
|
|
5811
|
-
box-shadow: inset 0 0 0 9999px transparent;
|
|
5812
|
-
}
|
|
5813
|
-
.sg-table > tbody {
|
|
5814
|
-
vertical-align: inherit;
|
|
5815
|
-
}
|
|
5816
|
-
.sg-table > thead {
|
|
5817
|
-
vertical-align: bottom;
|
|
5818
|
-
}
|
|
5819
|
-
|
|
5820
|
-
.sg-caption-top {
|
|
5821
|
-
caption-side: top;
|
|
5822
|
-
}
|
|
5823
|
-
|
|
5824
|
-
.sg-table-sm > :not(caption) > * > * {
|
|
5825
|
-
padding: 0.25rem 0.25rem;
|
|
5826
|
-
}
|
|
5827
|
-
|
|
5828
3733
|
.sg-tabs {
|
|
5829
3734
|
width: 100%;
|
|
5830
3735
|
}
|
|
@@ -5832,28 +3737,14 @@ $grid-breakpoints: (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 140
|
|
|
5832
3737
|
.sg-tabs-controls {
|
|
5833
3738
|
display: flex;
|
|
5834
3739
|
flex-direction: row;
|
|
5835
|
-
background-color: #212529;
|
|
5836
|
-
min-height: 2rem;
|
|
5837
|
-
border-bottom: 1px solid white;
|
|
5838
3740
|
}
|
|
5839
3741
|
|
|
5840
3742
|
.sg-tabs-button {
|
|
5841
3743
|
display: block;
|
|
5842
|
-
color: white;
|
|
5843
|
-
background-color: #212529;
|
|
5844
|
-
padding: 0.375rem 0.75rem;
|
|
5845
|
-
border: 2px solid #212529;
|
|
5846
|
-
font-size: 0.85rem;
|
|
5847
|
-
}
|
|
5848
|
-
.sg-tabs-button:hover {
|
|
5849
|
-
background-color: color-mix(in srgb, black 15%, #212529);
|
|
5850
|
-
}
|
|
5851
|
-
.sg-tabs-button:active {
|
|
5852
|
-
background-color: color-mix(in srgb, black 25%, #212529);
|
|
5853
3744
|
}
|
|
5854
3745
|
.sg-tabs-button.sg-active {
|
|
5855
|
-
|
|
5856
|
-
|
|
3746
|
+
background-color: #202020;
|
|
3747
|
+
color: white;
|
|
5857
3748
|
}
|
|
5858
3749
|
|
|
5859
3750
|
.sg-tabs-content {
|
|
@@ -5865,9 +3756,7 @@ $grid-breakpoints: (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px, xxl: 140
|
|
|
5865
3756
|
}
|
|
5866
3757
|
.sg-tabs-page.sg-active {
|
|
5867
3758
|
display: flex;
|
|
5868
|
-
flex-
|
|
5869
|
-
flex-direction: column;
|
|
5870
|
-
padding-block: 1rem;
|
|
3759
|
+
flex-direction: row;
|
|
5871
3760
|
}
|
|
5872
3761
|
|
|
5873
3762
|
/*# sourceMappingURL=stargazerui.css.map */
|