@stackoverflow/stacks 1.0.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +47 -47
- package/dist/controllers/s-popover.d.ts +11 -2
- package/dist/css/stacks.css +257 -8
- package/dist/css/stacks.min.css +1 -1
- package/dist/js/stacks.js +18 -2
- package/dist/js/stacks.min.js +1 -1
- package/lib/css/atomic/borders.less +378 -378
- package/lib/css/atomic/colors.less +209 -209
- package/lib/css/atomic/flex.less +375 -375
- package/lib/css/atomic/grid.less +174 -174
- package/lib/css/atomic/misc.less +343 -343
- package/lib/css/atomic/spacing.less +342 -314
- package/lib/css/atomic/typography.less +273 -273
- package/lib/css/atomic/width-height.less +194 -194
- package/lib/css/base/body.less +44 -44
- package/lib/css/base/configuration-static.less +61 -61
- package/lib/css/base/icons.less +20 -20
- package/lib/css/base/internals.less +220 -220
- package/lib/css/base/reset-meyer.less +64 -64
- package/lib/css/base/reset-normalize.less +449 -449
- package/lib/css/base/reset.less +20 -20
- package/lib/css/components/activity-indicator.less +44 -45
- package/lib/css/components/avatars.less +189 -189
- package/lib/css/components/badges.less +254 -209
- package/lib/css/components/banners.less +80 -80
- package/lib/css/components/blank-states.less +26 -26
- package/lib/css/components/breadcrumbs.less +44 -44
- package/lib/css/components/button-groups.less +104 -104
- package/lib/css/components/buttons.less +665 -665
- package/lib/css/components/cards.less +44 -44
- package/lib/css/components/code-blocks.less +130 -130
- package/lib/css/components/collapsible.less +104 -104
- package/lib/css/components/inputs.less +728 -728
- package/lib/css/components/link-previews.less +136 -136
- package/lib/css/components/links.less +218 -218
- package/lib/css/components/menu.less +47 -47
- package/lib/css/components/modals.less +133 -133
- package/lib/css/components/navigation.less +146 -146
- package/lib/css/components/notices.less +233 -233
- package/lib/css/components/page-titles.less +60 -60
- package/lib/css/components/pagination.less +55 -55
- package/lib/css/components/popovers.less +197 -197
- package/lib/css/components/post-summary.less +436 -425
- package/lib/css/components/progress-bars.less +330 -330
- package/lib/css/components/prose.less +503 -503
- package/lib/css/components/spinner.less +107 -107
- package/lib/css/components/tables.less +341 -341
- package/lib/css/components/tags.less +236 -236
- package/lib/css/components/toggle-switches.less +144 -144
- package/lib/css/components/topbar.less +427 -427
- package/lib/css/components/uploader.less +210 -210
- package/lib/css/components/user-cards.less +169 -169
- package/lib/css/components/widget-dynamic.less +33 -33
- package/lib/css/components/widget-static.less +273 -273
- package/lib/css/exports/constants-colors.less +1092 -1092
- package/lib/css/exports/constants-helpers.less +108 -108
- package/lib/css/exports/constants-type.less +153 -153
- package/lib/css/exports/exports.less +15 -15
- package/lib/css/exports/mixins.less +237 -237
- package/lib/css/stacks-dynamic.less +35 -35
- package/lib/css/stacks-static.less +86 -86
- package/lib/css/stacks.less +13 -13
- package/lib/ts/controllers/index.ts +7 -7
- package/lib/ts/controllers/s-expandable-control.ts +188 -188
- package/lib/ts/controllers/s-modal.ts +321 -321
- package/lib/ts/controllers/s-navigation-tablist.ts +117 -117
- package/lib/ts/controllers/s-popover.ts +567 -547
- package/lib/ts/controllers/s-table.ts +220 -220
- package/lib/ts/controllers/s-tooltip.ts +246 -246
- package/lib/ts/controllers/s-uploader.ts +172 -172
- package/lib/ts/index.ts +20 -20
- package/lib/ts/stacks.ts +88 -88
- package/lib/tsconfig.json +13 -13
- package/package.json +86 -87
package/README.md
CHANGED
|
@@ -1,47 +1,47 @@
|
|
|
1
|
-
# Stacks
|
|
2
|
-
|
|
3
|
-
Stacks is Stack Overflow’s design system. It includes the resources needed to create consistent, predictable interfaces and workflows that conform to Stack Overflow’s principles, design language, and best practices.
|
|
4
|
-
|
|
5
|
-
Our documentation is built with Stacks itself, using its [immutable, atomic classes](http://johnpolacek.com/rethinking/) and components.
|
|
6
|
-
|
|
7
|
-
The Stacks website documents:
|
|
8
|
-
|
|
9
|
-
### Product
|
|
10
|
-
- Semantic and accessible component markup
|
|
11
|
-
- Cross-browser compatible Less / CSS
|
|
12
|
-
- An [icon library](https://github.com/StackExchange/Stacks-Icons)
|
|
13
|
-
|
|
14
|
-
### Email
|
|
15
|
-
- Email templates & components
|
|
16
|
-
|
|
17
|
-
Stacks documentation can be found at https://stackoverflow.design/
|
|
18
|
-
|
|
19
|
-
## Table of contents
|
|
20
|
-
|
|
21
|
-
- [Using Stacks](#using-stacks)
|
|
22
|
-
- [Building Stacks](#building-stacks)
|
|
23
|
-
- [Bugs and feature requests](#bugs-and-feature-requests)
|
|
24
|
-
- [Contributing](#contributing)
|
|
25
|
-
- [License](#license)
|
|
26
|
-
|
|
27
|
-
## Using Stacks
|
|
28
|
-
Using Stacks is outlined in our [usage guidelines](https://stackoverflow.design/product/guidelines/using-stacks).
|
|
29
|
-
|
|
30
|
-
## Building Stacks
|
|
31
|
-
To contribute to Stacks documentation or its CSS library, you’ll need to build Stacks locally. View our [building guidelines](https://stackoverflow.design/product/guidelines/building).
|
|
32
|
-
|
|
33
|
-
Having trouble getting these steps to work? Open [an issue](https://github.com/StackExchange/Stacks/issues/new) with a `setup` label.
|
|
34
|
-
|
|
35
|
-
## Testing Stacks
|
|
36
|
-
Stacks has implemented visual regression testing with [Backstop](https://github.com/garris/BackstopJS). To test if your new feature introduces visual regressions, run `npm run test` in a new Terminal window while Stacks is running. After the tests have run, a new browser window with any regressions will show. If the regressions are desired, you can run `npm run approve` to establish the new baseline.
|
|
37
|
-
|
|
38
|
-
Individual routes to test are found in [backstop.json](/backstop.json)
|
|
39
|
-
|
|
40
|
-
## Bugs and feature requests
|
|
41
|
-
Have a bug or feature request? First search existing or closed issues to make sure the issue hasn’t been noted yet. If not, review our [issue guidelines](/CONTRIBUTING.md#open-an-issue) for submitting [a bug report](/CONTRIBUTING.md#reporting-bugs) or [feature request](/CONTRIBUTING.md#feature-requests).
|
|
42
|
-
|
|
43
|
-
## Contributing
|
|
44
|
-
If you’d like to contribute to Stacks, please read through our [contribution guidelines](/CONTRIBUTING.md). Included are directions for opening issues, coding standards, and notes on development.
|
|
45
|
-
|
|
46
|
-
## License
|
|
47
|
-
Code and documentation copyright 2017-2022 Stack Exchange, Inc and released under the [MIT License](/LICENSE.MD).
|
|
1
|
+
# Stacks
|
|
2
|
+
|
|
3
|
+
Stacks is Stack Overflow’s design system. It includes the resources needed to create consistent, predictable interfaces and workflows that conform to Stack Overflow’s principles, design language, and best practices.
|
|
4
|
+
|
|
5
|
+
Our documentation is built with Stacks itself, using its [immutable, atomic classes](http://johnpolacek.com/rethinking/) and components.
|
|
6
|
+
|
|
7
|
+
The Stacks website documents:
|
|
8
|
+
|
|
9
|
+
### Product
|
|
10
|
+
- Semantic and accessible component markup
|
|
11
|
+
- Cross-browser compatible Less / CSS
|
|
12
|
+
- An [icon library](https://github.com/StackExchange/Stacks-Icons)
|
|
13
|
+
|
|
14
|
+
### Email
|
|
15
|
+
- Email templates & components
|
|
16
|
+
|
|
17
|
+
Stacks documentation can be found at https://stackoverflow.design/
|
|
18
|
+
|
|
19
|
+
## Table of contents
|
|
20
|
+
|
|
21
|
+
- [Using Stacks](#using-stacks)
|
|
22
|
+
- [Building Stacks](#building-stacks)
|
|
23
|
+
- [Bugs and feature requests](#bugs-and-feature-requests)
|
|
24
|
+
- [Contributing](#contributing)
|
|
25
|
+
- [License](#license)
|
|
26
|
+
|
|
27
|
+
## Using Stacks
|
|
28
|
+
Using Stacks is outlined in our [usage guidelines](https://stackoverflow.design/product/guidelines/using-stacks).
|
|
29
|
+
|
|
30
|
+
## Building Stacks
|
|
31
|
+
To contribute to Stacks documentation or its CSS library, you’ll need to build Stacks locally. View our [building guidelines](https://stackoverflow.design/product/guidelines/building).
|
|
32
|
+
|
|
33
|
+
Having trouble getting these steps to work? Open [an issue](https://github.com/StackExchange/Stacks/issues/new) with a `setup` label.
|
|
34
|
+
|
|
35
|
+
## Testing Stacks
|
|
36
|
+
Stacks has implemented visual regression testing with [Backstop](https://github.com/garris/BackstopJS). To test if your new feature introduces visual regressions, run `npm run test` in a new Terminal window while Stacks is running. After the tests have run, a new browser window with any regressions will show. If the regressions are desired, you can run `npm run approve` to establish the new baseline.
|
|
37
|
+
|
|
38
|
+
Individual routes to test are found in [backstop.json](/backstop.json)
|
|
39
|
+
|
|
40
|
+
## Bugs and feature requests
|
|
41
|
+
Have a bug or feature request? First search existing or closed issues to make sure the issue hasn’t been noted yet. If not, review our [issue guidelines](/CONTRIBUTING.md#open-an-issue) for submitting [a bug report](/CONTRIBUTING.md#reporting-bugs) or [feature request](/CONTRIBUTING.md#feature-requests).
|
|
42
|
+
|
|
43
|
+
## Contributing
|
|
44
|
+
If you’d like to contribute to Stacks, please read through our [contribution guidelines](/CONTRIBUTING.md). Included are directions for opening issues, coding standards, and notes on development.
|
|
45
|
+
|
|
46
|
+
## License
|
|
47
|
+
Code and documentation copyright 2017-2022 Stack Exchange, Inc and released under the [MIT License](/LICENSE.MD).
|
|
@@ -80,13 +80,17 @@ export declare class PopoverController extends BasePopoverController {
|
|
|
80
80
|
private boundHideOnOutsideClick;
|
|
81
81
|
private boundHideOnEscapePress;
|
|
82
82
|
/**
|
|
83
|
-
* Toggles optional classes in addition to BasePopoverController.shown
|
|
83
|
+
* Toggles optional classes and accessibility attributes in addition to BasePopoverController.shown
|
|
84
84
|
*/
|
|
85
85
|
protected shown(dispatcher?: Element | null): void;
|
|
86
86
|
/**
|
|
87
|
-
* Toggles optional classes in addition to BasePopoverController.hidden
|
|
87
|
+
* Toggles optional classes and accessibility attributes in addition to BasePopoverController.hidden
|
|
88
88
|
*/
|
|
89
89
|
protected hidden(dispatcher?: Element | null): void;
|
|
90
|
+
/**
|
|
91
|
+
* Initializes accessibility attributes in addition to BasePopoverController.connect
|
|
92
|
+
*/
|
|
93
|
+
connect(): void;
|
|
90
94
|
/**
|
|
91
95
|
* Binds global events to the document for hiding popovers on user interaction
|
|
92
96
|
*/
|
|
@@ -110,6 +114,11 @@ export declare class PopoverController extends BasePopoverController {
|
|
|
110
114
|
* @param {boolean=} show - A boolean indicating whether this is being triggered by a show or hide.
|
|
111
115
|
*/
|
|
112
116
|
private toggleOptionalClasses;
|
|
117
|
+
/**
|
|
118
|
+
* Toggles accessibility attributes based on whether the popover is shown or not
|
|
119
|
+
* @param {boolean=} show - A boolean indicating whether this is being triggered by a show or hide.
|
|
120
|
+
*/
|
|
121
|
+
private toggleAccessibilityAttributes;
|
|
113
122
|
}
|
|
114
123
|
/**
|
|
115
124
|
* Helper to manually show an s-popover element via external JS
|
package/dist/css/stacks.css
CHANGED
|
@@ -402,9 +402,8 @@ template {
|
|
|
402
402
|
.s-activity-indicator {
|
|
403
403
|
display: inline-block;
|
|
404
404
|
min-width: var(--su-static12);
|
|
405
|
-
height: var(--su-static12);
|
|
406
|
-
padding
|
|
407
|
-
padding-right: var(--su4);
|
|
405
|
+
min-height: var(--su-static12);
|
|
406
|
+
padding: var(--su2) var(--su4);
|
|
408
407
|
line-height: 1.1;
|
|
409
408
|
background-color: var(--theme-secondary-400);
|
|
410
409
|
box-shadow: 0 0 0 var(--su-static4) var(--focus-ring);
|
|
@@ -600,6 +599,9 @@ a.s-badge:hover {
|
|
|
600
599
|
margin-right: var(--su1);
|
|
601
600
|
margin-left: calc((var(--su4) + var(--su1)) * -1);
|
|
602
601
|
}
|
|
602
|
+
.s-badge__icon {
|
|
603
|
+
gap: 0.3em;
|
|
604
|
+
}
|
|
603
605
|
.s-badge__sm {
|
|
604
606
|
min-width: 18px;
|
|
605
607
|
align-self: flex-start;
|
|
@@ -726,6 +728,36 @@ body.theme-highcontrast .s-badge__moderator {
|
|
|
726
728
|
body.theme-highcontrast .s-badge__staff {
|
|
727
729
|
border-color: currentColor;
|
|
728
730
|
}
|
|
731
|
+
.s-badge__danger {
|
|
732
|
+
color: var(--red-900);
|
|
733
|
+
background-color: var(--red-100);
|
|
734
|
+
border-color: var(--red-600);
|
|
735
|
+
}
|
|
736
|
+
.s-badge__danger.s-badge__filled {
|
|
737
|
+
color: hsl(0, 0%, 100%);
|
|
738
|
+
background-color: var(--red-500);
|
|
739
|
+
border-color: transparent;
|
|
740
|
+
}
|
|
741
|
+
.s-badge__info {
|
|
742
|
+
color: var(--blue-900);
|
|
743
|
+
background-color: var(--blue-100);
|
|
744
|
+
border-color: var(--blue-600);
|
|
745
|
+
}
|
|
746
|
+
.s-badge__warning {
|
|
747
|
+
color: var(--yellow-900);
|
|
748
|
+
background-color: var(--yellow-100);
|
|
749
|
+
border-color: var(--yellow-600);
|
|
750
|
+
}
|
|
751
|
+
.s-badge__muted {
|
|
752
|
+
color: var(--black-900);
|
|
753
|
+
background-color: var(--black-100);
|
|
754
|
+
border-color: var(--black-600);
|
|
755
|
+
}
|
|
756
|
+
.s-badge__muted.s-badge__filled {
|
|
757
|
+
color: var(--white);
|
|
758
|
+
background-color: var(--black-700);
|
|
759
|
+
border-color: transparent;
|
|
760
|
+
}
|
|
729
761
|
.s-award-bling {
|
|
730
762
|
display: flex;
|
|
731
763
|
align-items: center;
|
|
@@ -2313,7 +2345,7 @@ body.theme-system .theme-dark__forced .s-popover--arrow {
|
|
|
2313
2345
|
font-size: var(--fs-body1);
|
|
2314
2346
|
color: var(--fc-light);
|
|
2315
2347
|
}
|
|
2316
|
-
.s-post-summary--stats .s-post-summary--stats-item {
|
|
2348
|
+
.s-post-summary--stats .s-post-summary--stats-item:not(.s-badge) {
|
|
2317
2349
|
display: inline-flex;
|
|
2318
2350
|
gap: 0.3em;
|
|
2319
2351
|
align-items: center;
|
|
@@ -2327,6 +2359,11 @@ body.theme-system .theme-dark__forced .s-popover--arrow {
|
|
|
2327
2359
|
.s-post-summary--stats .s-post-summary--stats-item .s-post-summary--stats-item-number {
|
|
2328
2360
|
font-weight: 500;
|
|
2329
2361
|
}
|
|
2362
|
+
.s-post-summary--stats .s-post-summary--stats-item.s-badge {
|
|
2363
|
+
font-size: var(--fs-body1);
|
|
2364
|
+
line-height: var(--lh-md);
|
|
2365
|
+
padding: var(--su2) var(--su4);
|
|
2366
|
+
}
|
|
2330
2367
|
.s-post-summary--stats .s-post-summary--stats-item.has-answers,
|
|
2331
2368
|
.s-post-summary--stats .s-post-summary--stats-item.has-bounty,
|
|
2332
2369
|
.s-post-summary--stats .s-post-summary--stats-item.is-deleted,
|
|
@@ -2552,12 +2589,12 @@ body.theme-highcontrast .s-post-summary--answer:before {
|
|
|
2552
2589
|
color: hsl(0, 0%, 100%);
|
|
2553
2590
|
background-color: var(--red-500);
|
|
2554
2591
|
}
|
|
2555
|
-
.s-post-summary__ignored .s-post-summary--content,
|
|
2556
|
-
.s-post-summary__deleted .s-post-summary--content {
|
|
2592
|
+
.s-post-summary__ignored .s-post-summary--content > *:not(.s-post-summary--content-menu-button),
|
|
2593
|
+
.s-post-summary__deleted .s-post-summary--content > *:not(.s-post-summary--content-menu-button) {
|
|
2557
2594
|
opacity: 0.6;
|
|
2558
2595
|
}
|
|
2559
|
-
.s-post-summary__ignored .s-post-summary--stats-item:not(.is-deleted),
|
|
2560
|
-
.s-post-summary__deleted .s-post-summary--stats-item:not(.is-deleted) {
|
|
2596
|
+
.s-post-summary__ignored .s-post-summary--stats-item:not(.s-badge):not(.is-deleted),
|
|
2597
|
+
.s-post-summary__deleted .s-post-summary--stats-item:not(.s-badge):not(.is-deleted) {
|
|
2561
2598
|
opacity: 0.6;
|
|
2562
2599
|
filter: grayscale(100%);
|
|
2563
2600
|
}
|
|
@@ -11638,6 +11675,9 @@ body {
|
|
|
11638
11675
|
.m128 {
|
|
11639
11676
|
margin: var(--su128) !important;
|
|
11640
11677
|
}
|
|
11678
|
+
.m0 {
|
|
11679
|
+
margin: 0 !important;
|
|
11680
|
+
}
|
|
11641
11681
|
.mn1 {
|
|
11642
11682
|
margin: calc(var(--su1) * -1) !important;
|
|
11643
11683
|
}
|
|
@@ -11716,6 +11756,9 @@ body {
|
|
|
11716
11756
|
.mt128 {
|
|
11717
11757
|
margin-top: var(--su128) !important;
|
|
11718
11758
|
}
|
|
11759
|
+
.mt0 {
|
|
11760
|
+
margin-top: 0 !important;
|
|
11761
|
+
}
|
|
11719
11762
|
.mtn1 {
|
|
11720
11763
|
margin-top: calc(var(--su1) * -1) !important;
|
|
11721
11764
|
}
|
|
@@ -11794,6 +11837,9 @@ body {
|
|
|
11794
11837
|
.mr128 {
|
|
11795
11838
|
margin-right: var(--su128) !important;
|
|
11796
11839
|
}
|
|
11840
|
+
.mr0 {
|
|
11841
|
+
margin-right: 0 !important;
|
|
11842
|
+
}
|
|
11797
11843
|
.mrn1 {
|
|
11798
11844
|
margin-right: calc(var(--su1) * -1) !important;
|
|
11799
11845
|
}
|
|
@@ -11872,6 +11918,9 @@ body {
|
|
|
11872
11918
|
.mb128 {
|
|
11873
11919
|
margin-bottom: var(--su128) !important;
|
|
11874
11920
|
}
|
|
11921
|
+
.mb0 {
|
|
11922
|
+
margin-bottom: 0 !important;
|
|
11923
|
+
}
|
|
11875
11924
|
.mbn1 {
|
|
11876
11925
|
margin-bottom: calc(var(--su1) * -1) !important;
|
|
11877
11926
|
}
|
|
@@ -11950,6 +11999,9 @@ body {
|
|
|
11950
11999
|
.ml128 {
|
|
11951
12000
|
margin-left: var(--su128) !important;
|
|
11952
12001
|
}
|
|
12002
|
+
.ml0 {
|
|
12003
|
+
margin-left: 0 !important;
|
|
12004
|
+
}
|
|
11953
12005
|
.mln1 {
|
|
11954
12006
|
margin-left: calc(var(--su1) * -1) !important;
|
|
11955
12007
|
}
|
|
@@ -12041,6 +12093,58 @@ body {
|
|
|
12041
12093
|
margin-left: var(--su128) !important;
|
|
12042
12094
|
margin-right: var(--su128) !important;
|
|
12043
12095
|
}
|
|
12096
|
+
.mxn1 {
|
|
12097
|
+
margin-left: calc(var(--su1) * -1) !important;
|
|
12098
|
+
margin-right: calc(var(--su1) * -1) !important;
|
|
12099
|
+
}
|
|
12100
|
+
.mxn2 {
|
|
12101
|
+
margin-left: calc(var(--su2) * -1) !important;
|
|
12102
|
+
margin-right: calc(var(--su2) * -1) !important;
|
|
12103
|
+
}
|
|
12104
|
+
.mxn4 {
|
|
12105
|
+
margin-left: calc(var(--su4) * -1) !important;
|
|
12106
|
+
margin-right: calc(var(--su4) * -1) !important;
|
|
12107
|
+
}
|
|
12108
|
+
.mxn6 {
|
|
12109
|
+
margin-left: calc(var(--su6) * -1) !important;
|
|
12110
|
+
margin-right: calc(var(--su6) * -1) !important;
|
|
12111
|
+
}
|
|
12112
|
+
.mxn8 {
|
|
12113
|
+
margin-left: calc(var(--su8) * -1) !important;
|
|
12114
|
+
margin-right: calc(var(--su8) * -1) !important;
|
|
12115
|
+
}
|
|
12116
|
+
.mxn12 {
|
|
12117
|
+
margin-left: calc(var(--su12) * -1) !important;
|
|
12118
|
+
margin-right: calc(var(--su12) * -1) !important;
|
|
12119
|
+
}
|
|
12120
|
+
.mxn16 {
|
|
12121
|
+
margin-left: calc(var(--su16) * -1) !important;
|
|
12122
|
+
margin-right: calc(var(--su16) * -1) !important;
|
|
12123
|
+
}
|
|
12124
|
+
.mxn24 {
|
|
12125
|
+
margin-left: calc(var(--su24) * -1) !important;
|
|
12126
|
+
margin-right: calc(var(--su24) * -1) !important;
|
|
12127
|
+
}
|
|
12128
|
+
.mxn32 {
|
|
12129
|
+
margin-left: calc(var(--su32) * -1) !important;
|
|
12130
|
+
margin-right: calc(var(--su32) * -1) !important;
|
|
12131
|
+
}
|
|
12132
|
+
.mxn48 {
|
|
12133
|
+
margin-left: calc(var(--su48) * -1) !important;
|
|
12134
|
+
margin-right: calc(var(--su48) * -1) !important;
|
|
12135
|
+
}
|
|
12136
|
+
.mxn64 {
|
|
12137
|
+
margin-left: calc(var(--su64) * -1) !important;
|
|
12138
|
+
margin-right: calc(var(--su64) * -1) !important;
|
|
12139
|
+
}
|
|
12140
|
+
.mxn96 {
|
|
12141
|
+
margin-left: calc(var(--su96) * -1) !important;
|
|
12142
|
+
margin-right: calc(var(--su96) * -1) !important;
|
|
12143
|
+
}
|
|
12144
|
+
.mxn128 {
|
|
12145
|
+
margin-left: calc(var(--su128) * -1) !important;
|
|
12146
|
+
margin-right: calc(var(--su128) * -1) !important;
|
|
12147
|
+
}
|
|
12044
12148
|
.my1 {
|
|
12045
12149
|
margin-top: var(--su1) !important;
|
|
12046
12150
|
margin-bottom: var(--su1) !important;
|
|
@@ -12093,6 +12197,58 @@ body {
|
|
|
12093
12197
|
margin-top: var(--su128) !important;
|
|
12094
12198
|
margin-bottom: var(--su128) !important;
|
|
12095
12199
|
}
|
|
12200
|
+
.myn1 {
|
|
12201
|
+
margin-top: calc(var(--su1) * -1) !important;
|
|
12202
|
+
margin-bottom: calc(var(--su1) * -1) !important;
|
|
12203
|
+
}
|
|
12204
|
+
.myn2 {
|
|
12205
|
+
margin-top: calc(var(--su2) * -1) !important;
|
|
12206
|
+
margin-bottom: calc(var(--su2) * -1) !important;
|
|
12207
|
+
}
|
|
12208
|
+
.myn4 {
|
|
12209
|
+
margin-top: calc(var(--su4) * -1) !important;
|
|
12210
|
+
margin-bottom: calc(var(--su4) * -1) !important;
|
|
12211
|
+
}
|
|
12212
|
+
.myn6 {
|
|
12213
|
+
margin-top: calc(var(--su6) * -1) !important;
|
|
12214
|
+
margin-bottom: calc(var(--su6) * -1) !important;
|
|
12215
|
+
}
|
|
12216
|
+
.myn8 {
|
|
12217
|
+
margin-top: calc(var(--su8) * -1) !important;
|
|
12218
|
+
margin-bottom: calc(var(--su8) * -1) !important;
|
|
12219
|
+
}
|
|
12220
|
+
.myn12 {
|
|
12221
|
+
margin-top: calc(var(--su12) * -1) !important;
|
|
12222
|
+
margin-bottom: calc(var(--su12) * -1) !important;
|
|
12223
|
+
}
|
|
12224
|
+
.myn16 {
|
|
12225
|
+
margin-top: calc(var(--su16) * -1) !important;
|
|
12226
|
+
margin-bottom: calc(var(--su16) * -1) !important;
|
|
12227
|
+
}
|
|
12228
|
+
.myn24 {
|
|
12229
|
+
margin-top: calc(var(--su24) * -1) !important;
|
|
12230
|
+
margin-bottom: calc(var(--su24) * -1) !important;
|
|
12231
|
+
}
|
|
12232
|
+
.myn32 {
|
|
12233
|
+
margin-top: calc(var(--su32) * -1) !important;
|
|
12234
|
+
margin-bottom: calc(var(--su32) * -1) !important;
|
|
12235
|
+
}
|
|
12236
|
+
.myn48 {
|
|
12237
|
+
margin-top: calc(var(--su48) * -1) !important;
|
|
12238
|
+
margin-bottom: calc(var(--su48) * -1) !important;
|
|
12239
|
+
}
|
|
12240
|
+
.myn64 {
|
|
12241
|
+
margin-top: calc(var(--su64) * -1) !important;
|
|
12242
|
+
margin-bottom: calc(var(--su64) * -1) !important;
|
|
12243
|
+
}
|
|
12244
|
+
.myn96 {
|
|
12245
|
+
margin-top: calc(var(--su96) * -1) !important;
|
|
12246
|
+
margin-bottom: calc(var(--su96) * -1) !important;
|
|
12247
|
+
}
|
|
12248
|
+
.myn128 {
|
|
12249
|
+
margin-top: calc(var(--su128) * -1) !important;
|
|
12250
|
+
margin-bottom: calc(var(--su128) * -1) !important;
|
|
12251
|
+
}
|
|
12096
12252
|
.p0 {
|
|
12097
12253
|
padding: 0 !important;
|
|
12098
12254
|
}
|
|
@@ -12155,6 +12311,9 @@ body {
|
|
|
12155
12311
|
.p128 {
|
|
12156
12312
|
padding: var(--su128) !important;
|
|
12157
12313
|
}
|
|
12314
|
+
.p0 {
|
|
12315
|
+
padding: 0 !important;
|
|
12316
|
+
}
|
|
12158
12317
|
.pt1 {
|
|
12159
12318
|
padding-top: var(--su1) !important;
|
|
12160
12319
|
}
|
|
@@ -12194,6 +12353,9 @@ body {
|
|
|
12194
12353
|
.pt128 {
|
|
12195
12354
|
padding-top: var(--su128) !important;
|
|
12196
12355
|
}
|
|
12356
|
+
.pt0 {
|
|
12357
|
+
padding-top: 0 !important;
|
|
12358
|
+
}
|
|
12197
12359
|
.pr1 {
|
|
12198
12360
|
padding-right: var(--su1) !important;
|
|
12199
12361
|
}
|
|
@@ -12272,6 +12434,9 @@ body {
|
|
|
12272
12434
|
.pb128 {
|
|
12273
12435
|
padding-bottom: var(--su128) !important;
|
|
12274
12436
|
}
|
|
12437
|
+
.pr0 {
|
|
12438
|
+
padding-right: 0 !important;
|
|
12439
|
+
}
|
|
12275
12440
|
.pl1 {
|
|
12276
12441
|
padding-left: var(--su1) !important;
|
|
12277
12442
|
}
|
|
@@ -12311,6 +12476,9 @@ body {
|
|
|
12311
12476
|
.pl128 {
|
|
12312
12477
|
padding-left: var(--su128) !important;
|
|
12313
12478
|
}
|
|
12479
|
+
.pl0 {
|
|
12480
|
+
padding-left: 0 !important;
|
|
12481
|
+
}
|
|
12314
12482
|
.px1 {
|
|
12315
12483
|
padding-left: var(--su1) !important;
|
|
12316
12484
|
padding-right: var(--su1) !important;
|
|
@@ -14797,6 +14965,9 @@ ol {
|
|
|
14797
14965
|
.lg\:m128 {
|
|
14798
14966
|
margin: var(--su128) !important;
|
|
14799
14967
|
}
|
|
14968
|
+
.lg\:m0 {
|
|
14969
|
+
margin: 0 !important;
|
|
14970
|
+
}
|
|
14800
14971
|
.lg\:mn1 {
|
|
14801
14972
|
margin: calc(var(--su1) * -1) !important;
|
|
14802
14973
|
}
|
|
@@ -14875,6 +15046,9 @@ ol {
|
|
|
14875
15046
|
.lg\:mt128 {
|
|
14876
15047
|
margin-top: var(--su128) !important;
|
|
14877
15048
|
}
|
|
15049
|
+
.lg\:mt0 {
|
|
15050
|
+
margin-top: 0 !important;
|
|
15051
|
+
}
|
|
14878
15052
|
.lg\:mtn1 {
|
|
14879
15053
|
margin-top: calc(var(--su1) * -1) !important;
|
|
14880
15054
|
}
|
|
@@ -14953,6 +15127,9 @@ ol {
|
|
|
14953
15127
|
.lg\:mr128 {
|
|
14954
15128
|
margin-right: var(--su128) !important;
|
|
14955
15129
|
}
|
|
15130
|
+
.lg\:mr0 {
|
|
15131
|
+
margin-right: 0 !important;
|
|
15132
|
+
}
|
|
14956
15133
|
.lg\:mrn1 {
|
|
14957
15134
|
margin-right: calc(var(--su1) * -1) !important;
|
|
14958
15135
|
}
|
|
@@ -15031,6 +15208,9 @@ ol {
|
|
|
15031
15208
|
.lg\:mb128 {
|
|
15032
15209
|
margin-bottom: var(--su128) !important;
|
|
15033
15210
|
}
|
|
15211
|
+
.lg\:mb0 {
|
|
15212
|
+
margin-bottom: 0 !important;
|
|
15213
|
+
}
|
|
15034
15214
|
.lg\:mbn1 {
|
|
15035
15215
|
margin-bottom: calc(var(--su1) * -1) !important;
|
|
15036
15216
|
}
|
|
@@ -15109,6 +15289,9 @@ ol {
|
|
|
15109
15289
|
.lg\:ml128 {
|
|
15110
15290
|
margin-left: var(--su128) !important;
|
|
15111
15291
|
}
|
|
15292
|
+
.lg\:ml0 {
|
|
15293
|
+
margin-left: 0 !important;
|
|
15294
|
+
}
|
|
15112
15295
|
.lg\:mln1 {
|
|
15113
15296
|
margin-left: calc(var(--su1) * -1) !important;
|
|
15114
15297
|
}
|
|
@@ -15187,6 +15370,9 @@ ol {
|
|
|
15187
15370
|
.lg\:p128 {
|
|
15188
15371
|
padding: var(--su128) !important;
|
|
15189
15372
|
}
|
|
15373
|
+
.lg\:p0 {
|
|
15374
|
+
padding: 0 !important;
|
|
15375
|
+
}
|
|
15190
15376
|
.lg\:pt1 {
|
|
15191
15377
|
padding-top: var(--su1) !important;
|
|
15192
15378
|
}
|
|
@@ -15226,6 +15412,9 @@ ol {
|
|
|
15226
15412
|
.lg\:pt128 {
|
|
15227
15413
|
padding-top: var(--su128) !important;
|
|
15228
15414
|
}
|
|
15415
|
+
.lg\:pt0 {
|
|
15416
|
+
padding-top: 0 !important;
|
|
15417
|
+
}
|
|
15229
15418
|
.lg\:pr1 {
|
|
15230
15419
|
padding-right: var(--su1) !important;
|
|
15231
15420
|
}
|
|
@@ -15304,6 +15493,9 @@ ol {
|
|
|
15304
15493
|
.lg\:pb128 {
|
|
15305
15494
|
padding-bottom: var(--su128) !important;
|
|
15306
15495
|
}
|
|
15496
|
+
.lg\:pr0 {
|
|
15497
|
+
padding-right: 0 !important;
|
|
15498
|
+
}
|
|
15307
15499
|
.lg\:pl1 {
|
|
15308
15500
|
padding-left: var(--su1) !important;
|
|
15309
15501
|
}
|
|
@@ -15343,6 +15535,9 @@ ol {
|
|
|
15343
15535
|
.lg\:pl128 {
|
|
15344
15536
|
padding-left: var(--su128) !important;
|
|
15345
15537
|
}
|
|
15538
|
+
.lg\:pl0 {
|
|
15539
|
+
padding-left: 0 !important;
|
|
15540
|
+
}
|
|
15346
15541
|
.lg\:t1 {
|
|
15347
15542
|
top: var(--su1) !important;
|
|
15348
15543
|
}
|
|
@@ -16340,6 +16535,9 @@ ol {
|
|
|
16340
16535
|
.md\:m128 {
|
|
16341
16536
|
margin: var(--su128) !important;
|
|
16342
16537
|
}
|
|
16538
|
+
.md\:m0 {
|
|
16539
|
+
margin: 0 !important;
|
|
16540
|
+
}
|
|
16343
16541
|
.md\:mn1 {
|
|
16344
16542
|
margin: calc(var(--su1) * -1) !important;
|
|
16345
16543
|
}
|
|
@@ -16418,6 +16616,9 @@ ol {
|
|
|
16418
16616
|
.md\:mt128 {
|
|
16419
16617
|
margin-top: var(--su128) !important;
|
|
16420
16618
|
}
|
|
16619
|
+
.md\:mt0 {
|
|
16620
|
+
margin-top: 0 !important;
|
|
16621
|
+
}
|
|
16421
16622
|
.md\:mtn1 {
|
|
16422
16623
|
margin-top: calc(var(--su1) * -1) !important;
|
|
16423
16624
|
}
|
|
@@ -16496,6 +16697,9 @@ ol {
|
|
|
16496
16697
|
.md\:mr128 {
|
|
16497
16698
|
margin-right: var(--su128) !important;
|
|
16498
16699
|
}
|
|
16700
|
+
.md\:mr0 {
|
|
16701
|
+
margin-right: 0 !important;
|
|
16702
|
+
}
|
|
16499
16703
|
.md\:mrn1 {
|
|
16500
16704
|
margin-right: calc(var(--su1) * -1) !important;
|
|
16501
16705
|
}
|
|
@@ -16574,6 +16778,9 @@ ol {
|
|
|
16574
16778
|
.md\:mb128 {
|
|
16575
16779
|
margin-bottom: var(--su128) !important;
|
|
16576
16780
|
}
|
|
16781
|
+
.md\:mb0 {
|
|
16782
|
+
margin-bottom: 0 !important;
|
|
16783
|
+
}
|
|
16577
16784
|
.md\:mbn1 {
|
|
16578
16785
|
margin-bottom: calc(var(--su1) * -1) !important;
|
|
16579
16786
|
}
|
|
@@ -16652,6 +16859,9 @@ ol {
|
|
|
16652
16859
|
.md\:ml128 {
|
|
16653
16860
|
margin-left: var(--su128) !important;
|
|
16654
16861
|
}
|
|
16862
|
+
.md\:ml0 {
|
|
16863
|
+
margin-left: 0 !important;
|
|
16864
|
+
}
|
|
16655
16865
|
.md\:mln1 {
|
|
16656
16866
|
margin-left: calc(var(--su1) * -1) !important;
|
|
16657
16867
|
}
|
|
@@ -16730,6 +16940,9 @@ ol {
|
|
|
16730
16940
|
.md\:p128 {
|
|
16731
16941
|
padding: var(--su128) !important;
|
|
16732
16942
|
}
|
|
16943
|
+
.md\:p0 {
|
|
16944
|
+
padding: 0 !important;
|
|
16945
|
+
}
|
|
16733
16946
|
.md\:pt1 {
|
|
16734
16947
|
padding-top: var(--su1) !important;
|
|
16735
16948
|
}
|
|
@@ -16769,6 +16982,9 @@ ol {
|
|
|
16769
16982
|
.md\:pt128 {
|
|
16770
16983
|
padding-top: var(--su128) !important;
|
|
16771
16984
|
}
|
|
16985
|
+
.md\:pt0 {
|
|
16986
|
+
padding-top: 0 !important;
|
|
16987
|
+
}
|
|
16772
16988
|
.md\:pr1 {
|
|
16773
16989
|
padding-right: var(--su1) !important;
|
|
16774
16990
|
}
|
|
@@ -16847,6 +17063,9 @@ ol {
|
|
|
16847
17063
|
.md\:pb128 {
|
|
16848
17064
|
padding-bottom: var(--su128) !important;
|
|
16849
17065
|
}
|
|
17066
|
+
.md\:pr0 {
|
|
17067
|
+
padding-right: 0 !important;
|
|
17068
|
+
}
|
|
16850
17069
|
.md\:pl1 {
|
|
16851
17070
|
padding-left: var(--su1) !important;
|
|
16852
17071
|
}
|
|
@@ -16886,6 +17105,9 @@ ol {
|
|
|
16886
17105
|
.md\:pl128 {
|
|
16887
17106
|
padding-left: var(--su128) !important;
|
|
16888
17107
|
}
|
|
17108
|
+
.md\:pl0 {
|
|
17109
|
+
padding-left: 0 !important;
|
|
17110
|
+
}
|
|
16889
17111
|
.md\:t1 {
|
|
16890
17112
|
top: var(--su1) !important;
|
|
16891
17113
|
}
|
|
@@ -17883,6 +18105,9 @@ ol {
|
|
|
17883
18105
|
.sm\:m128 {
|
|
17884
18106
|
margin: var(--su128) !important;
|
|
17885
18107
|
}
|
|
18108
|
+
.sm\:m0 {
|
|
18109
|
+
margin: 0 !important;
|
|
18110
|
+
}
|
|
17886
18111
|
.sm\:mn1 {
|
|
17887
18112
|
margin: calc(var(--su1) * -1) !important;
|
|
17888
18113
|
}
|
|
@@ -17961,6 +18186,9 @@ ol {
|
|
|
17961
18186
|
.sm\:mt128 {
|
|
17962
18187
|
margin-top: var(--su128) !important;
|
|
17963
18188
|
}
|
|
18189
|
+
.sm\:mt0 {
|
|
18190
|
+
margin-top: 0 !important;
|
|
18191
|
+
}
|
|
17964
18192
|
.sm\:mtn1 {
|
|
17965
18193
|
margin-top: calc(var(--su1) * -1) !important;
|
|
17966
18194
|
}
|
|
@@ -18039,6 +18267,9 @@ ol {
|
|
|
18039
18267
|
.sm\:mr128 {
|
|
18040
18268
|
margin-right: var(--su128) !important;
|
|
18041
18269
|
}
|
|
18270
|
+
.sm\:mr0 {
|
|
18271
|
+
margin-right: 0 !important;
|
|
18272
|
+
}
|
|
18042
18273
|
.sm\:mrn1 {
|
|
18043
18274
|
margin-right: calc(var(--su1) * -1) !important;
|
|
18044
18275
|
}
|
|
@@ -18117,6 +18348,9 @@ ol {
|
|
|
18117
18348
|
.sm\:mb128 {
|
|
18118
18349
|
margin-bottom: var(--su128) !important;
|
|
18119
18350
|
}
|
|
18351
|
+
.sm\:mb0 {
|
|
18352
|
+
margin-bottom: 0 !important;
|
|
18353
|
+
}
|
|
18120
18354
|
.sm\:mbn1 {
|
|
18121
18355
|
margin-bottom: calc(var(--su1) * -1) !important;
|
|
18122
18356
|
}
|
|
@@ -18195,6 +18429,9 @@ ol {
|
|
|
18195
18429
|
.sm\:ml128 {
|
|
18196
18430
|
margin-left: var(--su128) !important;
|
|
18197
18431
|
}
|
|
18432
|
+
.sm\:ml0 {
|
|
18433
|
+
margin-left: 0 !important;
|
|
18434
|
+
}
|
|
18198
18435
|
.sm\:mln1 {
|
|
18199
18436
|
margin-left: calc(var(--su1) * -1) !important;
|
|
18200
18437
|
}
|
|
@@ -18273,6 +18510,9 @@ ol {
|
|
|
18273
18510
|
.sm\:p128 {
|
|
18274
18511
|
padding: var(--su128) !important;
|
|
18275
18512
|
}
|
|
18513
|
+
.sm\:p0 {
|
|
18514
|
+
padding: 0 !important;
|
|
18515
|
+
}
|
|
18276
18516
|
.sm\:pt1 {
|
|
18277
18517
|
padding-top: var(--su1) !important;
|
|
18278
18518
|
}
|
|
@@ -18312,6 +18552,9 @@ ol {
|
|
|
18312
18552
|
.sm\:pt128 {
|
|
18313
18553
|
padding-top: var(--su128) !important;
|
|
18314
18554
|
}
|
|
18555
|
+
.sm\:pt0 {
|
|
18556
|
+
padding-top: 0 !important;
|
|
18557
|
+
}
|
|
18315
18558
|
.sm\:pr1 {
|
|
18316
18559
|
padding-right: var(--su1) !important;
|
|
18317
18560
|
}
|
|
@@ -18390,6 +18633,9 @@ ol {
|
|
|
18390
18633
|
.sm\:pb128 {
|
|
18391
18634
|
padding-bottom: var(--su128) !important;
|
|
18392
18635
|
}
|
|
18636
|
+
.sm\:pr0 {
|
|
18637
|
+
padding-right: 0 !important;
|
|
18638
|
+
}
|
|
18393
18639
|
.sm\:pl1 {
|
|
18394
18640
|
padding-left: var(--su1) !important;
|
|
18395
18641
|
}
|
|
@@ -18429,6 +18675,9 @@ ol {
|
|
|
18429
18675
|
.sm\:pl128 {
|
|
18430
18676
|
padding-left: var(--su128) !important;
|
|
18431
18677
|
}
|
|
18678
|
+
.sm\:pl0 {
|
|
18679
|
+
padding-left: 0 !important;
|
|
18680
|
+
}
|
|
18432
18681
|
.sm\:t1 {
|
|
18433
18682
|
top: var(--su1) !important;
|
|
18434
18683
|
}
|