@openedx/paragon 23.0.0-alpha.2 → 23.0.0-alpha.4
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/bin/paragon-scripts.js +10 -0
- package/dist/Annotation/index.scss +16 -0
- package/dist/Button/index.d.ts +35 -0
- package/dist/Button/index.js +37 -15
- package/dist/Button/index.js.map +1 -1
- package/dist/Card/CardDeck.js +0 -2
- package/dist/Card/CardDeck.js.map +1 -1
- package/dist/Card/index.scss +6 -6
- package/dist/Carousel/index.scss +24 -1
- package/dist/Chip/ChipIcon.d.ts +13 -8
- package/dist/Chip/ChipIcon.js +0 -2
- package/dist/Chip/ChipIcon.js.map +1 -1
- package/dist/Chip/constants.d.ts +4 -0
- package/dist/Chip/constants.js +3 -2
- package/dist/Chip/constants.js.map +1 -0
- package/dist/Chip/index.d.ts +4 -3
- package/dist/Chip/index.js +2 -4
- package/dist/Chip/index.js.map +1 -1
- package/dist/ChipCarousel/index.js +0 -2
- package/dist/ChipCarousel/index.js.map +1 -1
- package/dist/CloseButton/index.scss +8 -0
- package/dist/ColorPicker/index.scss +1 -1
- package/dist/DataTable/index.scss +12 -0
- package/dist/Dropdown/dropdown-bootstrap.scss +6 -0
- package/dist/Dropzone/index.scss +34 -0
- package/dist/Form/_FormText.scss +1 -1
- package/dist/Form/_bootstrap-custom-forms.scss +40 -0
- package/dist/Form/_index.scss +9 -0
- package/dist/Form/_mixins.scss +22 -0
- package/dist/Hyperlink/index.d.ts +24 -0
- package/dist/Hyperlink/index.js +20 -32
- package/dist/Hyperlink/index.js.map +1 -1
- package/dist/Icon/index.d.ts +4 -2
- package/dist/Icon/index.js +1 -1
- package/dist/Icon/index.js.map +1 -1
- package/dist/IconButton/index.d.ts +342 -0
- package/dist/IconButton/index.js +18 -26
- package/dist/IconButton/index.js.map +1 -1
- package/dist/IconButton/index.scss +146 -0
- package/dist/Menu/index.scss +8 -0
- package/dist/Modal/ModalDialog.js +8 -4
- package/dist/Modal/ModalDialog.js.map +1 -1
- package/dist/Modal/ModalPopup.js +7 -1
- package/dist/Modal/ModalPopup.js.map +1 -1
- package/dist/Modal/_ModalDialog.scss +26 -2
- package/dist/Nav/index.scss +8 -0
- package/dist/Overlay/index.d.ts +128 -0
- package/dist/Overlay/index.js +8 -2
- package/dist/Overlay/index.js.map +1 -1
- package/dist/PageBanner/index.scss +2 -2
- package/dist/Pagination/pagination-bootstrap.scss +9 -0
- package/dist/Popover/index.scss +1 -1
- package/dist/ProductTour/Checkpoint.scss +1 -1
- package/dist/ProgressBar/bootstrap-progress.scss +20 -5
- package/dist/ProgressBar/index.scss +3 -3
- package/dist/Stepper/index.scss +1 -1
- package/dist/Sticky/index.scss +12 -0
- package/dist/Toast/index.scss +13 -1
- package/dist/Tooltip/index.d.ts +7 -0
- package/dist/Tooltip/index.js.map +1 -1
- package/dist/Tooltip/index.scss +16 -0
- package/dist/core.css +914 -470
- package/dist/core.css.map +1 -1
- package/dist/core.min.css +1 -1
- package/dist/index.d.ts +5 -5
- package/dist/index.js +7 -7
- package/dist/light.css +2035 -1315
- package/dist/light.css.map +1 -1
- package/dist/light.min.css +1 -1
- package/dist/setupTest.d.ts +2 -0
- package/dist/setupTest.js.map +1 -0
- package/dist/utils/types/bootstrap.d.ts +39 -0
- package/dist/utils/types/bootstrap.js +2 -0
- package/dist/utils/types/bootstrap.js.map +1 -0
- package/lib/build-tokens.js +67 -31
- package/package.json +11 -8
- package/src/Annotation/index.scss +16 -0
- package/src/Button/{Button.test.jsx → Button.test.tsx} +14 -2
- package/src/Button/__snapshots__/{Button.test.jsx.snap → Button.test.tsx.snap} +19 -2
- package/src/Button/{index.jsx → index.tsx} +58 -16
- package/src/Card/CardDeck.jsx +0 -3
- package/src/Card/README.md +0 -31
- package/src/Card/index.scss +6 -6
- package/src/Carousel/index.scss +24 -1
- package/src/Chip/{Chip.test.jsx → Chip.test.tsx} +5 -7
- package/src/Chip/ChipIcon.tsx +8 -8
- package/src/Chip/{constants.js → constants.ts} +1 -1
- package/src/Chip/index.tsx +6 -8
- package/src/ChipCarousel/index.tsx +0 -2
- package/src/CloseButton/index.scss +8 -0
- package/src/ColorPicker/index.scss +1 -1
- package/src/DataTable/index.scss +12 -0
- package/src/Dropdown/dropdown-bootstrap.scss +6 -0
- package/src/Dropzone/index.scss +34 -0
- package/src/Form/_FormText.scss +1 -1
- package/src/Form/_bootstrap-custom-forms.scss +40 -0
- package/src/Form/_index.scss +9 -0
- package/src/Form/_mixins.scss +22 -0
- package/src/Hyperlink/{Hyperlink.test.jsx → Hyperlink.test.tsx} +21 -10
- package/src/Hyperlink/{index.jsx → index.tsx} +41 -37
- package/src/Icon/index.d.ts +4 -2
- package/src/Icon/index.jsx +1 -1
- package/src/IconButton/{IconButton.test.jsx → IconButton.test.tsx} +24 -3
- package/src/IconButton/__snapshots__/IconButton.test.tsx.snap +90 -0
- package/src/IconButton/index.scss +146 -0
- package/src/IconButton/{index.jsx → index.tsx} +66 -26
- package/src/Menu/index.scss +8 -0
- package/src/Modal/ModalDialog.jsx +7 -3
- package/src/Modal/ModalPopup.jsx +9 -1
- package/src/Modal/_ModalDialog.scss +26 -2
- package/src/Modal/modal-dialog.mdx +95 -6
- package/src/Modal/tests/ModalDialog.test.jsx +2 -0
- package/src/Modal/tests/ModalPopupNoMock.test.jsx +29 -0
- package/src/Nav/index.scss +8 -0
- package/src/Overlay/{index.jsx → index.tsx} +13 -8
- package/src/PageBanner/index.scss +2 -2
- package/src/Pagination/pagination-bootstrap.scss +9 -0
- package/src/Popover/index.scss +1 -1
- package/src/ProductTour/Checkpoint.scss +1 -1
- package/src/ProgressBar/bootstrap-progress.scss +20 -5
- package/src/ProgressBar/index.scss +3 -3
- package/src/Stepper/index.scss +1 -1
- package/src/Sticky/index.scss +12 -0
- package/src/Toast/index.scss +13 -1
- package/src/Tooltip/index.scss +16 -0
- package/src/Tooltip/{index.jsx → index.tsx} +9 -3
- package/src/index.d.ts +5 -5
- package/src/index.js +7 -7
- package/src/{setupTest.js → setupTest.ts} +1 -0
- package/src/utils/types/bootstrap.test.tsx +86 -0
- package/src/utils/types/bootstrap.ts +43 -0
- package/styles/css/core/abstraction-variables.css +44 -0
- package/styles/css/core/custom-media-breakpoints.css +3 -4
- package/styles/css/core/index.css +2 -1
- package/styles/css/core/variables.css +494 -430
- package/styles/css/themes/light/abstraction-variables.css +304 -0
- package/styles/css/themes/light/index.css +1 -0
- package/styles/css/themes/light/utility-classes.css +2 -3
- package/styles/css/themes/light/variables.css +1753 -1334
- package/styles/scss/core/_typography.scss +16 -4
- package/styles/scss/core/_utilities.scss +7 -3
- package/styles/scss/core/_variables.scss +43 -30
- package/styles/scss/core/core.scss +1 -0
- package/tokens/src/core/alias/size.json +6 -5
- package/tokens/src/core/components/ActionRow.json +3 -2
- package/tokens/src/core/components/Alert.json +12 -10
- package/tokens/src/core/components/Annotation.json +9 -7
- package/tokens/src/core/components/Avatar.json +9 -9
- package/tokens/src/core/components/AvatarButton.json +4 -3
- package/tokens/src/core/components/Badge.json +12 -9
- package/tokens/src/core/components/Breadcrumb.json +7 -5
- package/tokens/src/core/components/Bubble.json +4 -3
- package/tokens/src/core/components/Button/core.json +35 -59
- package/tokens/src/core/components/Card.json +33 -44
- package/tokens/src/core/components/Carousel.json +39 -13
- package/tokens/src/core/components/Chip.json +13 -21
- package/tokens/src/core/components/ChipCarousel.json +4 -5
- package/tokens/src/core/components/CloseButton.json +2 -6
- package/tokens/src/core/components/Code.json +9 -8
- package/tokens/src/core/components/Collapsible.json +10 -13
- package/tokens/src/core/components/ColorPicker.json +3 -2
- package/tokens/src/core/components/Container.json +6 -5
- package/tokens/src/core/components/DataTable.json +17 -9
- package/tokens/src/core/components/Dropdown.json +24 -29
- package/tokens/src/core/components/Dropzone.json +5 -7
- package/tokens/src/core/components/Form/other.json +5 -4
- package/tokens/src/core/components/Form/size.json +72 -119
- package/tokens/src/core/components/Form/spacing.json +39 -83
- package/tokens/src/core/components/Form/transition.json +43 -7
- package/tokens/src/core/components/Form/typography.json +24 -88
- package/tokens/src/core/components/Icon.json +6 -5
- package/tokens/src/core/components/IconButton.json +4 -7
- package/tokens/src/core/components/Image.json +7 -6
- package/tokens/src/core/components/Menu.json +14 -12
- package/tokens/src/core/components/Modal.json +26 -21
- package/tokens/src/core/components/Nav.json +14 -16
- package/tokens/src/core/components/Navbar.json +15 -30
- package/tokens/src/core/components/Pagination.json +23 -24
- package/tokens/src/core/components/Popover.json +18 -14
- package/tokens/src/core/components/ProductTour.json +8 -14
- package/tokens/src/core/components/ProgressBar.json +29 -14
- package/tokens/src/core/components/SearchField.json +7 -9
- package/tokens/src/core/components/SelectableBox.json +4 -3
- package/tokens/src/core/components/Sheet.json +3 -2
- package/tokens/src/core/components/Spinner.json +9 -7
- package/tokens/src/core/components/Stack.json +2 -1
- package/tokens/src/core/components/Stepper.json +12 -14
- package/tokens/src/core/components/Sticky.json +2 -1
- package/tokens/src/core/components/Tab.json +8 -7
- package/tokens/src/core/components/Tabs.json +5 -5
- package/tokens/src/core/components/Toast.json +11 -8
- package/tokens/src/core/components/Tooltip.json +13 -11
- package/tokens/src/core/components/general/caret.json +5 -3
- package/tokens/src/core/components/general/headings.json +5 -4
- package/tokens/src/core/components/general/hr.json +3 -2
- package/tokens/src/core/components/general/input.json +19 -19
- package/tokens/src/core/components/general/link.json +13 -12
- package/tokens/src/core/components/general/list.json +9 -6
- package/tokens/src/core/components/general/text.json +6 -12
- package/tokens/src/core/global/breakpoints.json +25 -6
- package/tokens/src/core/global/elevation.json +55 -13
- package/tokens/src/core/global/other.json +5 -1
- package/tokens/src/core/global/spacing.json +70 -17
- package/tokens/src/core/global/transition.json +41 -4
- package/tokens/src/core/global/typography.json +248 -53
- package/tokens/src/core/utilities/color.json +35 -4
- package/tokens/src/themes/light/alias/color.json +276 -75
- package/tokens/src/themes/light/components/Alert.json +15 -26
- package/tokens/src/themes/light/components/Annotation.json +27 -13
- package/tokens/src/themes/light/components/Avatar.json +2 -1
- package/tokens/src/themes/light/components/Badge.json +57 -122
- package/tokens/src/themes/light/components/Breadcrumb.json +6 -5
- package/tokens/src/themes/light/components/Bubble.json +9 -8
- package/tokens/src/themes/light/components/Button/brand.json +171 -119
- package/tokens/src/themes/light/components/Button/core.json +8 -9
- package/tokens/src/themes/light/components/Button/danger.json +171 -112
- package/tokens/src/themes/light/components/Button/dark.json +188 -106
- package/tokens/src/themes/light/components/Button/info.json +186 -112
- package/tokens/src/themes/light/components/Button/light.json +186 -110
- package/tokens/src/themes/light/components/Button/primary.json +178 -116
- package/tokens/src/themes/light/components/Button/secondary.json +166 -132
- package/tokens/src/themes/light/components/Button/success.json +176 -117
- package/tokens/src/themes/light/components/Button/tertiary.json +34 -60
- package/tokens/src/themes/light/components/Button/warning.json +164 -128
- package/tokens/src/themes/light/components/Card.json +10 -21
- package/tokens/src/themes/light/components/Carousel.json +12 -11
- package/tokens/src/themes/light/components/Chip.json +14 -26
- package/tokens/src/themes/light/components/CloseButton.json +12 -2
- package/tokens/src/themes/light/components/Code.json +7 -9
- package/tokens/src/themes/light/components/DataTable.json +7 -11
- package/tokens/src/themes/light/components/Dropdown.json +17 -20
- package/tokens/src/themes/light/components/Dropzone.json +49 -11
- package/tokens/src/themes/light/components/Form/color.json +101 -155
- package/tokens/src/themes/light/components/Form/elevation.json +38 -42
- package/tokens/src/themes/light/components/Form/other.json +44 -41
- package/tokens/src/themes/light/components/IconButton.json +408 -256
- package/tokens/src/themes/light/components/Image.json +7 -4
- package/tokens/src/themes/light/components/Menu.json +12 -10
- package/tokens/src/themes/light/components/Modal.json +22 -12
- package/tokens/src/themes/light/components/Nav.json +82 -94
- package/tokens/src/themes/light/components/Navbar.json +32 -76
- package/tokens/src/themes/light/components/OverflowScroll.json +3 -1
- package/tokens/src/themes/light/components/PageBanner.json +11 -10
- package/tokens/src/themes/light/components/Pagination.json +19 -23
- package/tokens/src/themes/light/components/Popover.json +22 -27
- package/tokens/src/themes/light/components/ProductTour.json +9 -20
- package/tokens/src/themes/light/components/ProgressBar.json +12 -10
- package/tokens/src/themes/light/components/Scrollable.json +3 -3
- package/tokens/src/themes/light/components/SearchField.json +9 -9
- package/tokens/src/themes/light/components/Sheet.json +6 -7
- package/tokens/src/themes/light/components/Stepper.json +12 -17
- package/tokens/src/themes/light/components/Sticky.json +31 -6
- package/tokens/src/themes/light/components/Tab.json +47 -24
- package/tokens/src/themes/light/components/Toast.json +26 -14
- package/tokens/src/themes/light/components/Tooltip.json +25 -10
- package/tokens/src/themes/light/components/general/body.json +3 -2
- package/tokens/src/themes/light/components/general/headings.json +2 -1
- package/tokens/src/themes/light/components/general/hr.json +3 -6
- package/tokens/src/themes/light/components/general/input.json +11 -4
- package/tokens/src/themes/light/components/general/link.json +34 -43
- package/tokens/src/themes/light/components/general/list.json +15 -19
- package/tokens/src/themes/light/components/general/text.json +5 -6
- package/tokens/src/themes/light/global/color.json +1592 -867
- package/tokens/src/themes/light/global/elevation.json +481 -93
- package/tokens/style-dictionary.js +342 -144
- package/tokens/utils.js +176 -6
- package/src/IconButton/__snapshots__/IconButton.test.jsx.snap +0 -20
- package/tokens/src/core/global/display.json +0 -22
- /package/src/Button/{ButtonGroup.test.jsx → ButtonGroup.test.tsx} +0 -0
- /package/src/Button/{ButtonToolbar.test.jsx → ButtonToolbar.test.tsx} +0 -0
- /package/src/Button/__snapshots__/{ButtonGroup.test.jsx.snap → ButtonGroup.test.tsx.snap} +0 -0
- /package/src/Button/__snapshots__/{ButtonToolbar.test.jsx.snap → ButtonToolbar.test.tsx.snap} +0 -0
- /package/src/Chip/__snapshots__/{Chip.test.jsx.snap → Chip.test.tsx.snap} +0 -0
- /package/src/Tooltip/{Tooltip.test.jsx → Tooltip.test.tsx} +0 -0
package/dist/core.css
CHANGED
|
@@ -112,65 +112,130 @@
|
|
|
112
112
|
--pgn-elevation-modal-zindex: 1050;
|
|
113
113
|
--pgn-elevation-modal-backdrop-zindex: 1040;
|
|
114
114
|
--pgn-elevation-dropdown-zindex: 1000;
|
|
115
|
-
--pgn-transition-collapse-width:
|
|
116
|
-
--pgn-transition-collapse-
|
|
117
|
-
--pgn-transition-
|
|
118
|
-
--pgn-transition-
|
|
119
|
-
--pgn-transition-
|
|
120
|
-
--pgn-transition-
|
|
121
|
-
--pgn-transition-
|
|
122
|
-
--pgn-transition-
|
|
123
|
-
--pgn-transition-
|
|
124
|
-
--pgn-transition-
|
|
125
|
-
--pgn-transition-
|
|
115
|
+
--pgn-transition-collapse-width-behavior: normal;
|
|
116
|
+
--pgn-transition-collapse-width-delay: 0s;
|
|
117
|
+
--pgn-transition-collapse-width-timing-function: ease;
|
|
118
|
+
--pgn-transition-collapse-width-duration: 0.35s;
|
|
119
|
+
--pgn-transition-collapse-width-property: width;
|
|
120
|
+
--pgn-transition-collapse-height-behavior: normal;
|
|
121
|
+
--pgn-transition-collapse-height-delay: 0s;
|
|
122
|
+
--pgn-transition-collapse-height-timing-function: ease;
|
|
123
|
+
--pgn-transition-collapse-height-duration: 0.35s;
|
|
124
|
+
--pgn-transition-collapse-height-property: height;
|
|
125
|
+
--pgn-transition-fade-behavior: normal;
|
|
126
|
+
--pgn-transition-fade-delay: 0s;
|
|
127
|
+
--pgn-transition-fade-timing-function: linear;
|
|
128
|
+
--pgn-transition-fade-duration: 0.15s;
|
|
129
|
+
--pgn-transition-fade-property: opacity;
|
|
130
|
+
--pgn-transition-base-behavior: normal;
|
|
131
|
+
--pgn-transition-base-delay: 0s;
|
|
132
|
+
--pgn-transition-base-timing-function: ease-in-out;
|
|
133
|
+
--pgn-transition-base-duration: 0.2s;
|
|
134
|
+
--pgn-transition-base-property: all;
|
|
135
|
+
--pgn-transition-progress-bar-transition-behavior: normal;
|
|
136
|
+
--pgn-transition-progress-bar-transition-delay: 0s;
|
|
137
|
+
--pgn-transition-progress-bar-transition-timing-function: ease;
|
|
138
|
+
--pgn-transition-progress-bar-transition-duration: 0.6s;
|
|
139
|
+
--pgn-transition-progress-bar-transition-property: width;
|
|
140
|
+
--pgn-transition-progress-bar-animation-timing-iteration-count: infinite;
|
|
141
|
+
--pgn-transition-progress-bar-animation-timing-delay: 0s;
|
|
142
|
+
--pgn-transition-progress-bar-animation-timing-timing-function: linear;
|
|
143
|
+
--pgn-transition-progress-bar-animation-timing-duration: 1s;
|
|
144
|
+
--pgn-transition-form-control-3-behavior: normal;
|
|
145
|
+
--pgn-transition-form-control-3-delay: 0s;
|
|
146
|
+
--pgn-transition-form-control-3-timing-function: ease-in-out;
|
|
147
|
+
--pgn-transition-form-control-3-duration: 0.15s;
|
|
148
|
+
--pgn-transition-form-control-3-property: box-shadow;
|
|
149
|
+
--pgn-transition-form-control-2-behavior: normal;
|
|
150
|
+
--pgn-transition-form-control-2-delay: 0s;
|
|
151
|
+
--pgn-transition-form-control-2-timing-function: ease-in-out;
|
|
152
|
+
--pgn-transition-form-control-2-duration: 0.15s;
|
|
153
|
+
--pgn-transition-form-control-2-property: border-color;
|
|
154
|
+
--pgn-transition-form-control-1-behavior: normal;
|
|
155
|
+
--pgn-transition-form-control-1-delay: 0s;
|
|
156
|
+
--pgn-transition-form-control-1-timing-function: ease-in-out;
|
|
157
|
+
--pgn-transition-form-control-1-duration: 0.15s;
|
|
158
|
+
--pgn-transition-form-control-1-property: background-color;
|
|
159
|
+
--pgn-transition-form-input-2-behavior: normal;
|
|
160
|
+
--pgn-transition-form-input-2-delay: 0s;
|
|
161
|
+
--pgn-transition-form-input-2-timing-function: ease-in-out;
|
|
162
|
+
--pgn-transition-form-input-2-duration: 0.15s;
|
|
163
|
+
--pgn-transition-form-input-2-property: box-shadow;
|
|
164
|
+
--pgn-transition-form-input-1-behavior: normal;
|
|
165
|
+
--pgn-transition-form-input-1-delay: 0s;
|
|
166
|
+
--pgn-transition-form-input-1-timing-function: ease-in-out;
|
|
167
|
+
--pgn-transition-form-input-1-duration: 0.15s;
|
|
168
|
+
--pgn-transition-form-input-1-property: border-color;
|
|
169
|
+
--pgn-transition-carousel-control-behavior: normal;
|
|
170
|
+
--pgn-transition-carousel-control-delay: 0ms;
|
|
171
|
+
--pgn-transition-carousel-control-timing-function: ease;
|
|
172
|
+
--pgn-transition-carousel-control-duration: 0.15s;
|
|
173
|
+
--pgn-transition-carousel-control-property: opacity;
|
|
174
|
+
--pgn-transition-carousel-indicator-behavior: normal;
|
|
175
|
+
--pgn-transition-carousel-indicator-delay: 0ms;
|
|
176
|
+
--pgn-transition-carousel-indicator-timing-function: ease;
|
|
177
|
+
--pgn-transition-carousel-indicator-duration: var(--pgn-transition-carousel-duration);
|
|
178
|
+
--pgn-transition-carousel-indicator-property: opacity;
|
|
179
|
+
--pgn-transition-carousel-duration: 0.6s;
|
|
180
|
+
--pgn-transition-carousel-base-behavior: normal;
|
|
181
|
+
--pgn-transition-carousel-base-delay: 0ms;
|
|
182
|
+
--pgn-transition-carousel-base-timing-function: ease-in-out;
|
|
183
|
+
--pgn-transition-carousel-base-duration: var(--pgn-transition-carousel-duration);
|
|
184
|
+
--pgn-transition-carousel-base-property: transform;
|
|
126
185
|
--pgn-transition-btn: none;
|
|
127
186
|
--pgn-transition-badge: none;
|
|
128
|
-
--pgn-typography-
|
|
187
|
+
--pgn-typography-print-page-size: a3;
|
|
188
|
+
--pgn-typography-line-height-display-mobile: 3.5rem;
|
|
189
|
+
--pgn-typography-line-height-display-base: 1;
|
|
190
|
+
--pgn-typography-line-height-micro: 0.938rem;
|
|
129
191
|
--pgn-typography-line-height-sm: 1.5;
|
|
130
192
|
--pgn-typography-line-height-lg: 1.5;
|
|
131
193
|
--pgn-typography-line-height-base: 1.5556;
|
|
132
|
-
--pgn-typography-font-weight-
|
|
194
|
+
--pgn-typography-font-weight-display-4: var(--pgn-typography-font-weight-bold);
|
|
195
|
+
--pgn-typography-font-weight-display-3: var(--pgn-typography-font-weight-bold);
|
|
196
|
+
--pgn-typography-font-weight-display-2: var(--pgn-typography-font-weight-bold);
|
|
197
|
+
--pgn-typography-font-weight-display-1: var(--pgn-typography-font-weight-bold);
|
|
198
|
+
--pgn-typography-font-weight-table-th: 700;
|
|
133
199
|
--pgn-typography-font-weight-lead: inherit;
|
|
200
|
+
--pgn-typography-font-weight-base: var(--pgn-typography-font-weight-normal);
|
|
134
201
|
--pgn-typography-font-weight-bolder: bolder;
|
|
135
202
|
--pgn-typography-font-weight-bold: 700;
|
|
136
203
|
--pgn-typography-font-weight-semi-bold: 500;
|
|
137
204
|
--pgn-typography-font-weight-normal: 400;
|
|
138
205
|
--pgn-typography-font-weight-light: 300;
|
|
139
206
|
--pgn-typography-font-weight-lighter: lighter;
|
|
140
|
-
--pgn-typography-font-size-
|
|
141
|
-
--pgn-typography-font-size-mobile-
|
|
142
|
-
--pgn-typography-font-size-
|
|
143
|
-
--pgn-typography-font-size-
|
|
144
|
-
--pgn-typography-font-size-
|
|
145
|
-
--pgn-typography-font-size-
|
|
146
|
-
--pgn-typography-font-size-
|
|
147
|
-
--pgn-typography-font-size-
|
|
148
|
-
--pgn-typography-font-size-
|
|
149
|
-
--pgn-typography-font-size-
|
|
150
|
-
--pgn-typography-font-size-
|
|
151
|
-
--pgn-typography-font-size-
|
|
152
|
-
--pgn-typography-font-size-
|
|
207
|
+
--pgn-typography-font-size-display-mobile-4: var(--pgn-typography-font-size-display-mobile-1);
|
|
208
|
+
--pgn-typography-font-size-display-mobile-3: var(--pgn-typography-font-size-display-mobile-1);
|
|
209
|
+
--pgn-typography-font-size-display-mobile-2: var(--pgn-typography-font-size-display-mobile-1);
|
|
210
|
+
--pgn-typography-font-size-display-mobile-1: 3.25rem;
|
|
211
|
+
--pgn-typography-font-size-display-4: 7.5rem;
|
|
212
|
+
--pgn-typography-font-size-display-3: 5.625rem;
|
|
213
|
+
--pgn-typography-font-size-display-2: 4.875rem;
|
|
214
|
+
--pgn-typography-font-size-display-1: 3.75rem;
|
|
215
|
+
--pgn-typography-font-size-h6-mobile: var(--pgn-typography-font-size-h6-base);
|
|
216
|
+
--pgn-typography-font-size-h6-base: 0.75rem;
|
|
217
|
+
--pgn-typography-font-size-h5-mobile: var(--pgn-typography-font-size-h5-base);
|
|
218
|
+
--pgn-typography-font-size-h5-base: 0.875rem;
|
|
219
|
+
--pgn-typography-font-size-h4-mobile: var(--pgn-typography-font-size-h4-base);
|
|
220
|
+
--pgn-typography-font-size-h4-base: 1.125rem;
|
|
221
|
+
--pgn-typography-font-size-h3-mobile: var(--pgn-typography-font-size-h3-base);
|
|
222
|
+
--pgn-typography-font-size-h3-base: 1.375rem;
|
|
223
|
+
--pgn-typography-font-size-h2-mobile: var(--pgn-typography-font-size-h2-base);
|
|
224
|
+
--pgn-typography-font-size-h2-base: 2rem;
|
|
225
|
+
--pgn-typography-font-size-h1-mobile: 2.25rem;
|
|
226
|
+
--pgn-typography-font-size-h1-base: 2.5rem;
|
|
227
|
+
--pgn-typography-font-size-micro: 0.688rem;
|
|
228
|
+
--pgn-typography-font-size-xs: 75%;
|
|
229
|
+
--pgn-typography-font-size-sm: 87.5%;
|
|
230
|
+
--pgn-typography-font-size-lg: calc(var(--pgn-typography-font-size-base) * 1.25);
|
|
153
231
|
--pgn-typography-font-size-base: 1.125rem;
|
|
154
232
|
--pgn-typography-font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
155
233
|
--pgn-typography-font-family-serif: serif;
|
|
156
234
|
--pgn-typography-font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
157
|
-
--pgn-typography-
|
|
158
|
-
--pgn-typography-
|
|
159
|
-
--pgn-typography-
|
|
160
|
-
--pgn-typography-
|
|
161
|
-
--pgn-typography-display-4: 7.5rem;
|
|
162
|
-
--pgn-typography-display-3: 5.625rem;
|
|
163
|
-
--pgn-typography-display-2: 4.875rem;
|
|
164
|
-
--pgn-typography-display-1: 3.75rem;
|
|
165
|
-
--pgn-typography-toast-font-size: .875rem;
|
|
166
|
-
--pgn-typography-spacer-line-height: 1px;
|
|
167
|
-
--pgn-typography-pagination-line-height: 1.5rem;
|
|
168
|
-
--pgn-typography-pagination-font-size-sm: .875rem;
|
|
169
|
-
--pgn-typography-nav-link-text-decoration: none;
|
|
170
|
-
--pgn-typography-nav-link-font-weight: 500;
|
|
171
|
-
--pgn-typography-menu-select-btn-link-text-decoration-thickness: .125rem;
|
|
172
|
-
--pgn-typography-menu-select-btn-link-text-decoration-line: underline;
|
|
173
|
-
--pgn-typography-image-figure-caption-font-size: 90%;
|
|
235
|
+
--pgn-typography-font-family-base: var(--pgn-typography-font-family-sans-serif);
|
|
236
|
+
--pgn-typography-blockquote-font-size: calc(var(--pgn-typography-font-size-base) * 1.25);
|
|
237
|
+
--pgn-typography-blockquote-small-font-size: var(--pgn-typography-font-size-sm);
|
|
238
|
+
--pgn-typography-dt-font-weight: var(--pgn-typography-font-weight-bold);
|
|
174
239
|
--pgn-typography-link-decoration-brand-inline-hover: underline;
|
|
175
240
|
--pgn-typography-link-decoration-brand-inline-base: underline;
|
|
176
241
|
--pgn-typography-link-decoration-brand-hover: underline;
|
|
@@ -183,254 +248,437 @@
|
|
|
183
248
|
--pgn-typography-link-decoration-inline-base: underline;
|
|
184
249
|
--pgn-typography-link-decoration-hover: underline;
|
|
185
250
|
--pgn-typography-link-decoration-base: none;
|
|
251
|
+
--pgn-typography-input-btn-line-height-lg: var(--pgn-typography-line-height-lg);
|
|
186
252
|
--pgn-typography-input-btn-line-height-sm: 1.4286;
|
|
187
253
|
--pgn-typography-input-btn-line-height-base: 1.3333;
|
|
188
254
|
--pgn-typography-input-btn-font-size-lg: 1.325rem;
|
|
189
|
-
--pgn-typography-input-btn-font-size-sm: .875rem;
|
|
255
|
+
--pgn-typography-input-btn-font-size-sm: 0.875rem;
|
|
190
256
|
--pgn-typography-input-btn-font-size-base: 1.125rem;
|
|
191
257
|
--pgn-typography-input-btn-font-family: inherit;
|
|
192
258
|
--pgn-typography-headings-line-height: 1.25;
|
|
259
|
+
--pgn-typography-headings-font-weight: var(--pgn-typography-font-weight-bold);
|
|
193
260
|
--pgn-typography-headings-font-family: inherit;
|
|
261
|
+
--pgn-typography-tooltip-font-size: var(--pgn-typography-font-size-sm);
|
|
262
|
+
--pgn-typography-toast-font-size: 0.875rem;
|
|
263
|
+
--pgn-typography-tabs-notification-font-size: var(--pgn-typography-font-size-xs);
|
|
264
|
+
--pgn-typography-spacer-line-height: 1px;
|
|
265
|
+
--pgn-typography-progress-bar-font-size: calc(var(--pgn-typography-font-size-base) * .75);
|
|
266
|
+
--pgn-typography-popover-font-size: var(--pgn-typography-font-size-sm);
|
|
267
|
+
--pgn-typography-pagination-line-height: 1.5rem;
|
|
268
|
+
--pgn-typography-pagination-font-size-sm: 0.875rem;
|
|
269
|
+
--pgn-typography-navbar-toggler-font-size: var(--pgn-typography-font-size-lg);
|
|
270
|
+
--pgn-typography-navbar-nav-link-height: calc(var(--pgn-typography-font-size-base) * var(--pgn-typography-line-height-base) + .5rem * 2);
|
|
271
|
+
--pgn-typography-navbar-brand-font-size: var(--pgn-typography-font-size-lg);
|
|
272
|
+
--pgn-typography-nav-link-text-decoration: none;
|
|
273
|
+
--pgn-typography-nav-link-font-weight: 500;
|
|
274
|
+
--pgn-typography-menu-select-btn-link-text-decoration-thickness: 0.125rem;
|
|
275
|
+
--pgn-typography-menu-select-btn-link-text-decoration-line: underline;
|
|
276
|
+
--pgn-typography-image-figure-caption-font-size: 90%;
|
|
277
|
+
--pgn-typography-form-feedback-tooltip-line-height: var(--pgn-typography-line-height-base);
|
|
278
|
+
--pgn-typography-form-feedback-tooltip-font-size: var(--pgn-typography-font-size-sm);
|
|
279
|
+
--pgn-typography-form-feedback-font-size: var(--pgn-typography-font-size-sm);
|
|
280
|
+
--pgn-typography-form-control-file-font-weight: var(--pgn-typography-form-input-font-weight);
|
|
281
|
+
--pgn-typography-form-control-file-font-family: var(--pgn-typography-form-input-font-family);
|
|
282
|
+
--pgn-typography-form-control-file-line-height: var(--pgn-typography-form-input-line-height-base);
|
|
283
|
+
--pgn-typography-form-control-select-line-height: var(--pgn-typography-form-input-line-height-base);
|
|
284
|
+
--pgn-typography-form-control-select-font-weight: var(--pgn-typography-form-input-font-weight);
|
|
285
|
+
--pgn-typography-form-control-select-font-size-lg: var(--pgn-typography-form-input-font-size-lg);
|
|
286
|
+
--pgn-typography-form-control-select-font-size-sm: var(--pgn-typography-form-input-font-size-sm);
|
|
287
|
+
--pgn-typography-form-control-select-font-size-base: var(--pgn-typography-form-input-font-size-base);
|
|
288
|
+
--pgn-typography-form-control-select-font-family: var(--pgn-typography-form-input-font-family);
|
|
289
|
+
--pgn-typography-form-input-line-height-lg: var(--pgn-typography-input-btn-line-height-lg);
|
|
290
|
+
--pgn-typography-form-input-line-height-sm: var(--pgn-typography-input-btn-line-height-sm);
|
|
291
|
+
--pgn-typography-form-input-line-height-base: var(--pgn-typography-input-btn-line-height-base);
|
|
292
|
+
--pgn-typography-form-input-font-weight: var(--pgn-typography-font-weight-base);
|
|
293
|
+
--pgn-typography-form-input-font-size-lg: var(--pgn-typography-input-btn-font-size-lg);
|
|
294
|
+
--pgn-typography-form-input-font-size-sm: var(--pgn-typography-input-btn-font-size-sm);
|
|
295
|
+
--pgn-typography-form-input-font-size-base: var(--pgn-typography-input-btn-font-size-base);
|
|
296
|
+
--pgn-typography-form-input-font-family: var(--pgn-typography-input-btn-font-family);
|
|
297
|
+
--pgn-typography-dropzone-restriction-msg-font-size: var(--pgn-typography-font-size-xs);
|
|
194
298
|
--pgn-typography-dropdown-item-text-decoration: none;
|
|
195
|
-
--pgn-typography-
|
|
299
|
+
--pgn-typography-dropdown-font-size: var(--pgn-typography-font-size-base);
|
|
300
|
+
--pgn-typography-code-kbd-nested-font-weight: var(--pgn-typography-font-weight-bold);
|
|
301
|
+
--pgn-typography-code-kbd-font-size: var(--pgn-typography-code-font-size);
|
|
302
|
+
--pgn-typography-code-font-size: var(--pgn-typography-font-size-sm);
|
|
303
|
+
--pgn-typography-close-button-font-weight: var(--pgn-typography-font-weight-bold);
|
|
304
|
+
--pgn-typography-close-button-font-size: calc(var(--pgn-typography-font-size-base) * 1.5);
|
|
305
|
+
--pgn-typography-footer-text-font-size: var(--pgn-typography-font-size-xs);
|
|
306
|
+
--pgn-typography-btn-line-height-lg: var(--pgn-typography-input-btn-line-height-lg);
|
|
307
|
+
--pgn-typography-btn-line-height-sm: var(--pgn-typography-input-btn-line-height-sm);
|
|
308
|
+
--pgn-typography-btn-line-height-base: var(--pgn-typography-input-btn-line-height-base);
|
|
309
|
+
--pgn-typography-btn-font-weight: var(--pgn-typography-font-weight-normal);
|
|
310
|
+
--pgn-typography-btn-font-size-lg: var(--pgn-typography-input-btn-font-size-lg);
|
|
311
|
+
--pgn-typography-btn-font-size-sm: var(--pgn-typography-input-btn-font-size-sm);
|
|
312
|
+
--pgn-typography-btn-font-size-base: var(--pgn-typography-input-btn-font-size-base);
|
|
313
|
+
--pgn-typography-btn-font-family: var(--pgn-typography-input-btn-font-family);
|
|
314
|
+
--pgn-typography-badge-font-weight: var(--pgn-typography-font-weight-bold);
|
|
196
315
|
--pgn-typography-badge-font-size: 75%;
|
|
316
|
+
--pgn-typography-annotation-line-height: var(--pgn-typography-line-height-sm);
|
|
317
|
+
--pgn-typography-annotation-font-size: var(--pgn-typography-font-size-sm);
|
|
197
318
|
--pgn-typography-alert-line-height: 1.5rem;
|
|
198
|
-
--pgn-typography-alert-font-size: .875rem;
|
|
319
|
+
--pgn-typography-alert-font-size: 0.875rem;
|
|
320
|
+
--pgn-typography-alert-font-weight-link: var(--pgn-typography-font-weight-normal);
|
|
199
321
|
--pgn-spacing-grid-gutter-width: 24px;
|
|
200
|
-
--pgn-spacing-table-cell-padding-sm: .3rem;
|
|
201
|
-
--pgn-spacing-table-cell-padding-base: .75rem;
|
|
202
|
-
--pgn-spacing-label-margin-bottom: .5rem;
|
|
322
|
+
--pgn-spacing-table-cell-padding-sm: 0.3rem;
|
|
323
|
+
--pgn-spacing-table-cell-padding-base: 0.75rem;
|
|
324
|
+
--pgn-spacing-label-margin-bottom: 0.5rem;
|
|
325
|
+
--pgn-spacing-spacer-5-5: calc(var(--pgn-spacing-spacer-base) * 4);
|
|
326
|
+
--pgn-spacing-spacer-4-5: calc(var(--pgn-spacing-spacer-base) * 2);
|
|
327
|
+
--pgn-spacing-spacer-3-5: calc(var(--pgn-spacing-spacer-base) * 1.25);
|
|
328
|
+
--pgn-spacing-spacer-2-5: calc(var(--pgn-spacing-spacer-base) * .75);
|
|
329
|
+
--pgn-spacing-spacer-1-5: calc(var(--pgn-spacing-spacer-base) * .375);
|
|
203
330
|
--pgn-spacing-spacer-base: 1rem;
|
|
204
|
-
--pgn-spacing-spacer-
|
|
205
|
-
--pgn-spacing-
|
|
206
|
-
--pgn-spacing-
|
|
207
|
-
--pgn-spacing-
|
|
208
|
-
--pgn-spacing-
|
|
331
|
+
--pgn-spacing-spacer-6: calc(var(--pgn-spacing-spacer-base) * 5);
|
|
332
|
+
--pgn-spacing-spacer-5: calc(var(--pgn-spacing-spacer-base) * 3);
|
|
333
|
+
--pgn-spacing-spacer-4: calc(var(--pgn-spacing-spacer-base) * 1.5);
|
|
334
|
+
--pgn-spacing-spacer-3: var(--pgn-spacing-spacer-base);
|
|
335
|
+
--pgn-spacing-spacer-2: calc(var(--pgn-spacing-spacer-base) * .5);
|
|
336
|
+
--pgn-spacing-spacer-1: calc(var(--pgn-spacing-spacer-base) * .25);
|
|
337
|
+
--pgn-spacing-spacer-0: 0rem;
|
|
338
|
+
--pgn-spacing-mark-padding: 0.2em;
|
|
339
|
+
--pgn-spacing-paragraph-margin-bottom: 1rem;
|
|
340
|
+
--pgn-spacing-list-group-item-padding-x: 1.25rem;
|
|
341
|
+
--pgn-spacing-list-group-item-padding-y: 0.75rem;
|
|
342
|
+
--pgn-spacing-list-inline-padding: 0.5rem;
|
|
343
|
+
--pgn-spacing-input-btn-padding-lg-x: 1.25rem;
|
|
344
|
+
--pgn-spacing-input-btn-padding-lg-y: 0.6875rem;
|
|
345
|
+
--pgn-spacing-input-btn-padding-sm-x: 0.75rem;
|
|
346
|
+
--pgn-spacing-input-btn-padding-sm-y: 0.4375rem;
|
|
347
|
+
--pgn-spacing-input-btn-padding-x: 1rem;
|
|
348
|
+
--pgn-spacing-input-btn-padding-y: 0.5625rem;
|
|
349
|
+
--pgn-spacing-headings-margin-bottom: 0.5rem;
|
|
350
|
+
--pgn-spacing-caret-vertical-align: 0.255em;
|
|
351
|
+
--pgn-spacing-caret-base: 0.255em;
|
|
352
|
+
--pgn-spacing-tooltip-margin: 0rem;
|
|
353
|
+
--pgn-spacing-tooltip-padding-x: 0.5rem;
|
|
354
|
+
--pgn-spacing-tooltip-padding-y: 0.5rem;
|
|
355
|
+
--pgn-spacing-toast-container-gutter-sm: 0.625rem;
|
|
209
356
|
--pgn-spacing-toast-container-gutter-lg: 1.25rem;
|
|
210
|
-
--pgn-spacing-toast-padding-y: .25rem;
|
|
211
|
-
--pgn-spacing-toast-padding-x: .75rem;
|
|
357
|
+
--pgn-spacing-toast-padding-y: 0.25rem;
|
|
358
|
+
--pgn-spacing-toast-padding-x: 0.75rem;
|
|
212
359
|
--pgn-spacing-tab-inverse-tabs-link-dropdown-toggle-distance: 5px;
|
|
213
|
-
--pgn-spacing-tab-inverse-tabs-link-dropdown-toggle-padding-
|
|
214
|
-
--pgn-spacing-tab-inverse-
|
|
215
|
-
--pgn-spacing-tab-
|
|
216
|
-
--pgn-spacing-
|
|
217
|
-
--pgn-spacing-
|
|
218
|
-
--pgn-spacing-
|
|
219
|
-
--pgn-spacing-
|
|
220
|
-
--pgn-spacing-stepper-header-step-
|
|
221
|
-
--pgn-spacing-stepper-header-padding-
|
|
222
|
-
--pgn-spacing-
|
|
223
|
-
--pgn-spacing-
|
|
224
|
-
--pgn-spacing-
|
|
360
|
+
--pgn-spacing-tab-inverse-tabs-link-dropdown-toggle-padding-y: var(--pgn-spacing-spacer-base);
|
|
361
|
+
--pgn-spacing-tab-inverse-tabs-link-dropdown-toggle-padding-x: 0.625rem;
|
|
362
|
+
--pgn-spacing-tab-inverse-pills-link-dropdown-toggle-padding-y: var(--pgn-spacing-spacer-base);
|
|
363
|
+
--pgn-spacing-tab-inverse-pills-link-dropdown-toggle-padding-x: 0.625rem;
|
|
364
|
+
--pgn-spacing-tab-more-link-dropdown-toggle-padding-y: var(--pgn-spacing-spacer-base);
|
|
365
|
+
--pgn-spacing-tab-more-link-dropdown-toggle-padding-x: 0.7rem;
|
|
366
|
+
--pgn-spacing-sticky-offset: 0rem;
|
|
367
|
+
--pgn-spacing-stepper-header-step-list-margin: 0rem;
|
|
368
|
+
--pgn-spacing-stepper-header-step-list-padding-x: 0rem;
|
|
369
|
+
--pgn-spacing-stepper-header-step-list-padding-y: 0.25rem;
|
|
370
|
+
--pgn-spacing-stepper-header-step-padding: 0.25rem;
|
|
371
|
+
--pgn-spacing-stepper-header-padding-x: var(--pgn-spacing-spacer-base);
|
|
372
|
+
--pgn-spacing-stepper-header-padding-y: 0.75rem;
|
|
373
|
+
--pgn-spacing-vertical-align: 0.125em;
|
|
374
|
+
--pgn-spacing-selectable-box-box-space: 0.75rem;
|
|
375
|
+
--pgn-spacing-selectable-box-border-radius: 0.25rem;
|
|
225
376
|
--pgn-spacing-selectable-box-padding: 1rem;
|
|
226
|
-
--pgn-spacing-search-field-margin-button: .5rem;
|
|
227
|
-
--pgn-spacing-progress-bar-hint-annotation-gap: .5rem;
|
|
228
|
-
--pgn-spacing-popover-icon-margin-right: .5rem;
|
|
377
|
+
--pgn-spacing-search-field-margin-button: 0.5rem;
|
|
378
|
+
--pgn-spacing-progress-bar-hint-annotation-gap: 0.5rem;
|
|
379
|
+
--pgn-spacing-popover-icon-margin-right: 0.5rem;
|
|
380
|
+
--pgn-spacing-popover-body-padding-x: var(--pgn-spacing-popover-header-padding-x);
|
|
381
|
+
--pgn-spacing-popover-body-padding-y: var(--pgn-spacing-popover-header-padding-y);
|
|
229
382
|
--pgn-spacing-popover-header-padding-x: 1rem;
|
|
230
|
-
--pgn-spacing-popover-header-padding-y: .5rem;
|
|
383
|
+
--pgn-spacing-popover-header-padding-y: 0.5rem;
|
|
231
384
|
--pgn-spacing-pagination-padding-x-lg: 1.5rem;
|
|
232
|
-
--pgn-spacing-pagination-padding-x-sm: .6rem;
|
|
385
|
+
--pgn-spacing-pagination-padding-x-sm: 0.6rem;
|
|
233
386
|
--pgn-spacing-pagination-padding-x-base: 1rem;
|
|
234
|
-
--pgn-spacing-pagination-padding-y-lg: .75rem;
|
|
235
|
-
--pgn-spacing-pagination-padding-y-sm: .8rem;
|
|
236
|
-
--pgn-spacing-pagination-padding-y-base: .625rem;
|
|
237
|
-
--pgn-spacing-navbar-toggler-padding-x: .75rem;
|
|
238
|
-
--pgn-spacing-navbar-toggler-padding-y: .25rem;
|
|
239
|
-
--pgn-spacing-navbar-padding-
|
|
387
|
+
--pgn-spacing-pagination-padding-y-lg: 0.75rem;
|
|
388
|
+
--pgn-spacing-pagination-padding-y-sm: 0.8rem;
|
|
389
|
+
--pgn-spacing-pagination-padding-y-base: 0.625rem;
|
|
390
|
+
--pgn-spacing-navbar-toggler-padding-x: 0.75rem;
|
|
391
|
+
--pgn-spacing-navbar-toggler-padding-y: 0.25rem;
|
|
392
|
+
--pgn-spacing-navbar-brand-padding-y: calc((var(--pgn-typography-navbar-nav-link-height) - var(--pgn-size-navbar-brand-height)) / 2);
|
|
393
|
+
--pgn-spacing-navbar-padding-x-nav-link: 0.5rem;
|
|
394
|
+
--pgn-spacing-navbar-padding-x-base: var(--pgn-spacing-spacer-base);
|
|
395
|
+
--pgn-spacing-navbar-padding-y: calc(var(--pgn-spacing-spacer-base) / 2);
|
|
240
396
|
--pgn-spacing-nav-link-distance-to-border: 4px;
|
|
241
397
|
--pgn-spacing-nav-link-padding-x: 1rem;
|
|
242
|
-
--pgn-spacing-nav-link-padding-y: .5rem;
|
|
398
|
+
--pgn-spacing-nav-link-padding-y: 0.5rem;
|
|
243
399
|
--pgn-spacing-modal-dialog-margin: 1.5rem;
|
|
244
400
|
--pgn-spacing-modal-header-padding-y: 1rem;
|
|
401
|
+
--pgn-spacing-modal-header-padding-base-y: var(--pgn-spacing-modal-header-padding-y);
|
|
402
|
+
--pgn-spacing-modal-header-padding-base-x: 1.5rem;
|
|
245
403
|
--pgn-spacing-modal-footer-padding-y: 1rem;
|
|
246
|
-
--pgn-spacing-modal-
|
|
404
|
+
--pgn-spacing-modal-footer-padding-base-y: var(--pgn-spacing-modal-footer-padding-y);
|
|
405
|
+
--pgn-spacing-modal-footer-padding-base-x: 1.5rem;
|
|
406
|
+
--pgn-spacing-modal-inner-padding-bottom: 0.7rem;
|
|
247
407
|
--pgn-spacing-modal-inner-padding-base: 1.5rem;
|
|
248
|
-
--pgn-spacing-menu-item-icon-margin-
|
|
249
|
-
--pgn-spacing-
|
|
250
|
-
--pgn-spacing-
|
|
251
|
-
--pgn-spacing-
|
|
252
|
-
--pgn-spacing-
|
|
253
|
-
--pgn-spacing-
|
|
254
|
-
--pgn-spacing-
|
|
255
|
-
--pgn-spacing-
|
|
256
|
-
--pgn-spacing-
|
|
257
|
-
--pgn-spacing-
|
|
258
|
-
--pgn-spacing-
|
|
259
|
-
--pgn-spacing-
|
|
260
|
-
--pgn-spacing-
|
|
261
|
-
--pgn-spacing-
|
|
262
|
-
--pgn-spacing-
|
|
263
|
-
--pgn-spacing-
|
|
264
|
-
--pgn-spacing-form-control-select-icon-padding: .5625rem;
|
|
265
|
-
--pgn-spacing-form-control-select-feedback-tooltip-padding-x: .5rem;
|
|
266
|
-
--pgn-spacing-form-control-select-feedback-tooltip-padding-y: .25rem;
|
|
408
|
+
--pgn-spacing-menu-item-icon-margin-right: var(--pgn-spacing-menu-item-icon-margin-left);
|
|
409
|
+
--pgn-spacing-menu-item-icon-margin-left: 0.25em;
|
|
410
|
+
--pgn-spacing-menu-item-padding-y: var(--pgn-spacing-btn-padding-y-base);
|
|
411
|
+
--pgn-spacing-menu-item-padding-x: var(--pgn-spacing-btn-padding-x-base);
|
|
412
|
+
--pgn-spacing-image-thumbnail-padding: 0.25rem;
|
|
413
|
+
--pgn-spacing-form-control-file-padding-x: var(--pgn-spacing-form-input-padding-x-base);
|
|
414
|
+
--pgn-spacing-form-control-file-padding-y: var(--pgn-spacing-form-input-padding-y-base);
|
|
415
|
+
--pgn-spacing-form-control-select-icon-padding: 0.5625rem;
|
|
416
|
+
--pgn-spacing-form-control-select-feedback-tooltip-padding-x: 0.5rem;
|
|
417
|
+
--pgn-spacing-form-control-select-feedback-tooltip-padding-y: 0.25rem;
|
|
418
|
+
--pgn-spacing-form-control-select-feedback-margin-top: var(--pgn-spacing-form-text-margin-top);
|
|
419
|
+
--pgn-spacing-form-control-select-feedback-icon-position-offset-y: 0;
|
|
420
|
+
--pgn-spacing-form-control-select-feedback-icon-position-offset-x: calc(var(--pgn-spacing-form-control-select-padding-x-base) + var(--pgn-spacing-form-control-select-indicator-padding));
|
|
421
|
+
--pgn-spacing-form-control-select-feedback-icon-position-position-x: right;
|
|
422
|
+
--pgn-spacing-form-control-select-feedback-icon-position-position-y: center;
|
|
423
|
+
--pgn-spacing-form-control-select-feedback-icon-padding-right: calc((1em + 2 * var(--pgn-spacing-form-control-select-padding-y-base)) * 3 / 4 + var(--pgn-spacing-form-control-select-padding-x-base) + var(--pgn-spacing-form-control-select-indicator-padding));
|
|
267
424
|
--pgn-spacing-form-control-select-indicator-padding: 1rem;
|
|
425
|
+
--pgn-spacing-form-control-select-padding-x-lg: var(--pgn-spacing-form-input-padding-x-lg);
|
|
426
|
+
--pgn-spacing-form-control-select-padding-x-sm: var(--pgn-spacing-form-input-padding-x-sm);
|
|
427
|
+
--pgn-spacing-form-control-select-padding-x-base: var(--pgn-spacing-form-input-padding-x-base);
|
|
428
|
+
--pgn-spacing-form-control-select-padding-y-lg: var(--pgn-spacing-form-input-padding-y-lg);
|
|
429
|
+
--pgn-spacing-form-control-select-padding-y-sm: var(--pgn-spacing-form-input-padding-y-sm);
|
|
430
|
+
--pgn-spacing-form-control-select-padding-y-base: var(--pgn-spacing-form-input-padding-y-base);
|
|
268
431
|
--pgn-spacing-form-control-spacer-x: 1rem;
|
|
269
|
-
--pgn-spacing-form-control-gutter: .5rem;
|
|
432
|
+
--pgn-spacing-form-control-gutter: 0.5rem;
|
|
270
433
|
--pgn-spacing-form-group-margin-bottom: 1rem;
|
|
271
|
-
--pgn-spacing-form-check-position-axis: .375rem;
|
|
272
|
-
--pgn-spacing-form-check-inline-margin-x: .75rem;
|
|
273
|
-
--pgn-spacing-form-text-margin-top: .25rem;
|
|
274
|
-
--pgn-spacing-form-input-check-margin-y: .3rem;
|
|
275
|
-
--pgn-spacing-form-input-check-margin-x-inline: .3125rem;
|
|
276
|
-
--pgn-spacing-form-input-check-margin-x-base: .25rem;
|
|
434
|
+
--pgn-spacing-form-check-position-axis: 0.375rem;
|
|
435
|
+
--pgn-spacing-form-check-inline-margin-x: 0.75rem;
|
|
436
|
+
--pgn-spacing-form-text-margin-top: 0.25rem;
|
|
437
|
+
--pgn-spacing-form-input-check-margin-y: 0.3rem;
|
|
438
|
+
--pgn-spacing-form-input-check-margin-x-inline: 0.3125rem;
|
|
439
|
+
--pgn-spacing-form-input-check-margin-x-base: 0.25rem;
|
|
277
440
|
--pgn-spacing-form-input-check-gutter: 1.25rem;
|
|
441
|
+
--pgn-spacing-form-input-padding-x-lg: var(--pgn-spacing-input-btn-padding-lg-x);
|
|
442
|
+
--pgn-spacing-form-input-padding-x-sm: var(--pgn-spacing-input-btn-padding-sm-x);
|
|
443
|
+
--pgn-spacing-form-input-padding-x-base: var(--pgn-spacing-input-btn-padding-x);
|
|
444
|
+
--pgn-spacing-form-input-padding-y-lg: var(--pgn-spacing-input-btn-padding-lg-y);
|
|
445
|
+
--pgn-spacing-form-input-padding-y-sm: var(--pgn-spacing-input-btn-padding-sm-y);
|
|
446
|
+
--pgn-spacing-form-input-padding-y-base: var(--pgn-spacing-input-btn-padding-y);
|
|
278
447
|
--pgn-spacing-dropzone-border-base: 1px;
|
|
279
448
|
--pgn-spacing-dropzone-padding: 1.5rem;
|
|
280
|
-
--pgn-spacing-dropdown-close-container-top: .625rem;
|
|
281
|
-
--pgn-spacing-dropdown-
|
|
282
|
-
--pgn-spacing-dropdown-padding-y
|
|
449
|
+
--pgn-spacing-dropdown-close-container-top: 0.625rem;
|
|
450
|
+
--pgn-spacing-dropdown-divider-margin-y: calc(var(--pgn-spacing-spacer-base) / 2);
|
|
451
|
+
--pgn-spacing-dropdown-padding-header-y: 0.5rem;
|
|
452
|
+
--pgn-spacing-dropdown-padding-header-x: var(--pgn-spacing-dropdown-padding-x-item);
|
|
453
|
+
--pgn-spacing-dropdown-padding-y-item: 0.25rem;
|
|
454
|
+
--pgn-spacing-dropdown-padding-y-base: 0.5rem;
|
|
283
455
|
--pgn-spacing-dropdown-padding-x-item: 1rem;
|
|
284
|
-
--pgn-spacing-dropdown-padding-x-base:
|
|
285
|
-
--pgn-spacing-dropdown-spacer: .125rem;
|
|
456
|
+
--pgn-spacing-dropdown-padding-x-base: 0rem;
|
|
457
|
+
--pgn-spacing-dropdown-spacer: 0.125rem;
|
|
286
458
|
--pgn-spacing-data-table-footer-position: center;
|
|
287
|
-
--pgn-spacing-data-table-padding-cell: .
|
|
288
|
-
--pgn-spacing-data-table-padding-
|
|
289
|
-
--pgn-spacing-data-table-padding-
|
|
290
|
-
--pgn-spacing-data-table-padding-
|
|
291
|
-
--pgn-spacing-
|
|
292
|
-
--pgn-spacing-collapsible-card-spacer-basic-
|
|
293
|
-
--pgn-spacing-collapsible-card-spacer-basic-
|
|
459
|
+
--pgn-spacing-data-table-padding-cell-y: 0.75rem;
|
|
460
|
+
--pgn-spacing-data-table-padding-cell-x: 0.5rem;
|
|
461
|
+
--pgn-spacing-data-table-padding-small: 0.5rem;
|
|
462
|
+
--pgn-spacing-data-table-padding-y: 0.75rem;
|
|
463
|
+
--pgn-spacing-data-table-padding-x: 0.75rem;
|
|
464
|
+
--pgn-spacing-collapsible-card-spacer-basic-icon: 0.625rem;
|
|
465
|
+
--pgn-spacing-collapsible-card-spacer-basic-x: 0.5rem;
|
|
466
|
+
--pgn-spacing-collapsible-card-spacer-basic-y: 0.5rem;
|
|
294
467
|
--pgn-spacing-collapsible-card-spacer-icon: 2.5rem;
|
|
295
|
-
--pgn-spacing-collapsible-card-spacer-left-body: .75rem;
|
|
296
|
-
--pgn-spacing-collapsible-card-spacer-x-
|
|
297
|
-
--pgn-spacing-collapsible-card-spacer-
|
|
298
|
-
--pgn-spacing-
|
|
299
|
-
--pgn-spacing-
|
|
300
|
-
--pgn-spacing-
|
|
301
|
-
--pgn-spacing-
|
|
302
|
-
--pgn-spacing-chip-carousel-
|
|
468
|
+
--pgn-spacing-collapsible-card-spacer-left-body: 0.75rem;
|
|
469
|
+
--pgn-spacing-collapsible-card-spacer-x-lg: var(--pgn-spacing-card-spacer-x);
|
|
470
|
+
--pgn-spacing-collapsible-card-spacer-x-base: 0.5rem;
|
|
471
|
+
--pgn-spacing-collapsible-card-spacer-y-lg: var(--pgn-spacing-card-spacer-y);
|
|
472
|
+
--pgn-spacing-collapsible-card-spacer-y-base: 0.5rem;
|
|
473
|
+
--pgn-spacing-code-kbd-padding-x: 0.4rem;
|
|
474
|
+
--pgn-spacing-code-kbd-padding-y: 0.2rem;
|
|
475
|
+
--pgn-spacing-chip-carousel-container-padding-y: 0.313rem;
|
|
476
|
+
--pgn-spacing-chip-carousel-container-padding-x: 0.625rem;
|
|
477
|
+
--pgn-spacing-chip-carousel-controls-top-offset: 0.375rem;
|
|
303
478
|
--pgn-spacing-chip-outline-width: 3px;
|
|
304
|
-
--pgn-spacing-chip-outline-focus-distance-dark: .313rem;
|
|
305
|
-
--pgn-spacing-chip-outline-focus-distance-light: .313rem;
|
|
479
|
+
--pgn-spacing-chip-outline-focus-distance-dark: 0.313rem;
|
|
480
|
+
--pgn-spacing-chip-outline-focus-distance-light: 0.313rem;
|
|
306
481
|
--pgn-spacing-chip-outline-selected-distance-dark: 3px;
|
|
307
482
|
--pgn-spacing-chip-outline-selected-distance-light: 3px;
|
|
308
|
-
--pgn-spacing-chip-padding-x: .5rem;
|
|
483
|
+
--pgn-spacing-chip-padding-x: 0.5rem;
|
|
309
484
|
--pgn-spacing-chip-padding-y: 1px;
|
|
310
|
-
--pgn-spacing-chip-margin-icon: .25rem;
|
|
311
|
-
--pgn-spacing-chip-margin-base: .125rem;
|
|
485
|
+
--pgn-spacing-chip-margin-icon: 0.25rem;
|
|
486
|
+
--pgn-spacing-chip-margin-base: 0.125rem;
|
|
312
487
|
--pgn-spacing-carousel-indicator-spacer: 3px;
|
|
313
488
|
--pgn-spacing-card-focus-border-offset: 5px;
|
|
314
|
-
--pgn-spacing-card-logo-bottom-offset-horizontal: .4375rem;
|
|
489
|
+
--pgn-spacing-card-logo-bottom-offset-horizontal: 0.4375rem;
|
|
315
490
|
--pgn-spacing-card-logo-bottom-offset-base: 1rem;
|
|
316
|
-
--pgn-spacing-card-logo-left-offset-horizontal: .4375rem;
|
|
491
|
+
--pgn-spacing-card-logo-left-offset-horizontal: 0.4375rem;
|
|
317
492
|
--pgn-spacing-card-logo-left-offset-base: 1.5rem;
|
|
318
|
-
--pgn-spacing-card-loading-skeleton-spacer: .313rem;
|
|
319
|
-
--pgn-spacing-card-footer-action-gap: .5rem;
|
|
493
|
+
--pgn-spacing-card-loading-skeleton-spacer: 0.313rem;
|
|
494
|
+
--pgn-spacing-card-footer-action-gap: 0.5rem;
|
|
320
495
|
--pgn-spacing-card-columns-gap: 1.25rem;
|
|
321
496
|
--pgn-spacing-card-columns-count: 3;
|
|
497
|
+
--pgn-spacing-card-columns-margin: var(--pgn-spacing-card-spacer-y);
|
|
498
|
+
--pgn-spacing-card-margin-grid-bottom: var(--pgn-spacing-spacer-3);
|
|
499
|
+
--pgn-spacing-card-margin-grid: var(--pgn-spacing-card-margin-group);
|
|
500
|
+
--pgn-spacing-card-margin-deck-bottom: var(--pgn-spacing-spacer-3);
|
|
501
|
+
--pgn-spacing-card-margin-deck: var(--pgn-spacing-card-margin-group);
|
|
322
502
|
--pgn-spacing-card-margin-group: 12px;
|
|
323
|
-
--pgn-spacing-card-spacer-y: .75rem;
|
|
503
|
+
--pgn-spacing-card-spacer-y: 0.75rem;
|
|
324
504
|
--pgn-spacing-card-spacer-x: 1.25rem;
|
|
325
|
-
--pgn-spacing-btn-
|
|
326
|
-
--pgn-spacing-
|
|
327
|
-
--pgn-spacing-
|
|
328
|
-
--pgn-spacing-
|
|
329
|
-
--pgn-spacing-
|
|
330
|
-
--pgn-spacing-
|
|
331
|
-
--pgn-spacing-
|
|
332
|
-
--pgn-spacing-
|
|
333
|
-
--pgn-spacing-
|
|
334
|
-
--pgn-spacing-
|
|
335
|
-
--pgn-spacing-
|
|
336
|
-
--pgn-spacing-
|
|
337
|
-
--pgn-spacing-
|
|
505
|
+
--pgn-spacing-btn-focus-distance-to-border: calc(var(--pgn-spacing-btn-focus-border-gap) + var(--pgn-size-btn-border-width));
|
|
506
|
+
--pgn-spacing-btn-focus-border-gap: calc(var(--pgn-size-btn-focus-width) + var(--pgn-spacing-btn-focus-gap));
|
|
507
|
+
--pgn-spacing-btn-focus-gap: var(--pgn-size-btn-focus-width);
|
|
508
|
+
--pgn-spacing-btn-block-spacing-y: 0.5rem;
|
|
509
|
+
--pgn-spacing-btn-padding-x-sm: var(--pgn-spacing-input-btn-padding-sm-x);
|
|
510
|
+
--pgn-spacing-btn-padding-x-lg: var(--pgn-spacing-input-btn-padding-lg-x);
|
|
511
|
+
--pgn-spacing-btn-padding-x-base: var(--pgn-spacing-input-btn-padding-x);
|
|
512
|
+
--pgn-spacing-btn-padding-y-sm: var(--pgn-spacing-input-btn-padding-sm-y);
|
|
513
|
+
--pgn-spacing-btn-padding-y-lg: var(--pgn-spacing-input-btn-padding-lg-y);
|
|
514
|
+
--pgn-spacing-btn-padding-y-base: var(--pgn-spacing-input-btn-padding-y);
|
|
515
|
+
--pgn-spacing-bubble-expandable-padding-x: 0.25rem;
|
|
516
|
+
--pgn-spacing-bubble-expandable-padding-y: 0rem;
|
|
517
|
+
--pgn-spacing-breadcrumb-margin-left: 0.5rem;
|
|
518
|
+
--pgn-spacing-badge-padding-y: 0.125rem;
|
|
519
|
+
--pgn-spacing-badge-padding-x-pill: 0.6em;
|
|
520
|
+
--pgn-spacing-badge-padding-x-base: 0.5rem;
|
|
521
|
+
--pgn-spacing-avatar-button-padding-left-lg: 0.25em;
|
|
522
|
+
--pgn-spacing-avatar-button-padding-left-sm: 0.25em;
|
|
523
|
+
--pgn-spacing-avatar-button-padding-left-base: 0.25em;
|
|
524
|
+
--pgn-spacing-annotation-arrow-side-margin: 0.25rem;
|
|
525
|
+
--pgn-spacing-annotation-padding: 0.5rem;
|
|
526
|
+
--pgn-spacing-alert-icon-space: 0.8rem;
|
|
527
|
+
--pgn-spacing-alert-actions-gap: var(--pgn-spacing-spacer-3);
|
|
338
528
|
--pgn-spacing-alert-margin-bottom: 1rem;
|
|
339
529
|
--pgn-spacing-alert-padding-x: 1.5rem;
|
|
340
530
|
--pgn-spacing-alert-padding-y: 1.5rem;
|
|
341
|
-
--pgn-spacing-action-row-gap-y: .5rem;
|
|
342
|
-
--pgn-spacing-action-row-gap-x: .5rem;
|
|
531
|
+
--pgn-spacing-action-row-gap-y: 0.5rem;
|
|
532
|
+
--pgn-spacing-action-row-gap-x: 0.5rem;
|
|
343
533
|
--pgn-size-breakpoint-xxl: 1400px;
|
|
344
534
|
--pgn-size-breakpoint-xl: 1200px;
|
|
345
535
|
--pgn-size-breakpoint-lg: 992px;
|
|
346
536
|
--pgn-size-breakpoint-md: 768px;
|
|
347
537
|
--pgn-size-breakpoint-sm: 576px;
|
|
348
|
-
--pgn-size-breakpoint-xs:
|
|
349
|
-
--pgn-size-
|
|
350
|
-
--pgn-size-
|
|
538
|
+
--pgn-size-breakpoint-xs: 0px;
|
|
539
|
+
--pgn-size-list-group-border-radius: var(--pgn-size-border-radius-base);
|
|
540
|
+
--pgn-size-list-group-border-width: var(--pgn-size-border-width);
|
|
541
|
+
--pgn-size-input-btn-focus-width: 1px;
|
|
542
|
+
--pgn-size-input-btn-border-width: var(--pgn-size-border-width);
|
|
543
|
+
--pgn-size-hr-border-margin-y: var(--pgn-spacing-spacer-base);
|
|
544
|
+
--pgn-size-hr-border-width: var(--pgn-size-border-width);
|
|
545
|
+
--pgn-size-caret-width: 0.3em;
|
|
546
|
+
--pgn-size-tooltip-border-radius: var(--pgn-size-border-radius-base);
|
|
547
|
+
--pgn-size-tooltip-arrow-width: 0.8rem;
|
|
548
|
+
--pgn-size-tooltip-arrow-height: 0.4rem;
|
|
351
549
|
--pgn-size-tooltip-max-width: 200px;
|
|
352
|
-
--pgn-size-toast-border-radius: .25rem;
|
|
550
|
+
--pgn-size-toast-border-radius: 0.25rem;
|
|
353
551
|
--pgn-size-toast-border-width: 1px;
|
|
354
552
|
--pgn-size-toast-max-width: 400px;
|
|
355
553
|
--pgn-size-tabs-notification-width: 1rem;
|
|
356
554
|
--pgn-size-tabs-notification-height: 1rem;
|
|
357
555
|
--pgn-size-stepper-step-bubble-error-shadow-width: 3px;
|
|
358
|
-
--pgn-size-stepper-step-width-min:
|
|
556
|
+
--pgn-size-stepper-step-width-min: 0rem;
|
|
359
557
|
--pgn-size-stepper-header-height-min: 5.13rem;
|
|
360
|
-
--pgn-size-stack-gap:
|
|
361
|
-
--pgn-size-spinner-sm-border-width: .2em;
|
|
558
|
+
--pgn-size-stack-gap: 0rem;
|
|
559
|
+
--pgn-size-spinner-sm-border-width: 0.2em;
|
|
560
|
+
--pgn-size-spinner-sm-height: var(--pgn-size-spinner-sm-width);
|
|
362
561
|
--pgn-size-spinner-sm-width: 1rem;
|
|
363
|
-
--pgn-size-spinner-base-border-width: .25em;
|
|
562
|
+
--pgn-size-spinner-base-border-width: 0.25em;
|
|
563
|
+
--pgn-size-spinner-base-height: var(--pgn-size-spinner-base-width);
|
|
364
564
|
--pgn-size-spinner-base-width: 2rem;
|
|
365
|
-
--pgn-size-search-field-
|
|
366
|
-
--pgn-size-search-field-border-
|
|
367
|
-
--pgn-size-search-field-border-width-
|
|
368
|
-
--pgn-size-
|
|
369
|
-
--pgn-size-progress-bar-
|
|
565
|
+
--pgn-size-search-field-search-input-height: calc(var(--pgn-typography-form-input-line-height-base) * 1em + var(--pgn-spacing-form-input-padding-y-base) * 2);
|
|
566
|
+
--pgn-size-search-field-border-radius: 0rem;
|
|
567
|
+
--pgn-size-search-field-border-width-focus: 0.3125rem;
|
|
568
|
+
--pgn-size-search-field-border-width-base: 0.0625rem;
|
|
569
|
+
--pgn-size-progress-bar-threshold-circle: 0.5625rem;
|
|
570
|
+
--pgn-size-progress-bar-border-radius: 0rem;
|
|
370
571
|
--pgn-size-progress-bar-border-width: 1px;
|
|
371
|
-
--pgn-size-progress-bar-height-annotated: .3125rem;
|
|
572
|
+
--pgn-size-progress-bar-height-annotated: 0.3125rem;
|
|
372
573
|
--pgn-size-progress-bar-height-base: 1rem;
|
|
574
|
+
--pgn-size-product-tour-checkpoint-arrow-transparent: var(--pgn-size-product-tour-checkpoint-width-arrow);
|
|
575
|
+
--pgn-size-product-tour-checkpoint-arrow-top: var(--pgn-size-product-tour-checkpoint-width-arrow);
|
|
373
576
|
--pgn-size-product-tour-checkpoint-width-max: 480px;
|
|
374
577
|
--pgn-size-product-tour-checkpoint-width-arrow: 15px;
|
|
375
578
|
--pgn-size-product-tour-checkpoint-width-border: 8px;
|
|
376
|
-
--pgn-size-popover-arrow-height: .5rem;
|
|
579
|
+
--pgn-size-popover-arrow-height: 0.5rem;
|
|
377
580
|
--pgn-size-popover-arrow-width: 1rem;
|
|
378
581
|
--pgn-size-popover-icon-width: 1rem;
|
|
379
582
|
--pgn-size-popover-icon-height: 1rem;
|
|
583
|
+
--pgn-size-popover-border-radius: var(--pgn-size-border-radius-sm);
|
|
584
|
+
--pgn-size-popover-border-width: var(--pgn-size-border-width);
|
|
380
585
|
--pgn-size-popover-max-width: 480px;
|
|
381
|
-
--pgn-size-pagination-focus-outline:
|
|
382
|
-
--pgn-size-pagination-toggle-border-sm: .25rem;
|
|
383
|
-
--pgn-size-pagination-toggle-border-base: .3125rem;
|
|
586
|
+
--pgn-size-pagination-focus-outline: 0rem;
|
|
587
|
+
--pgn-size-pagination-toggle-border-sm: 0.25rem;
|
|
588
|
+
--pgn-size-pagination-toggle-border-base: 0.3125rem;
|
|
384
589
|
--pgn-size-pagination-reduced-dropdown-min-width: 6rem;
|
|
385
590
|
--pgn-size-pagination-reduced-dropdown-max-height: 60vh;
|
|
591
|
+
--pgn-size-pagination-border-radius-lg: var(--pgn-size-border-radius-lg);
|
|
592
|
+
--pgn-size-pagination-border-radius-sm: var(--pgn-size-border-radius-sm);
|
|
593
|
+
--pgn-size-pagination-border-width: var(--pgn-size-border-width);
|
|
386
594
|
--pgn-size-pagination-secondary-height-sm: 2.25rem;
|
|
387
595
|
--pgn-size-pagination-secondary-height-base: 2.75rem;
|
|
388
596
|
--pgn-size-pagination-icon-height: 2.25rem;
|
|
389
597
|
--pgn-size-pagination-icon-width: 2.25rem;
|
|
598
|
+
--pgn-size-navbar-toggler-border-radius: var(--pgn-size-btn-border-radius-base);
|
|
599
|
+
--pgn-size-navbar-brand-height: calc(var(--pgn-typography-navbar-brand-font-size) * var(--pgn-typography-line-height-base));
|
|
390
600
|
--pgn-size-navbar-nav-scroll-max-height: 75vh;
|
|
391
|
-
--pgn-size-nav-tabs-border-radius:
|
|
601
|
+
--pgn-size-nav-tabs-border-radius: 0rem;
|
|
392
602
|
--pgn-size-nav-tabs-border-width: 2px;
|
|
393
|
-
--pgn-size-nav-tabs-link-border-bottom-width:
|
|
603
|
+
--pgn-size-nav-tabs-inverse-link-active-border-bottom-width: var(--pgn-size-nav-tabs-link-border-bottom-width);
|
|
604
|
+
--pgn-size-nav-tabs-link-border-bottom-width: 0.188rem;
|
|
605
|
+
--pgn-size-nav-pills-inverse-link-border-width: var(--pgn-size-nav-pills-link-border-width);
|
|
394
606
|
--pgn-size-nav-pills-link-border-width: 1px;
|
|
607
|
+
--pgn-size-nav-pills-border-radius: var(--pgn-size-border-radius-base);
|
|
608
|
+
--pgn-size-modal-content-border-radius: var(--pgn-size-border-radius-lg);
|
|
395
609
|
--pgn-size-modal-content-border-width: 0px;
|
|
396
610
|
--pgn-size-modal-sm: 400px;
|
|
397
611
|
--pgn-size-modal-md: 500px;
|
|
398
612
|
--pgn-size-modal-lg: 800px;
|
|
399
613
|
--pgn-size-modal-xl: 1140px;
|
|
614
|
+
--pgn-size-menu-item-border-width: var(--pgn-size-btn-border-width);
|
|
400
615
|
--pgn-size-menu-item-width-xs: 13.438rem;
|
|
401
616
|
--pgn-size-menu-item-width-base: 19rem;
|
|
402
617
|
--pgn-size-menu-item-height: 3rem;
|
|
403
618
|
--pgn-size-menu-base-max-height: 16.813rem;
|
|
404
|
-
--pgn-size-menu-base-border-radius: .25em;
|
|
619
|
+
--pgn-size-menu-base-border-radius: 0.25em;
|
|
620
|
+
--pgn-size-image-thumbnail-border-radius: var(--pgn-size-border-radius-base);
|
|
621
|
+
--pgn-size-image-thumbnail-border-width: var(--pgn-size-border-width);
|
|
622
|
+
--pgn-size-icon-button-diameter-inline: calc(var(--pgn-typography-line-height-base) * 1em + .1em);
|
|
405
623
|
--pgn-size-icon-button-diameter-sm: 2.25rem;
|
|
406
624
|
--pgn-size-icon-button-diameter-md: 2.75rem;
|
|
407
625
|
--pgn-size-icon-lg: 1.75rem;
|
|
408
626
|
--pgn-size-icon-md: 1.5rem;
|
|
409
627
|
--pgn-size-icon-sm: 1.25rem;
|
|
410
628
|
--pgn-size-icon-xs: 1rem;
|
|
411
|
-
--pgn-size-icon-inline: .8em;
|
|
412
|
-
--pgn-size-
|
|
413
|
-
--pgn-size-
|
|
414
|
-
--pgn-size-form-border-radius-
|
|
415
|
-
--pgn-size-form-border-
|
|
416
|
-
--pgn-size-form-autosuggest-
|
|
629
|
+
--pgn-size-icon-inline: 0.8em;
|
|
630
|
+
--pgn-size-form-feedback-tooltip-border-radius: var(--pgn-size-border-radius-base);
|
|
631
|
+
--pgn-size-form-border-radius-width: 0.125rem;
|
|
632
|
+
--pgn-size-form-border-radius-check-focus: 0.0625rem;
|
|
633
|
+
--pgn-size-form-autosuggest-border-width: 0.125rem;
|
|
634
|
+
--pgn-size-form-autosuggest-spinner-height: var(--pgn-size-form-autosuggest-spinner-width);
|
|
417
635
|
--pgn-size-form-autosuggest-spinner-width: 1.25rem;
|
|
636
|
+
--pgn-size-form-autosuggest-icon-height: var(--pgn-size-form-autosuggest-icon-width);
|
|
418
637
|
--pgn-size-form-autosuggest-icon-width: 2.4rem;
|
|
419
638
|
--pgn-size-form-grid-gutter-width: 0.625rem;
|
|
420
639
|
--pgn-size-form-control-border-radio-indicator-radius: 50%;
|
|
421
|
-
--pgn-size-form-control-border-checkbox-indicator-radius:
|
|
640
|
+
--pgn-size-form-control-border-checkbox-indicator-radius: 0rem;
|
|
422
641
|
--pgn-size-form-control-icon-width: 2rem;
|
|
642
|
+
--pgn-size-form-control-file-border-radius: var(--pgn-size-form-input-radius-border-base);
|
|
643
|
+
--pgn-size-form-control-file-height-inner: var(--pgn-size-form-input-height-inner-base);
|
|
644
|
+
--pgn-size-form-control-file-height-base: var(--pgn-size-form-input-height-base);
|
|
645
|
+
--pgn-size-form-control-file-width: var(--pgn-size-form-input-width-border);
|
|
646
|
+
--pgn-size-form-control-range-thumb-focus-width: var(--pgn-size-form-input-width-focus);
|
|
423
647
|
--pgn-size-form-control-range-thumb-border-radius: 1rem;
|
|
424
|
-
--pgn-size-form-control-range-thumb-border-base:
|
|
648
|
+
--pgn-size-form-control-range-thumb-border-base: 0rem;
|
|
649
|
+
--pgn-size-form-control-range-thumb-height: var(--pgn-size-form-control-range-thumb-width);
|
|
425
650
|
--pgn-size-form-control-range-thumb-width: 1rem;
|
|
426
651
|
--pgn-size-form-control-range-track-border-radius: 1rem;
|
|
427
|
-
--pgn-size-form-control-range-track-height: .5rem;
|
|
652
|
+
--pgn-size-form-control-range-track-height: 0.5rem;
|
|
428
653
|
--pgn-size-form-control-range-track-width: 100%;
|
|
654
|
+
--pgn-size-form-control-select-border-radius: var(--pgn-size-border-radius-base);
|
|
655
|
+
--pgn-size-form-control-select-border-width-base: var(--pgn-size-form-input-width-border);
|
|
656
|
+
--pgn-size-form-control-select-feedback-icon: var(--pgn-size-form-input-height-inner-half) var(--pgn-size-form-input-height-inner-half);
|
|
657
|
+
--pgn-size-form-control-select-height-sm: var(--pgn-size-form-input-height-sm);
|
|
658
|
+
--pgn-size-form-control-select-height-lg: var(--pgn-size-form-input-height-lg);
|
|
659
|
+
--pgn-size-form-control-select-height-base: var(--pgn-size-form-input-height-base);
|
|
660
|
+
--pgn-size-form-control-switch-indicator-border-radius: calc(var(--pgn-size-form-control-indicator-base) / 2);
|
|
661
|
+
--pgn-size-form-control-switch-indicator-base: calc(var(--pgn-size-form-control-indicator-base) - var(--pgn-size-form-control-indicator-border-width) * 4);
|
|
662
|
+
--pgn-size-form-control-switch-width: calc(var(--pgn-size-form-control-indicator-base) * 1.75);
|
|
429
663
|
--pgn-size-form-control-indicator-border-width: 0.125rem;
|
|
430
664
|
--pgn-size-form-control-indicator-bg: 100%;
|
|
431
665
|
--pgn-size-form-control-indicator-base: 1.25rem;
|
|
666
|
+
--pgn-size-form-input-radius-border-sm: var(--pgn-size-border-radius-sm);
|
|
667
|
+
--pgn-size-form-input-radius-border-lg: var(--pgn-size-border-radius-lg);
|
|
668
|
+
--pgn-size-form-input-radius-border-base: var(--pgn-size-border-radius-base);
|
|
669
|
+
--pgn-size-form-input-width-border: var(--pgn-size-input-btn-border-width);
|
|
432
670
|
--pgn-size-form-input-width-focus: 0.063rem;
|
|
433
671
|
--pgn-size-form-input-width-hover: 0.063rem;
|
|
672
|
+
--pgn-size-form-input-height-border: calc(var(--pgn-size-form-input-width-border) * 2);
|
|
673
|
+
--pgn-size-form-input-height-inner-quarter: calc(var(--pgn-typography-form-input-line-height-base) * .25em + calc(var(--pgn-spacing-form-input-padding-y-base) / 2));
|
|
674
|
+
--pgn-size-form-input-height-inner-half: calc(var(--pgn-typography-form-input-line-height-base) * .5em + var(--pgn-spacing-form-input-padding-y-base));
|
|
675
|
+
--pgn-size-form-input-height-inner-base: calc(var(--pgn-typography-form-input-line-height-base) * 1em + var(--pgn-spacing-form-input-padding-y-base) * 2);
|
|
676
|
+
--pgn-size-form-input-height-lg: calc(var(--pgn-typography-form-input-line-height-lg) * 1em + var(--pgn-spacing-input-btn-padding-lg-y) * 2 + var(--pgn-size-form-input-height-border));
|
|
677
|
+
--pgn-size-form-input-height-sm: calc(var(--pgn-typography-form-input-line-height-sm) * 1em + var(--pgn-spacing-input-btn-padding-sm-y) * 2 + var(--pgn-size-form-input-height-border));
|
|
678
|
+
--pgn-size-form-input-height-base: calc(var(--pgn-typography-form-input-line-height-base) * 1em + var(--pgn-spacing-form-input-padding-y-base) * 2 + var(--pgn-size-form-input-height-border));
|
|
679
|
+
--pgn-size-dropdown-border-radius-inner: calc(var(--pgn-size-dropdown-border-radius-base) - var(--pgn-size-dropdown-border-width));
|
|
680
|
+
--pgn-size-dropdown-border-radius-base: var(--pgn-size-border-radius-base);
|
|
681
|
+
--pgn-size-dropdown-border-width: var(--pgn-size-border-width);
|
|
434
682
|
--pgn-size-dropdown-min-width: 18rem;
|
|
435
683
|
--pgn-size-data-table-layout-sidebar-width: 12rem;
|
|
436
684
|
--pgn-size-data-table-dropdown-pagination-min-width: 6rem;
|
|
@@ -445,7 +693,7 @@
|
|
|
445
693
|
--pgn-size-color-picker-sm: 2rem;
|
|
446
694
|
--pgn-size-code-pre-scrollable-max-height: 340px;
|
|
447
695
|
--pgn-size-chip-icon: 1.5rem;
|
|
448
|
-
--pgn-size-chip-border-radius: .375rem;
|
|
696
|
+
--pgn-size-chip-border-radius: 0.375rem;
|
|
449
697
|
--pgn-size-carousel-caption-width: 70%;
|
|
450
698
|
--pgn-size-carousel-indicator-height-area-hit: 10px;
|
|
451
699
|
--pgn-size-carousel-indicator-height-base: 3px;
|
|
@@ -454,17 +702,31 @@
|
|
|
454
702
|
--pgn-size-carousel-control-width-base: 15%;
|
|
455
703
|
--pgn-size-card-logo-height: 4.125rem;
|
|
456
704
|
--pgn-size-card-logo-width: 7.25rem;
|
|
705
|
+
--pgn-size-card-image-border-radius: var(--pgn-size-card-border-radius-base);
|
|
457
706
|
--pgn-size-card-image-vertical-max-height: 140px;
|
|
707
|
+
--pgn-size-card-image-horizontal-width-min: var(--pgn-size-card-image-horizontal-width-max);
|
|
458
708
|
--pgn-size-card-image-horizontal-width-max: 240px;
|
|
709
|
+
--pgn-size-card-focus-border-radius: calc(var(--pgn-spacing-card-focus-border-offset) + var(--pgn-size-card-border-radius-base));
|
|
459
710
|
--pgn-size-card-focus-border-width: 2px;
|
|
460
|
-
--pgn-size-card-border-radius-
|
|
711
|
+
--pgn-size-card-border-radius-inner: calc(var(--pgn-size-card-border-radius-base) - var(--pgn-size-card-border-width));
|
|
712
|
+
--pgn-size-card-border-radius-logo: 0.25rem;
|
|
713
|
+
--pgn-size-card-border-radius-base: var(--pgn-size-border-radius-base);
|
|
714
|
+
--pgn-size-card-border-width: var(--pgn-size-border-width);
|
|
715
|
+
--pgn-size-btn-focus-border-radius-sm: var(--pgn-size-btn-border-radius-base);
|
|
716
|
+
--pgn-size-btn-focus-border-radius-lg: var(--pgn-size-btn-focus-border-radius-base);
|
|
717
|
+
--pgn-size-btn-focus-border-radius-base: calc(var(--pgn-size-btn-border-radius-base) + var(--pgn-spacing-btn-focus-border-gap));
|
|
461
718
|
--pgn-size-btn-focus-width: 2px;
|
|
462
|
-
--pgn-size-
|
|
463
|
-
--pgn-size-
|
|
464
|
-
--pgn-size-
|
|
465
|
-
--pgn-size-
|
|
719
|
+
--pgn-size-btn-border-radius-sm: var(--pgn-size-border-radius-sm);
|
|
720
|
+
--pgn-size-btn-border-radius-lg: var(--pgn-size-border-radius-lg);
|
|
721
|
+
--pgn-size-btn-border-radius-base: var(--pgn-size-border-radius-base);
|
|
722
|
+
--pgn-size-btn-border-width: var(--pgn-size-input-btn-border-width);
|
|
723
|
+
--pgn-size-breadcrumb-border-width-focus: 0.0625rem;
|
|
724
|
+
--pgn-size-breadcrumb-border-axis-y-focus: 0.5rem;
|
|
725
|
+
--pgn-size-breadcrumb-border-axis-x-focus: 0.25rem;
|
|
726
|
+
--pgn-size-breadcrumb-border-radius-focus: 0.125rem;
|
|
727
|
+
--pgn-size-badge-focus-width: var(--pgn-size-input-btn-focus-width);
|
|
466
728
|
--pgn-size-badge-border-radius-pill: 10rem;
|
|
467
|
-
--pgn-size-badge-border-radius-base: .25rem;
|
|
729
|
+
--pgn-size-badge-border-radius-base: 0.25rem;
|
|
468
730
|
--pgn-size-avatar-border-radius: 100%;
|
|
469
731
|
--pgn-size-avatar-border-base: 1px;
|
|
470
732
|
--pgn-size-avatar-huge: 18.75rem;
|
|
@@ -474,213 +736,373 @@
|
|
|
474
736
|
--pgn-size-avatar-sm: 2.25rem;
|
|
475
737
|
--pgn-size-avatar-xs: 1.5rem;
|
|
476
738
|
--pgn-size-avatar-base: 3rem;
|
|
477
|
-
--pgn-size-annotation-border-radius: .25rem;
|
|
739
|
+
--pgn-size-annotation-border-radius: 0.25rem;
|
|
478
740
|
--pgn-size-annotation-max-width: 18.75rem;
|
|
479
|
-
--pgn-size-annotation-arrow-border-width: .5rem;
|
|
480
|
-
--pgn-size-alert-border-width:
|
|
741
|
+
--pgn-size-annotation-arrow-border-width: 0.5rem;
|
|
742
|
+
--pgn-size-alert-border-width: 0rem;
|
|
743
|
+
--pgn-size-alert-border-radius: var(--pgn-size-border-radius-base);
|
|
481
744
|
--pgn-size-rounded-pill: 50rem;
|
|
482
|
-
--pgn-size-border-radius-sm: .25rem;
|
|
483
|
-
--pgn-size-border-radius-lg: .425rem;
|
|
484
|
-
--pgn-size-border-radius-base: .375rem;
|
|
745
|
+
--pgn-size-border-radius-sm: 0.25rem;
|
|
746
|
+
--pgn-size-border-radius-lg: 0.425rem;
|
|
747
|
+
--pgn-size-border-radius-base: 0.375rem;
|
|
485
748
|
--pgn-size-border-width: 1px;
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
--pgn-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
--pgn-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
--pgn-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
--pgn-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
--pgn-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
--pgn-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
--pgn-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
--pgn-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
--pgn-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
--pgn-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
--pgn-spacing-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
--pgn-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
--pgn-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
--pgn-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
--pgn-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
--pgn-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
--pgn-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
--pgn-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
--pgn-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
--pgn-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
--pgn-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
--pgn-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
--pgn-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
--pgn-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
--pgn-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
--pgn-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
--pgn-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
--pgn-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
--pgn-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
--pgn-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
749
|
+
/**
|
|
750
|
+
* TRANSITION
|
|
751
|
+
*/
|
|
752
|
+
--pgn-transition-base:
|
|
753
|
+
var(--pgn-transition-base-property)
|
|
754
|
+
var(--pgn-transition-base-duration)
|
|
755
|
+
var(--pgn-transition-base-timing-function)
|
|
756
|
+
var(--pgn-transition-base-delay)
|
|
757
|
+
var(--pgn-transition-base-behavior);
|
|
758
|
+
--pgn-transition-fade:
|
|
759
|
+
var(--pgn-transition-fade-property)
|
|
760
|
+
var(--pgn-transition-fade-duration)
|
|
761
|
+
var(--pgn-transition-fade-timing-function)
|
|
762
|
+
var(--pgn-transition-fade-delay)
|
|
763
|
+
var(--pgn-transition-fade-behavior);
|
|
764
|
+
--pgn-transition-collapse-height:
|
|
765
|
+
var(--pgn-transition-collapse-height-property)
|
|
766
|
+
var(--pgn-transition-collapse-height-duration)
|
|
767
|
+
var(--pgn-transition-collapse-height-timing-function)
|
|
768
|
+
var(--pgn-transition-collapse-height-delay)
|
|
769
|
+
var(--pgn-transition-collapse-height-behavior);
|
|
770
|
+
--pgn-transition-collapse-width:
|
|
771
|
+
var(--pgn-transition-collapse-width-property)
|
|
772
|
+
var(--pgn-transition-collapse-width-duration)
|
|
773
|
+
var(--pgn-transition-collapse-width-timing-function)
|
|
774
|
+
var(--pgn-transition-collapse-width-delay)
|
|
775
|
+
var(--pgn-transition-collapse-width-behavior);
|
|
776
|
+
--pgn-transition-form-input:
|
|
777
|
+
var(--pgn-transition-form-input-1-property)
|
|
778
|
+
var(--pgn-transition-form-input-1-duration)
|
|
779
|
+
var(--pgn-transition-form-input-1-timing-function)
|
|
780
|
+
var(--pgn-transition-form-input-1-delay)
|
|
781
|
+
var(--pgn-transition-form-input-1-behavior),
|
|
782
|
+
var(--pgn-transition-form-input-2-property)
|
|
783
|
+
var(--pgn-transition-form-input-2-duration)
|
|
784
|
+
var(--pgn-transition-form-input-2-timing-function)
|
|
785
|
+
var(--pgn-transition-form-input-2-delay)
|
|
786
|
+
var(--pgn-transition-form-input-2-behavior);
|
|
787
|
+
--pgn-elevation-annotation-box-shadow:
|
|
788
|
+
drop-shadow(
|
|
789
|
+
var(--pgn-elevation-annotation-box-shadow-1-offset-x)
|
|
790
|
+
var(--pgn-elevation-annotation-box-shadow-1-offset-y)
|
|
791
|
+
var(--pgn-elevation-annotation-box-shadow-1-blur)
|
|
792
|
+
var(--pgn-elevation-annotation-box-shadow-1-color)
|
|
793
|
+
)
|
|
794
|
+
drop-shadow(
|
|
795
|
+
var(--pgn-elevation-annotation-box-shadow-2-offset-x)
|
|
796
|
+
var(--pgn-elevation-annotation-box-shadow-2-offset-y)
|
|
797
|
+
var(--pgn-elevation-annotation-box-shadow-2-blur)
|
|
798
|
+
var(--pgn-elevation-annotation-box-shadow-2-color)
|
|
799
|
+
);
|
|
800
|
+
--pgn-transition-carousel-base:
|
|
801
|
+
var(--pgn-transition-carousel-base-property)
|
|
802
|
+
var(--pgn-transition-carousel-base-duration)
|
|
803
|
+
var(--pgn-transition-carousel-base-timing-function)
|
|
804
|
+
var(--pgn-transition-carousel-base-delay)
|
|
805
|
+
var(--pgn-transition-carousel-base-behavior);
|
|
806
|
+
--pgn-transition-carousel-indicator:
|
|
807
|
+
var(--pgn-transition-carousel-indicator-property)
|
|
808
|
+
var(--pgn-transition-carousel-indicator-duration)
|
|
809
|
+
var(--pgn-transition-carousel-indicator-timing-function)
|
|
810
|
+
var(--pgn-transition-carousel-indicator-delay)
|
|
811
|
+
var(--pgn-transition-carousel-indicator-behavior);
|
|
812
|
+
--pgn-transition-carousel-control:
|
|
813
|
+
var(--pgn-transition-carousel-control-property)
|
|
814
|
+
var(--pgn-transition-carousel-control-duration)
|
|
815
|
+
var(--pgn-transition-carousel-control-timing-function)
|
|
816
|
+
var(--pgn-transition-carousel-control-delay)
|
|
817
|
+
var(--pgn-transition-carousel-control-behavior);
|
|
818
|
+
--pgn-elevation-close-button-text-shadow:
|
|
819
|
+
var(--pgn-elevation-close-button-text-shadow-offset-x)
|
|
820
|
+
var(--pgn-elevation-close-button-text-shadow-offset-y)
|
|
821
|
+
var(--pgn-elevation-close-button-text-shadow-blur)
|
|
822
|
+
var(--pgn-elevation-close-button-text-shadow-color);
|
|
823
|
+
--pgn-spacing-dropdown-padding-header:
|
|
824
|
+
var(--pgn-spacing-dropdown-padding-header-y)
|
|
825
|
+
var(--pgn-spacing-dropdown-padding-header-x);
|
|
826
|
+
--pgn-elevation-form-control-select-border-focus:
|
|
827
|
+
var(--pgn-elevation-form-control-select-border-focus-offset-x)
|
|
828
|
+
var(--pgn-elevation-form-control-select-border-focus-offset-y)
|
|
829
|
+
var(--pgn-elevation-form-control-select-border-focus-blur)
|
|
830
|
+
var(--pgn-elevation-form-control-select-border-focus-spread)
|
|
831
|
+
var(--pgn-elevation-form-control-select-border-focus-color);
|
|
832
|
+
--pgn-elevation-form-control-file-focus:
|
|
833
|
+
var(--pgn-elevation-form-control-file-focus-offset-x)
|
|
834
|
+
var(--pgn-elevation-form-control-file-focus-offset-y)
|
|
835
|
+
var(--pgn-elevation-form-control-file-focus-blur)
|
|
836
|
+
var(--pgn-elevation-form-control-file-focus-spread)
|
|
837
|
+
var(--pgn-elevation-form-control-file-focus-color);
|
|
838
|
+
--pgn-transition-form-control:
|
|
839
|
+
var(--pgn-transition-form-control-1-property)
|
|
840
|
+
var(--pgn-transition-form-control-1-duration)
|
|
841
|
+
var(--pgn-transition-form-control-1-timing-function)
|
|
842
|
+
var(--pgn-transition-form-control-1-delay)
|
|
843
|
+
var(--pgn-transition-form-control-1-behavior),
|
|
844
|
+
var(--pgn-transition-form-control-2-property)
|
|
845
|
+
var(--pgn-transition-form-control-2-duration)
|
|
846
|
+
var(--pgn-transition-form-control-2-timing-function)
|
|
847
|
+
var(--pgn-transition-form-control-2-delay)
|
|
848
|
+
var(--pgn-transition-form-control-2-behavior),
|
|
849
|
+
var(--pgn-transition-form-control-3-property)
|
|
850
|
+
var(--pgn-transition-form-control-3-duration)
|
|
851
|
+
var(--pgn-transition-form-control-3-timing-function)
|
|
852
|
+
var(--pgn-transition-form-control-3-delay)
|
|
853
|
+
var(--pgn-transition-form-control-3-behavior);
|
|
854
|
+
--pgn-elevation-form-input-focus:
|
|
855
|
+
var(--pgn-elevation-form-input-focus-offset-x)
|
|
856
|
+
var(--pgn-elevation-form-input-focus-offset-y)
|
|
857
|
+
var(--pgn-elevation-form-input-focus-blur)
|
|
858
|
+
var(--pgn-elevation-form-input-focus-spread)
|
|
859
|
+
var(--pgn-elevation-form-input-focus-color);
|
|
860
|
+
--pgn-spacing-form-control-select-feedback-icon-position:
|
|
861
|
+
var(--pgn-spacing-form-control-select-feedback-icon-position-position-y)
|
|
862
|
+
var(--pgn-spacing-form-control-select-feedback-icon-position-position-x)
|
|
863
|
+
var(--pgn-spacing-form-control-select-feedback-icon-position-offset-x)
|
|
864
|
+
var(--pgn-spacing-form-control-select-feedback-icon-position-offset-y);
|
|
865
|
+
--pgn-other-content-form-control-select-bg:
|
|
866
|
+
var(--pgn-other-content-form-control-select-bg-image)
|
|
867
|
+
var(--pgn-other-content-form-control-select-bg-position-x)
|
|
868
|
+
var(--pgn-other-content-form-control-select-bg-offset-y)
|
|
869
|
+
var(--pgn-other-content-form-control-select-bg-position-y)
|
|
870
|
+
/ var(--pgn-other-content-form-control-select-bg-color);
|
|
871
|
+
--pgn-elevation-form-control-indicator-checked-focus:
|
|
872
|
+
var(--pgn-elevation-form-control-indicator-checked-focus-offset-x)
|
|
873
|
+
var(--pgn-elevation-form-control-indicator-checked-focus-offset-y)
|
|
874
|
+
var(--pgn-elevation-form-control-indicator-checked-focus-blur)
|
|
875
|
+
var(--pgn-elevation-form-control-indicator-checked-focus-spread)
|
|
876
|
+
var(--pgn-elevation-form-control-indicator-checked-focus-color);
|
|
877
|
+
--pgn-elevation-menu-box-shadow:
|
|
878
|
+
var(--pgn-elevation-menu-box-shadow-offset-x)
|
|
879
|
+
var(--pgn-elevation-menu-box-shadow-offset-y)
|
|
880
|
+
var(--pgn-elevation-menu-box-shadow-blur)
|
|
881
|
+
var(--pgn-elevation-menu-box-shadow-color);
|
|
882
|
+
--pgn-elevation-modal-content-box-shadow-sm-up:
|
|
883
|
+
var(--pgn-elevation-modal-content-box-shadow-sm-up-1-offset-x)
|
|
884
|
+
var(--pgn-elevation-modal-content-box-shadow-sm-up-1-offset-y)
|
|
885
|
+
var(--pgn-elevation-modal-content-box-shadow-sm-up-1-blur)
|
|
886
|
+
var(--pgn-elevation-modal-content-box-shadow-sm-up-1-color),
|
|
887
|
+
var(--pgn-elevation-modal-content-box-shadow-sm-up-2-offset-x)
|
|
888
|
+
var(--pgn-elevation-modal-content-box-shadow-sm-up-2-offset-y)
|
|
889
|
+
var(--pgn-elevation-modal-content-box-shadow-sm-up-2-blur)
|
|
890
|
+
var(--pgn-elevation-modal-content-box-shadow-sm-up-2-color);
|
|
891
|
+
--pgn-spacing-modal-footer-padding-base:
|
|
892
|
+
var(--pgn-spacing-modal-footer-padding-base-y)
|
|
893
|
+
var(--pgn-spacing-modal-footer-padding-base-x);
|
|
894
|
+
--pgn-spacing-modal-header-padding-base:
|
|
895
|
+
var(--pgn-spacing-modal-header-padding-base-y)
|
|
896
|
+
var(--pgn-spacing-modal-header-padding-base-x);
|
|
897
|
+
--pgn-border-color-nav-tabs-link-border-hover:
|
|
898
|
+
var(--pgn-border-color-nav-tabs-link-border-hover-top)
|
|
899
|
+
var(--pgn-border-color-nav-tabs-link-border-hover-right)
|
|
900
|
+
var(--pgn-border-color-nav-tabs-link-border-hover-bottom)
|
|
901
|
+
var(--pgn-border-color-nav-tabs-link-border-hover-left);
|
|
902
|
+
--pgn-transition-progress-bar-animation-timing:
|
|
903
|
+
var(--pgn-transition-progress-bar-animation-timing-duration)
|
|
904
|
+
var(--pgn-transition-progress-bar-animation-timing-timing-function)
|
|
905
|
+
var(--pgn-transition-progress-bar-animation-timing-iteration-count)
|
|
906
|
+
var(--pgn-transition-progress-bar-animation-timing-delay);
|
|
907
|
+
--pgn-transition-progress-bar-transition:
|
|
908
|
+
var(--pgn-transition-progress-bar-transition-property)
|
|
909
|
+
var(--pgn-transition-progress-bar-transition-duration)
|
|
910
|
+
var(--pgn-transition-progress-bar-transition-timing-function)
|
|
911
|
+
var(--pgn-transition-progress-bar-transition-delay)
|
|
912
|
+
var(--pgn-transition-progress-bar-transition-behavior);
|
|
913
|
+
--pgn-elevation-tooltip-box-shadow:
|
|
914
|
+
drop-shadow(
|
|
915
|
+
var(--pgn-elevation-tooltip-box-shadow-1-offset-x)
|
|
916
|
+
var(--pgn-elevation-tooltip-box-shadow-1-offset-y)
|
|
917
|
+
var(--pgn-elevation-tooltip-box-shadow-1-blur)
|
|
918
|
+
var(--pgn-elevation-tooltip-box-shadow-1-color)
|
|
919
|
+
)
|
|
920
|
+
drop-shadow(
|
|
921
|
+
var(--pgn-elevation-tooltip-box-shadow-2-offset-x)
|
|
922
|
+
var(--pgn-elevation-tooltip-box-shadow-2-offset-y)
|
|
923
|
+
var(--pgn-elevation-tooltip-box-shadow-2-blur)
|
|
924
|
+
var(--pgn-elevation-tooltip-box-shadow-2-color)
|
|
925
|
+
);
|
|
926
|
+
--pgn-elevation-data-table-box-shadow:
|
|
927
|
+
var(--pgn-elevation-data-table-box-shadow-offset-x)
|
|
928
|
+
var(--pgn-elevation-data-table-box-shadow-offset-y)
|
|
929
|
+
var(--pgn-elevation-data-table-box-shadow-blur)
|
|
930
|
+
var(--pgn-elevation-data-table-box-shadow-color);
|
|
931
|
+
--pgn-spacing-data-table-padding-cell:
|
|
932
|
+
var(--pgn-spacing-data-table-padding-cell-x)
|
|
933
|
+
var(--pgn-spacing-data-table-padding-cell-y);
|
|
934
|
+
--pgn-elevation-icon-button-box-shadow-primary-base:
|
|
935
|
+
var(--pgn-elevation-icon-button-box-shadow-primary-base-inset)
|
|
936
|
+
var(--pgn-elevation-icon-button-box-shadow-primary-base-offset-x)
|
|
937
|
+
var(--pgn-elevation-icon-button-box-shadow-primary-base-offset-y)
|
|
938
|
+
var(--pgn-elevation-icon-button-box-shadow-primary-base-blur)
|
|
939
|
+
var(--pgn-elevation-icon-button-box-shadow-primary-base-spread)
|
|
940
|
+
var(--pgn-elevation-icon-button-box-shadow-primary-base-color);
|
|
941
|
+
--pgn-elevation-icon-button-box-shadow-primary-inverse:
|
|
942
|
+
var(--pgn-elevation-icon-button-box-shadow-primary-inverse-inset)
|
|
943
|
+
var(--pgn-elevation-icon-button-box-shadow-primary-inverse-offset-x)
|
|
944
|
+
var(--pgn-elevation-icon-button-box-shadow-primary-inverse-offset-y)
|
|
945
|
+
var(--pgn-elevation-icon-button-box-shadow-primary-inverse-blur)
|
|
946
|
+
var(--pgn-elevation-icon-button-box-shadow-primary-inverse-spread)
|
|
947
|
+
var(--pgn-elevation-icon-button-box-shadow-primary-inverse-color);
|
|
948
|
+
--pgn-elevation-icon-button-box-shadow-secondary-base:
|
|
949
|
+
var(--pgn-elevation-icon-button-box-shadow-secondary-base-inset)
|
|
950
|
+
var(--pgn-elevation-icon-button-box-shadow-secondary-base-offset-x)
|
|
951
|
+
var(--pgn-elevation-icon-button-box-shadow-secondary-base-offset-y)
|
|
952
|
+
var(--pgn-elevation-icon-button-box-shadow-secondary-base-blur)
|
|
953
|
+
var(--pgn-elevation-icon-button-box-shadow-secondary-base-spread)
|
|
954
|
+
var(--pgn-elevation-icon-button-box-shadow-secondary-base-color);
|
|
955
|
+
--pgn-elevation-icon-button-box-shadow-secondary-inverse:
|
|
956
|
+
var(--pgn-elevation-icon-button-box-shadow-secondary-inverse-inset)
|
|
957
|
+
var(--pgn-elevation-icon-button-box-shadow-secondary-inverse-offset-x)
|
|
958
|
+
var(--pgn-elevation-icon-button-box-shadow-secondary-inverse-offset-y)
|
|
959
|
+
var(--pgn-elevation-icon-button-box-shadow-secondary-inverse-blur)
|
|
960
|
+
var(--pgn-elevation-icon-button-box-shadow-secondary-inverse-spread)
|
|
961
|
+
var(--pgn-elevation-icon-button-box-shadow-secondary-inverse-color);
|
|
962
|
+
--pgn-elevation-icon-button-box-shadow-brand-base:
|
|
963
|
+
var(--pgn-elevation-icon-button-box-shadow-brand-base-inset)
|
|
964
|
+
var(--pgn-elevation-icon-button-box-shadow-brand-base-offset-x)
|
|
965
|
+
var(--pgn-elevation-icon-button-box-shadow-brand-base-offset-y)
|
|
966
|
+
var(--pgn-elevation-icon-button-box-shadow-brand-base-blur)
|
|
967
|
+
var(--pgn-elevation-icon-button-box-shadow-brand-base-spread)
|
|
968
|
+
var(--pgn-elevation-icon-button-box-shadow-brand-base-color);
|
|
969
|
+
--pgn-elevation-icon-button-box-shadow-brand-inverse:
|
|
970
|
+
var(--pgn-elevation-icon-button-box-shadow-brand-inverse-inset)
|
|
971
|
+
var(--pgn-elevation-icon-button-box-shadow-brand-inverse-offset-x)
|
|
972
|
+
var(--pgn-elevation-icon-button-box-shadow-brand-inverse-offset-y)
|
|
973
|
+
var(--pgn-elevation-icon-button-box-shadow-brand-inverse-blur)
|
|
974
|
+
var(--pgn-elevation-icon-button-box-shadow-brand-inverse-spread)
|
|
975
|
+
var(--pgn-elevation-icon-button-box-shadow-brand-inverse-color);
|
|
976
|
+
--pgn-elevation-icon-button-box-shadow-success-base:
|
|
977
|
+
var(--pgn-elevation-icon-button-box-shadow-success-base-inset)
|
|
978
|
+
var(--pgn-elevation-icon-button-box-shadow-success-base-offset-x)
|
|
979
|
+
var(--pgn-elevation-icon-button-box-shadow-success-base-offset-y)
|
|
980
|
+
var(--pgn-elevation-icon-button-box-shadow-success-base-blur)
|
|
981
|
+
var(--pgn-elevation-icon-button-box-shadow-success-base-spread)
|
|
982
|
+
var(--pgn-elevation-icon-button-box-shadow-success-base-color);
|
|
983
|
+
--pgn-elevation-icon-button-box-shadow-success-inverse:
|
|
984
|
+
var(--pgn-elevation-icon-button-box-shadow-success-inverse-inset)
|
|
985
|
+
var(--pgn-elevation-icon-button-box-shadow-success-inverse-offset-x)
|
|
986
|
+
var(--pgn-elevation-icon-button-box-shadow-success-inverse-offset-y)
|
|
987
|
+
var(--pgn-elevation-icon-button-box-shadow-success-inverse-blur)
|
|
988
|
+
var(--pgn-elevation-icon-button-box-shadow-success-inverse-spread)
|
|
989
|
+
var(--pgn-elevation-icon-button-box-shadow-success-inverse-color);
|
|
990
|
+
--pgn-elevation-icon-button-box-shadow-warning-base:
|
|
991
|
+
var(--pgn-elevation-icon-button-box-shadow-warning-base-inset)
|
|
992
|
+
var(--pgn-elevation-icon-button-box-shadow-warning-base-offset-x)
|
|
993
|
+
var(--pgn-elevation-icon-button-box-shadow-warning-base-offset-y)
|
|
994
|
+
var(--pgn-elevation-icon-button-box-shadow-warning-base-blur)
|
|
995
|
+
var(--pgn-elevation-icon-button-box-shadow-warning-base-spread)
|
|
996
|
+
var(--pgn-elevation-icon-button-box-shadow-warning-base-color);
|
|
997
|
+
--pgn-elevation-icon-button-box-shadow-warning-inverse:
|
|
998
|
+
var(--pgn-elevation-icon-button-box-shadow-warning-inverse-inset)
|
|
999
|
+
var(--pgn-elevation-icon-button-box-shadow-warning-inverse-offset-x)
|
|
1000
|
+
var(--pgn-elevation-icon-button-box-shadow-warning-inverse-offset-y)
|
|
1001
|
+
var(--pgn-elevation-icon-button-box-shadow-warning-inverse-blur)
|
|
1002
|
+
var(--pgn-elevation-icon-button-box-shadow-warning-inverse-spread)
|
|
1003
|
+
var(--pgn-elevation-icon-button-box-shadow-warning-inverse-color);
|
|
1004
|
+
--pgn-elevation-icon-button-box-shadow-danger-base:
|
|
1005
|
+
var(--pgn-elevation-icon-button-box-shadow-danger-base-inset)
|
|
1006
|
+
var(--pgn-elevation-icon-button-box-shadow-danger-base-offset-x)
|
|
1007
|
+
var(--pgn-elevation-icon-button-box-shadow-danger-base-offset-y)
|
|
1008
|
+
var(--pgn-elevation-icon-button-box-shadow-danger-base-blur)
|
|
1009
|
+
var(--pgn-elevation-icon-button-box-shadow-danger-base-spread)
|
|
1010
|
+
var(--pgn-elevation-icon-button-box-shadow-danger-base-color);
|
|
1011
|
+
--pgn-elevation-icon-button-box-shadow-danger-inverse:
|
|
1012
|
+
var(--pgn-elevation-icon-button-box-shadow-danger-inverse-inset)
|
|
1013
|
+
var(--pgn-elevation-icon-button-box-shadow-danger-inverse-offset-x)
|
|
1014
|
+
var(--pgn-elevation-icon-button-box-shadow-danger-inverse-offset-y)
|
|
1015
|
+
var(--pgn-elevation-icon-button-box-shadow-danger-inverse-blur)
|
|
1016
|
+
var(--pgn-elevation-icon-button-box-shadow-danger-inverse-spread)
|
|
1017
|
+
var(--pgn-elevation-icon-button-box-shadow-danger-inverse-color);
|
|
1018
|
+
--pgn-elevation-icon-button-box-shadow-light-base:
|
|
1019
|
+
var(--pgn-elevation-icon-button-box-shadow-light-base-inset)
|
|
1020
|
+
var(--pgn-elevation-icon-button-box-shadow-light-base-offset-x)
|
|
1021
|
+
var(--pgn-elevation-icon-button-box-shadow-light-base-offset-y)
|
|
1022
|
+
var(--pgn-elevation-icon-button-box-shadow-light-base-blur)
|
|
1023
|
+
var(--pgn-elevation-icon-button-box-shadow-light-base-spread)
|
|
1024
|
+
var(--pgn-elevation-icon-button-box-shadow-light-base-color);
|
|
1025
|
+
--pgn-elevation-icon-button-box-shadow-light-inverse:
|
|
1026
|
+
var(--pgn-elevation-icon-button-box-shadow-light-inverse-inset)
|
|
1027
|
+
var(--pgn-elevation-icon-button-box-shadow-light-inverse-offset-x)
|
|
1028
|
+
var(--pgn-elevation-icon-button-box-shadow-light-inverse-offset-y)
|
|
1029
|
+
var(--pgn-elevation-icon-button-box-shadow-light-inverse-blur)
|
|
1030
|
+
var(--pgn-elevation-icon-button-box-shadow-light-inverse-spread)
|
|
1031
|
+
var(--pgn-elevation-icon-button-box-shadow-light-inverse-color);
|
|
1032
|
+
--pgn-elevation-icon-button-box-shadow-dark-base:
|
|
1033
|
+
var(--pgn-elevation-icon-button-box-shadow-dark-base-inset)
|
|
1034
|
+
var(--pgn-elevation-icon-button-box-shadow-dark-base-offset-x)
|
|
1035
|
+
var(--pgn-elevation-icon-button-box-shadow-dark-base-offset-y)
|
|
1036
|
+
var(--pgn-elevation-icon-button-box-shadow-dark-base-blur)
|
|
1037
|
+
var(--pgn-elevation-icon-button-box-shadow-dark-base-spread)
|
|
1038
|
+
var(--pgn-elevation-icon-button-box-shadow-dark-base-color);
|
|
1039
|
+
--pgn-elevation-icon-button-box-shadow-dark-inverse:
|
|
1040
|
+
var(--pgn-elevation-icon-button-box-shadow-dark-inverse)
|
|
1041
|
+
var(--pgn-elevation-icon-button-box-shadow-dark-inverse-offset-x)
|
|
1042
|
+
var(--pgn-elevation-icon-button-box-shadow-dark-inverse-offset-y)
|
|
1043
|
+
var(--pgn-elevation-icon-button-box-shadow-dark-inverse-blur)
|
|
1044
|
+
var(--pgn-elevation-icon-button-box-shadow-dark-inverse-spread)
|
|
1045
|
+
var(--pgn-elevation-icon-button-box-shadow-dark-inverse-color);
|
|
1046
|
+
--pgn-elevation-icon-button-box-shadow-black-base:
|
|
1047
|
+
var(--pgn-elevation-icon-button-box-shadow-black-base-inset)
|
|
1048
|
+
var(--pgn-elevation-icon-button-box-shadow-black-base-offset-x)
|
|
1049
|
+
var(--pgn-elevation-icon-button-box-shadow-black-base-offset-y)
|
|
1050
|
+
var(--pgn-elevation-icon-button-box-shadow-black-base-blur)
|
|
1051
|
+
var(--pgn-elevation-icon-button-box-shadow-black-base-spread)
|
|
1052
|
+
var(--pgn-elevation-icon-button-box-shadow-black-base-color);
|
|
1053
|
+
--pgn-elevation-icon-button-box-shadow-black-inverse:
|
|
1054
|
+
var(--pgn-elevation-icon-button-box-shadow-black-inverse-inset)
|
|
1055
|
+
var(--pgn-elevation-icon-button-box-shadow-black-inverse-offset-x)
|
|
1056
|
+
var(--pgn-elevation-icon-button-box-shadow-black-inverse-offset-y)
|
|
1057
|
+
var(--pgn-elevation-icon-button-box-shadow-black-inverse-blur)
|
|
1058
|
+
var(--pgn-elevation-icon-button-box-shadow-black-inverse-spread)
|
|
1059
|
+
var(--pgn-elevation-icon-button-box-shadow-black-inverse-color);
|
|
1060
|
+
--pgn-elevation-toast-box-shadow:
|
|
1061
|
+
var(--pgn-elevation-toast-box-shadow-1-offset-x)
|
|
1062
|
+
var(--pgn-elevation-toast-box-shadow-1-offset-y)
|
|
1063
|
+
var(--pgn-elevation-toast-box-shadow-1-blur)
|
|
1064
|
+
var(--pgn-elevation-toast-box-shadow-1-color),
|
|
1065
|
+
var(--pgn-elevation-toast-box-shadow-2-offset-x)
|
|
1066
|
+
var(--pgn-elevation-toast-box-shadow-2-offset-y)
|
|
1067
|
+
var(--pgn-elevation-toast-box-shadow-2-blur)
|
|
1068
|
+
var(--pgn-elevation-toast-box-shadow-2-color);
|
|
1069
|
+
--pgn-elevation-sticky-shadow-bottom:
|
|
1070
|
+
var(--pgn-elevation-sticky-shadow-bottom-1-offset-x)
|
|
1071
|
+
var(--pgn-elevation-sticky-shadow-bottom-1-offset-y)
|
|
1072
|
+
var(--pgn-elevation-sticky-shadow-bottom-1-blur)
|
|
1073
|
+
var(--pgn-elevation-sticky-shadow-bottom-1-color),
|
|
1074
|
+
var(--pgn-elevation-sticky-shadow-bottom-2-offset-x)
|
|
1075
|
+
var(--pgn-elevation-sticky-shadow-bottom-2-offset-y)
|
|
1076
|
+
var(--pgn-elevation-sticky-shadow-bottom-2-blur)
|
|
1077
|
+
var(--pgn-elevation-sticky-shadow-bottom-2-color);
|
|
1078
|
+
--pgn-elevation-dropzone-hover:
|
|
1079
|
+
var(--pgn-elevation-dropzone-hover-inset)
|
|
1080
|
+
var(--pgn-elevation-dropzone-hover-offset-x)
|
|
1081
|
+
var(--pgn-elevation-dropzone-hover-offset-y)
|
|
1082
|
+
var(--pgn-elevation-dropzone-hover-blur)
|
|
1083
|
+
var(--pgn-elevation-dropzone-hover-spread)
|
|
1084
|
+
var(--pgn-elevation-dropzone-hover-color);
|
|
1085
|
+
--pgn-elevation-dropzone-focus:
|
|
1086
|
+
var(--pgn-elevation-dropzone-focus-inset)
|
|
1087
|
+
var(--pgn-elevation-dropzone-focus-offset-x)
|
|
1088
|
+
var(--pgn-elevation-dropzone-focus-offset-y)
|
|
1089
|
+
var(--pgn-elevation-dropzone-focus-blur)
|
|
1090
|
+
var(--pgn-elevation-dropzone-focus-spread)
|
|
1091
|
+
var(--pgn-elevation-dropzone-focus-color);
|
|
1092
|
+
--pgn-elevation-dropzone-error:
|
|
1093
|
+
var(--pgn-elevation-dropzone-error-inset)
|
|
1094
|
+
var(--pgn-elevation-dropzone-error-offset-x)
|
|
1095
|
+
var(--pgn-elevation-dropzone-error-offset-y)
|
|
1096
|
+
var(--pgn-elevation-dropzone-error-blur)
|
|
1097
|
+
var(--pgn-elevation-dropzone-error-spread)
|
|
1098
|
+
var(--pgn-elevation-dropzone-error-color);
|
|
1099
|
+
--pgn-elevation-dropzone-active:
|
|
1100
|
+
var(--pgn-elevation-dropzone-active-inset)
|
|
1101
|
+
var(--pgn-elevation-dropzone-active-offset-x)
|
|
1102
|
+
var(--pgn-elevation-dropzone-active-offset-y)
|
|
1103
|
+
var(--pgn-elevation-dropzone-active-blur)
|
|
1104
|
+
var(--pgn-elevation-dropzone-active-spread)
|
|
1105
|
+
var(--pgn-elevation-dropzone-active-color);
|
|
684
1106
|
}
|
|
685
1107
|
*,
|
|
686
1108
|
*::before,
|
|
@@ -957,50 +1379,50 @@ h1, h2, h3, h4, h5, h6,
|
|
|
957
1379
|
color: var(--pgn-color-headings-base);
|
|
958
1380
|
}
|
|
959
1381
|
h1, .h1 {
|
|
960
|
-
font-size: var(--pgn-typography-font-size-h1);
|
|
1382
|
+
font-size: var(--pgn-typography-font-size-h1-base);
|
|
961
1383
|
}
|
|
962
1384
|
h2, .h2 {
|
|
963
|
-
font-size: var(--pgn-typography-font-size-h2);
|
|
1385
|
+
font-size: var(--pgn-typography-font-size-h2-base);
|
|
964
1386
|
}
|
|
965
1387
|
h3, .h3 {
|
|
966
|
-
font-size: var(--pgn-typography-font-size-h3);
|
|
1388
|
+
font-size: var(--pgn-typography-font-size-h3-base);
|
|
967
1389
|
}
|
|
968
1390
|
h4, .h4 {
|
|
969
|
-
font-size: var(--pgn-typography-font-size-h4);
|
|
1391
|
+
font-size: var(--pgn-typography-font-size-h4-base);
|
|
970
1392
|
}
|
|
971
1393
|
h5, .h5 {
|
|
972
|
-
font-size: var(--pgn-typography-font-size-h5);
|
|
1394
|
+
font-size: var(--pgn-typography-font-size-h5-base);
|
|
973
1395
|
}
|
|
974
1396
|
h6, .h6 {
|
|
975
|
-
font-size: var(--pgn-typography-font-size-h6);
|
|
1397
|
+
font-size: var(--pgn-typography-font-size-h6-base);
|
|
976
1398
|
}
|
|
977
1399
|
.lead {
|
|
978
|
-
font-size: var(--pgn-typography-font-size-
|
|
1400
|
+
font-size: var(--pgn-typography-font-size-lg);
|
|
979
1401
|
font-weight: var(--pgn-typography-font-weight-lead);
|
|
980
1402
|
}
|
|
981
1403
|
.display-1 {
|
|
982
|
-
font-size: var(--pgn-typography-display-1);
|
|
983
|
-
font-weight: var(--pgn-typography-
|
|
984
|
-
line-height: var(--pgn-typography-
|
|
1404
|
+
font-size: var(--pgn-typography-font-size-display-1);
|
|
1405
|
+
font-weight: var(--pgn-typography-font-weight-display-1);
|
|
1406
|
+
line-height: var(--pgn-typography-line-height-display-base);
|
|
985
1407
|
}
|
|
986
1408
|
.display-2 {
|
|
987
|
-
font-size: var(--pgn-typography-display-2);
|
|
988
|
-
font-weight: var(--pgn-typography-
|
|
989
|
-
line-height: var(--pgn-typography-
|
|
1409
|
+
font-size: var(--pgn-typography-font-size-display-2);
|
|
1410
|
+
font-weight: var(--pgn-typography-font-weight-display-2);
|
|
1411
|
+
line-height: var(--pgn-typography-line-height-display-base);
|
|
990
1412
|
}
|
|
991
1413
|
.display-3 {
|
|
992
|
-
font-size: var(--pgn-typography-display-3);
|
|
993
|
-
font-weight: var(--pgn-typography-
|
|
994
|
-
line-height: var(--pgn-typography-
|
|
1414
|
+
font-size: var(--pgn-typography-font-size-display-3);
|
|
1415
|
+
font-weight: var(--pgn-typography-font-weight-display-3);
|
|
1416
|
+
line-height: var(--pgn-typography-line-height-display-base);
|
|
995
1417
|
}
|
|
996
1418
|
.display-4 {
|
|
997
|
-
font-size: var(--pgn-typography-display-4);
|
|
998
|
-
font-weight: var(--pgn-typography-
|
|
999
|
-
line-height: var(--pgn-typography-
|
|
1419
|
+
font-size: var(--pgn-typography-font-size-display-4);
|
|
1420
|
+
font-weight: var(--pgn-typography-font-weight-display-4);
|
|
1421
|
+
line-height: var(--pgn-typography-line-height-display-base);
|
|
1000
1422
|
}
|
|
1001
1423
|
small,
|
|
1002
1424
|
.small {
|
|
1003
|
-
font-size: var(--pgn-typography-font-size-
|
|
1425
|
+
font-size: var(--pgn-typography-font-size-sm);
|
|
1004
1426
|
font-weight: var(--pgn-typography-font-weight-normal);
|
|
1005
1427
|
}
|
|
1006
1428
|
mark,
|
|
@@ -1039,68 +1461,86 @@ mark,
|
|
|
1039
1461
|
content: "— ";
|
|
1040
1462
|
}
|
|
1041
1463
|
@media (max-width: 576px) {
|
|
1042
|
-
.display-1
|
|
1043
|
-
|
|
1044
|
-
|
|
1464
|
+
.display-1 {
|
|
1465
|
+
font-size: var(--pgn-typography-font-size-display-mobile-1);
|
|
1466
|
+
line-height: var(--pgn-typography-line-height-display-mobile);
|
|
1467
|
+
}
|
|
1468
|
+
.display-2 {
|
|
1469
|
+
font-size: var(--pgn-typography-font-size-display-mobile-2);
|
|
1470
|
+
line-height: var(--pgn-typography-line-height-display-mobile);
|
|
1471
|
+
}
|
|
1472
|
+
.display-3 {
|
|
1473
|
+
font-size: var(--pgn-typography-font-size-display-mobile-3);
|
|
1474
|
+
line-height: var(--pgn-typography-line-height-display-mobile);
|
|
1475
|
+
}
|
|
1045
1476
|
.display-4 {
|
|
1046
|
-
font-size: var(--pgn-typography-display-mobile);
|
|
1047
|
-
line-height: var(--pgn-typography-
|
|
1477
|
+
font-size: var(--pgn-typography-font-size-display-mobile-4);
|
|
1478
|
+
line-height: var(--pgn-typography-line-height-display-mobile);
|
|
1048
1479
|
}
|
|
1049
1480
|
h1,
|
|
1050
1481
|
.h1 {
|
|
1051
|
-
font-size: var(--pgn-typography-font-size-mobile
|
|
1482
|
+
font-size: var(--pgn-typography-font-size-h1-mobile);
|
|
1052
1483
|
}
|
|
1053
1484
|
h2,
|
|
1054
1485
|
.h2 {
|
|
1055
|
-
font-size: var(--pgn-typography-font-size-mobile
|
|
1486
|
+
font-size: var(--pgn-typography-font-size-h2-mobile);
|
|
1056
1487
|
}
|
|
1057
1488
|
h3,
|
|
1058
1489
|
.h3 {
|
|
1059
|
-
font-size: var(--pgn-typography-font-size-mobile
|
|
1490
|
+
font-size: var(--pgn-typography-font-size-h3-mobile);
|
|
1060
1491
|
}
|
|
1061
1492
|
h4,
|
|
1062
1493
|
.h4 {
|
|
1063
|
-
font-size: var(--pgn-typography-font-size-mobile
|
|
1494
|
+
font-size: var(--pgn-typography-font-size-h4-mobile);
|
|
1064
1495
|
}
|
|
1065
1496
|
h5,
|
|
1066
1497
|
.h5 {
|
|
1067
|
-
font-size: var(--pgn-typography-font-size-mobile
|
|
1498
|
+
font-size: var(--pgn-typography-font-size-h5-mobile);
|
|
1068
1499
|
}
|
|
1069
1500
|
h6,
|
|
1070
1501
|
.h6 {
|
|
1071
|
-
font-size: var(--pgn-typography-font-size-mobile
|
|
1502
|
+
font-size: var(--pgn-typography-font-size-h6-mobile);
|
|
1072
1503
|
}
|
|
1073
1504
|
}
|
|
1074
|
-
.mobile-type .display-1
|
|
1075
|
-
|
|
1076
|
-
|
|
1505
|
+
.mobile-type .display-1 {
|
|
1506
|
+
font-size: var(--pgn-typography-font-size-display-mobile-1);
|
|
1507
|
+
line-height: var(--pgn-typography-line-height-display-mobile);
|
|
1508
|
+
}
|
|
1509
|
+
.mobile-type .display-2 {
|
|
1510
|
+
font-size: var(--pgn-typography-font-size-display-mobile-2);
|
|
1511
|
+
line-height: var(--pgn-typography-line-height-display-mobile);
|
|
1512
|
+
}
|
|
1513
|
+
.mobile-type .display-3 {
|
|
1514
|
+
font-size: var(--pgn-typography-font-size-display-mobile-3);
|
|
1515
|
+
line-height: var(--pgn-typography-line-height-display-mobile);
|
|
1516
|
+
}
|
|
1077
1517
|
.mobile-type .display-4 {
|
|
1078
|
-
font-size: var(--pgn-typography-display-mobile);
|
|
1079
|
-
line-height: var(--pgn-typography-
|
|
1518
|
+
font-size: var(--pgn-typography-font-size-display-mobile-4);
|
|
1519
|
+
line-height: var(--pgn-typography-line-height-display-mobile);
|
|
1080
1520
|
}
|
|
1081
1521
|
.mobile-type h1,
|
|
1082
1522
|
.mobile-type .h1 {
|
|
1083
|
-
font-size: var(--pgn-typography-font-size-mobile
|
|
1523
|
+
font-size: var(--pgn-typography-font-size-h1-mobile);
|
|
1084
1524
|
}
|
|
1085
1525
|
.mobile-type h2,
|
|
1086
1526
|
.mobile-type .h2 {
|
|
1087
|
-
font-size: var(--pgn-typography-font-size-mobile
|
|
1527
|
+
font-size: var(--pgn-typography-font-size-h2-mobile);
|
|
1088
1528
|
}
|
|
1089
1529
|
.mobile-type h3,
|
|
1090
1530
|
.mobile-type .h3 {
|
|
1091
|
-
font-size: var(--pgn-typography-font-size-mobile
|
|
1531
|
+
font-size: var(--pgn-typography-font-size-h3-mobile);
|
|
1092
1532
|
}
|
|
1093
1533
|
.mobile-type h4,
|
|
1094
1534
|
.mobile-type .h4 {
|
|
1095
|
-
font-size: var(--pgn-typography-font-size-mobile
|
|
1535
|
+
font-size: var(--pgn-typography-font-size-h4-mobile);
|
|
1096
1536
|
}
|
|
1097
1537
|
.mobile-type h5,
|
|
1098
1538
|
.mobile-type .h5 {
|
|
1099
|
-
font-size: var(--pgn-typography-font-size-mobile
|
|
1539
|
+
font-size: var(--pgn-typography-font-size-h5-mobile);
|
|
1100
1540
|
}
|
|
1101
1541
|
.mobile-type h6,
|
|
1102
1542
|
.mobile-type .h6 {
|
|
1103
|
-
font-size: var(--pgn-typography-font-size-mobile
|
|
1543
|
+
font-size: var(--pgn-typography-font-size-h6-mobile);
|
|
1104
1544
|
}
|
|
1105
1545
|
.heading-label {
|
|
1106
1546
|
text-transform: uppercase;
|
|
@@ -3275,7 +3715,7 @@ p > a.brand-link[href]:not(.btn):hover, a.brand-link.inline-link:hover {
|
|
|
3275
3715
|
box-shadow: var(--pgn-elevation-box-shadow-sm) !important;
|
|
3276
3716
|
}
|
|
3277
3717
|
.shadow {
|
|
3278
|
-
box-shadow: var(--pgn-elevation-box-shadow-base) !important;
|
|
3718
|
+
box-shadow: var(--pgn-elevation-box-shadow-base-offset-x) var(--pgn-elevation-box-shadow-base-offset-y) var(--pgn-elevation-box-shadow-base-blur) var(--pgn-elevation-box-shadow-base-color) !important;
|
|
3279
3719
|
}
|
|
3280
3720
|
.shadow-lg {
|
|
3281
3721
|
box-shadow: var(--pgn-elevation-box-shadow-lg) !important;
|
|
@@ -7676,12 +8116,15 @@ p > a.brand-link[href]:not(.btn):hover, a.brand-link.inline-link:hover {
|
|
|
7676
8116
|
border-radius: 0 !important;
|
|
7677
8117
|
}
|
|
7678
8118
|
.x-small {
|
|
7679
|
-
font-size: var(--pgn-typography-font-size-
|
|
8119
|
+
font-size: var(--pgn-typography-font-size-xs) !important;
|
|
7680
8120
|
}
|
|
7681
8121
|
.micro {
|
|
7682
|
-
font-size: var(--pgn-typography-font-size-micro);
|
|
8122
|
+
font-size: var(--pgn-typography-font-size-micro) !important;
|
|
7683
8123
|
font-weight: normal;
|
|
7684
|
-
line-height: var(--pgn-typography-line-height-micro);
|
|
8124
|
+
line-height: var(--pgn-typography-line-height-micro) !important;
|
|
8125
|
+
}
|
|
8126
|
+
.font-size-normal {
|
|
8127
|
+
font-size: var(--pgn-typography-font-size-base) !important;
|
|
7685
8128
|
}
|
|
7686
8129
|
.mw-xs {
|
|
7687
8130
|
max-width: var(--pgn-size-container-max-width-xs) !important;
|
|
@@ -8497,16 +8940,14 @@ p > a.brand-link[href]:not(.btn):hover, a.brand-link.inline-link:hover {
|
|
|
8497
8940
|
}
|
|
8498
8941
|
}
|
|
8499
8942
|
/**
|
|
8500
|
-
*
|
|
8501
|
-
*
|
|
8502
|
-
* Generated on Wed, 15 May 2024 12:30:36 GMT
|
|
8943
|
+
* Do not edit directly, this file was auto-generated. while transforming design tokens.
|
|
8944
|
+
* See <root>/tokens/README.md for more details.
|
|
8503
8945
|
*/
|
|
8504
8946
|
/**
|
|
8505
|
-
*
|
|
8506
|
-
*
|
|
8507
|
-
* Generated on Fri, 22 Sep 2023 08:20:17 GMT
|
|
8947
|
+
* Do not edit directly, this file was auto-generated. while transforming design tokens.
|
|
8948
|
+
* See <root>/tokens/README.md for more details.
|
|
8508
8949
|
*/
|
|
8509
|
-
@custom-media --pgn-size-breakpoint-min-width-xs (min-width:
|
|
8950
|
+
@custom-media --pgn-size-breakpoint-min-width-xs (min-width: 0px);
|
|
8510
8951
|
@custom-media --pgn-size-breakpoint-max-width-xs (max-width: 576px);
|
|
8511
8952
|
@custom-media --pgn-size-breakpoint-min-width-sm (min-width: 576px);
|
|
8512
8953
|
@custom-media --pgn-size-breakpoint-max-width-sm (max-width: 768px);
|
|
@@ -10490,10 +10931,10 @@ a.pgn__card {
|
|
|
10490
10931
|
text-align: start;
|
|
10491
10932
|
}
|
|
10492
10933
|
.pgn__card .pgn__card-header .pgn__card-header-title-sm {
|
|
10493
|
-
font-size: var(--pgn-typography-font-size-h4);
|
|
10934
|
+
font-size: var(--pgn-typography-font-size-h4-base);
|
|
10494
10935
|
}
|
|
10495
10936
|
.pgn__card .pgn__card-header .pgn__card-header-title-md {
|
|
10496
|
-
font-size: var(--pgn-typography-font-size-h3);
|
|
10937
|
+
font-size: var(--pgn-typography-font-size-h3-base);
|
|
10497
10938
|
}
|
|
10498
10939
|
.pgn__card .pgn__card-header .pgn__card-header-subtitle,
|
|
10499
10940
|
.pgn__card .pgn__card-header .pgn__card-header-subtitle-sm,
|
|
@@ -10502,10 +10943,10 @@ a.pgn__card {
|
|
|
10502
10943
|
margin-top: calc(var(--pgn-spacing-spacer-base) * .25);
|
|
10503
10944
|
}
|
|
10504
10945
|
.pgn__card .pgn__card-header .pgn__card-header-subtitle-sm {
|
|
10505
|
-
font-size: var(--pgn-typography-font-size-h5);
|
|
10946
|
+
font-size: var(--pgn-typography-font-size-h5-base);
|
|
10506
10947
|
}
|
|
10507
10948
|
.pgn__card .pgn__card-header .pgn__card-header-subtitle-md {
|
|
10508
|
-
font-size: var(--pgn-typography-font-size-h4);
|
|
10949
|
+
font-size: var(--pgn-typography-font-size-h4-base);
|
|
10509
10950
|
}
|
|
10510
10951
|
.pgn__card .pgn__card-header .pgn__card-header-actions {
|
|
10511
10952
|
margin-top: var(--pgn-spacing-spacer-base);
|
|
@@ -10595,7 +11036,7 @@ a.pgn__card {
|
|
|
10595
11036
|
.pgn__card .pgn__card-section .pgn__card-section-title {
|
|
10596
11037
|
color: var(--pgn-color-black);
|
|
10597
11038
|
font-weight: var(--pgn-typography-font-weight-bold);
|
|
10598
|
-
font-size: var(--pgn-typography-font-size-h5);
|
|
11039
|
+
font-size: var(--pgn-typography-font-size-h5-base);
|
|
10599
11040
|
margin-bottom: var(--pgn-spacing-card-spacer-y);
|
|
10600
11041
|
}
|
|
10601
11042
|
.pgn__card .pgn__card-section .pgn__card-section-actions {
|
|
@@ -10691,7 +11132,7 @@ a.pgn__card {
|
|
|
10691
11132
|
margin-top: var(--pgn-spacing-spacer-base);
|
|
10692
11133
|
}
|
|
10693
11134
|
.pgn__card .pgn__card-status .pgn__card-status__heading {
|
|
10694
|
-
font-size: var(--pgn-typography-font-size-h4);
|
|
11135
|
+
font-size: var(--pgn-typography-font-size-h4-base);
|
|
10695
11136
|
color: var(--pgn-color-black);
|
|
10696
11137
|
display: flex;
|
|
10697
11138
|
font-weight: var(--pgn-typography-font-weight-bold);
|
|
@@ -10953,7 +11394,7 @@ a.pgn__card {
|
|
|
10953
11394
|
.carousel-fade .active.carousel-item-right {
|
|
10954
11395
|
z-index: 0;
|
|
10955
11396
|
opacity: 0;
|
|
10956
|
-
transition:
|
|
11397
|
+
transition: var(--pgn-transition-carousel-base);
|
|
10957
11398
|
}
|
|
10958
11399
|
.carousel-control-prev,
|
|
10959
11400
|
.carousel-control-next {
|
|
@@ -12587,7 +13028,7 @@ textarea.form-control {
|
|
|
12587
13028
|
transition: var(--pgn-transition-form-control);
|
|
12588
13029
|
}
|
|
12589
13030
|
.pgn__form-text {
|
|
12590
|
-
font-size: var(--pgn-typography-font-size-
|
|
13031
|
+
font-size: var(--pgn-typography-font-size-sm);
|
|
12591
13032
|
display: flex;
|
|
12592
13033
|
align-items: center;
|
|
12593
13034
|
}
|
|
@@ -13322,6 +13763,9 @@ select.form-control {
|
|
|
13322
13763
|
border-top: solid 1px var(--pgn-color-light-base);
|
|
13323
13764
|
padding-top: var(--pgn-spacing-modal-footer-padding-y);
|
|
13324
13765
|
}
|
|
13766
|
+
.pgn__modal-fullscreen .pgn__modal-header {
|
|
13767
|
+
border-radius: 0;
|
|
13768
|
+
}
|
|
13325
13769
|
.pgn__modal-content-container > *.pgn__modal.pgn__modal-fullscreen {
|
|
13326
13770
|
position: fixed;
|
|
13327
13771
|
top: 0;
|
|
@@ -13356,7 +13800,7 @@ select.form-control {
|
|
|
13356
13800
|
margin-top: 0;
|
|
13357
13801
|
}
|
|
13358
13802
|
.pgn__modal-header .pgn__modal-title {
|
|
13359
|
-
font-size: var(--pgn-typography-font-size-h3);
|
|
13803
|
+
font-size: var(--pgn-typography-font-size-h3-base);
|
|
13360
13804
|
margin-inline-end: 3rem;
|
|
13361
13805
|
text-align: start;
|
|
13362
13806
|
}
|
|
@@ -13487,7 +13931,7 @@ select.form-control {
|
|
|
13487
13931
|
color: var(--pgn-color-danger-500);
|
|
13488
13932
|
}
|
|
13489
13933
|
.pgn__alert-modal .pgn__modal-title {
|
|
13490
|
-
font-size: var(--pgn-typography-font-size-h4);
|
|
13934
|
+
font-size: var(--pgn-typography-font-size-h4-base);
|
|
13491
13935
|
display: flex;
|
|
13492
13936
|
flex-grow: 1;
|
|
13493
13937
|
align-items: center;
|
|
@@ -14349,13 +14793,13 @@ select.form-control {
|
|
|
14349
14793
|
min-height: 36px;
|
|
14350
14794
|
display: flex;
|
|
14351
14795
|
flex-wrap: nowrap;
|
|
14352
|
-
font-size: var(--pgn-typography-font-size-
|
|
14796
|
+
font-size: var(--pgn-typography-font-size-xs);
|
|
14353
14797
|
background-color: var(--pgn-page-baner-bg, inherit);
|
|
14354
14798
|
color: var(--pgn-page-baner-color, inherit);
|
|
14355
14799
|
}
|
|
14356
14800
|
@media (min-width: 768px) {
|
|
14357
14801
|
.pgn__pageBanner-component {
|
|
14358
|
-
font-size: var(--pgn-typography-font-size-
|
|
14802
|
+
font-size: var(--pgn-typography-font-size-sm);
|
|
14359
14803
|
}
|
|
14360
14804
|
}
|
|
14361
14805
|
.pgn__pageBanner__dark {
|
|
@@ -14692,7 +15136,7 @@ select.form-control {
|
|
|
14692
15136
|
.popover .popover-header {
|
|
14693
15137
|
display: flex;
|
|
14694
15138
|
align-items: center;
|
|
14695
|
-
font-size: var(--pgn-typography-font-size-h5);
|
|
15139
|
+
font-size: var(--pgn-typography-font-size-h5-base);
|
|
14696
15140
|
}
|
|
14697
15141
|
.popover .pgn__icon {
|
|
14698
15142
|
margin-inline-end: var(--pgn-spacing-popover-icon-margin-right);
|
|
@@ -14784,7 +15228,7 @@ select.form-control {
|
|
|
14784
15228
|
height: var(--pgn-size-progress-bar-height-base);
|
|
14785
15229
|
overflow: hidden;
|
|
14786
15230
|
line-height: 0;
|
|
14787
|
-
background-color: var(--pgn-color-progress-
|
|
15231
|
+
background-color: var(--pgn-color-progress-bg);
|
|
14788
15232
|
box-shadow: var(--pgn-elevation-progress-bar-box-shadow);
|
|
14789
15233
|
font-size: var(--pgn-typography-progress-bar-font-size);
|
|
14790
15234
|
border-radius: var(--pgn-size-progress-bar-border-radius);
|
|
@@ -14795,11 +15239,11 @@ select.form-control {
|
|
|
14795
15239
|
flex-direction: column;
|
|
14796
15240
|
justify-content: center;
|
|
14797
15241
|
overflow: hidden;
|
|
14798
|
-
color: var(--pgn-color-progress-bar-
|
|
15242
|
+
color: var(--pgn-color-progress-bar-base);
|
|
14799
15243
|
text-align: center;
|
|
14800
15244
|
white-space: nowrap;
|
|
14801
|
-
transition: var(--pgn-transition-progress-bar-
|
|
14802
|
-
background-color: var(--pgn-color-progress-bar-
|
|
15245
|
+
transition: var(--pgn-transition-progress-bar-transition);
|
|
15246
|
+
background-color: var(--pgn-color-progress-bar-bg-base);
|
|
14803
15247
|
}
|
|
14804
15248
|
@media (prefers-reduced-motion: reduce) {
|
|
14805
15249
|
.progress-bar {
|
|
@@ -14811,7 +15255,7 @@ select.form-control {
|
|
|
14811
15255
|
background-size: var(--pgn-size-progress-bar-height-base) var(--pgn-size-progress-bar-height-base);
|
|
14812
15256
|
}
|
|
14813
15257
|
.progress-bar-animated {
|
|
14814
|
-
animation: var(--pgn-transition-progress-bar-
|
|
15258
|
+
animation: var(--pgn-transition-progress-bar-animation-timing) progress-bar-stripes;
|
|
14815
15259
|
}
|
|
14816
15260
|
@media (prefers-reduced-motion: reduce) {
|
|
14817
15261
|
.progress-bar-animated {
|
|
@@ -14831,7 +15275,7 @@ select.form-control {
|
|
|
14831
15275
|
border: none;
|
|
14832
15276
|
}
|
|
14833
15277
|
.pgn__progress-annotated .progress .progress-bar {
|
|
14834
|
-
background-color: var(--pgn-color-progress-bar-
|
|
15278
|
+
background-color: var(--pgn-color-progress-bar-bg-annotated);
|
|
14835
15279
|
overflow: visible;
|
|
14836
15280
|
position: relative;
|
|
14837
15281
|
}
|
|
@@ -14947,7 +15391,7 @@ select.form-control {
|
|
|
14947
15391
|
.pgn__progress-annotated .pgn__progress-hint {
|
|
14948
15392
|
box-sizing: border-box;
|
|
14949
15393
|
padding: 0 var(--pgn-spacing-progress-bar-hint-annotation-gap);
|
|
14950
|
-
font-size: var(--pgn-typography-font-size-
|
|
15394
|
+
font-size: var(--pgn-typography-font-size-sm);
|
|
14951
15395
|
}
|
|
14952
15396
|
.pgn__searchfield {
|
|
14953
15397
|
transition: var(--pgn-transition-form-input);
|
|
@@ -15257,7 +15701,7 @@ select.form-control {
|
|
|
15257
15701
|
text-overflow: ellipsis;
|
|
15258
15702
|
}
|
|
15259
15703
|
.pgn__stepper-header .pgn__stepper-header-step .pgn__stepper-header-step-description {
|
|
15260
|
-
font-size: var(--pgn-typography-font-size-
|
|
15704
|
+
font-size: var(--pgn-typography-font-size-xs);
|
|
15261
15705
|
}
|
|
15262
15706
|
.pgn__stepper-header .pgn__stepper-header-step.pgn__stepper-header-step-active ~ .pgn__stepper-header-step {
|
|
15263
15707
|
color: var(--pgn-color-stepper-header-step-bg-active);
|
|
@@ -16120,7 +16564,7 @@ select.form-control {
|
|
|
16120
16564
|
padding: 0;
|
|
16121
16565
|
}
|
|
16122
16566
|
.toast .toast-header p {
|
|
16123
|
-
font-size: var(--pgn-typography-font-size-
|
|
16567
|
+
font-size: var(--pgn-typography-font-size-sm);
|
|
16124
16568
|
margin: 0;
|
|
16125
16569
|
padding-right: 0.75rem;
|
|
16126
16570
|
}
|
|
@@ -16337,7 +16781,7 @@ select.form-control {
|
|
|
16337
16781
|
margin-bottom: calc(var(--pgn-spacing-spacer-base) * .75);
|
|
16338
16782
|
}
|
|
16339
16783
|
.pgn__checkpoint #pgn__checkpoint-title {
|
|
16340
|
-
font-size: var(--pgn-typography-font-size-h3);
|
|
16784
|
+
font-size: var(--pgn-typography-font-size-h3-base);
|
|
16341
16785
|
margin-inline-end: calc(var(--pgn-spacing-spacer-base) * .75);
|
|
16342
16786
|
margin-bottom: 0;
|
|
16343
16787
|
}
|
|
@@ -16752,7 +17196,7 @@ select.form-control {
|
|
|
16752
17196
|
}
|
|
16753
17197
|
.pgn__hex-label {
|
|
16754
17198
|
font-weight: bold;
|
|
16755
|
-
font-size: var(--pgn-typography-font-size-mobile
|
|
17199
|
+
font-size: var(--pgn-typography-font-size-h5-mobile);
|
|
16756
17200
|
padding: 0.5rem;
|
|
16757
17201
|
margin-bottom: 0 !important;
|
|
16758
17202
|
}
|