@recursyve/nice-data-filter-kit 12.1.29 → 13.0.2
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/_index.scss +1 -7
- package/{esm2015/lib/api/dto/saved-reports.dto.js → esm2020/lib/api/dto/saved-reports.dto.mjs} +0 -0
- package/esm2020/lib/api/filter.api.mjs +51 -0
- package/{esm2015/lib/api/models/saved-reports.model.js → esm2020/lib/api/models/saved-reports.model.mjs} +0 -0
- package/{esm2015/lib/api/public-api.js → esm2020/lib/api/public-api.mjs} +0 -0
- package/esm2020/lib/api/saved-report.api.mjs +48 -0
- package/esm2020/lib/components/base-list/base-list.component.mjs +288 -0
- package/{esm2015/lib/components/base-list/base-list.constant.js → esm2020/lib/components/base-list/base-list.constant.mjs} +0 -0
- package/esm2020/lib/components/base-list/base-list.module.mjs +171 -0
- package/{esm2015/lib/components/base-list/directives/base-list-buttons.directive.js → esm2020/lib/components/base-list/directives/base-list-buttons.directive.mjs} +3 -3
- package/{esm2015/lib/components/base-list/directives/base-list-cards.directive.js → esm2020/lib/components/base-list/directives/base-list-cards.directive.mjs} +3 -3
- package/{esm2015/lib/components/base-list/directives/base-list-custom-content.directive.js → esm2020/lib/components/base-list/directives/base-list-custom-content.directive.mjs} +3 -3
- package/{esm2015/lib/components/base-list/directives/base-list-directives.module.js → esm2020/lib/components/base-list/directives/base-list-directives.module.mjs} +4 -4
- package/{esm2015/lib/components/base-list/directives/base-list-filters.directive.js → esm2020/lib/components/base-list/directives/base-list-filters.directive.mjs} +3 -3
- package/{esm2015/lib/components/base-list/directives/base-list-table.directive.js → esm2020/lib/components/base-list/directives/base-list-table.directive.mjs} +3 -3
- package/{esm2015/lib/components/base-list/directives/base-list-title.directive.js → esm2020/lib/components/base-list/directives/base-list-title.directive.mjs} +3 -3
- package/{esm2015/lib/components/base-list/models/columns.model.js → esm2020/lib/components/base-list/models/columns.model.mjs} +0 -0
- package/{esm2015/lib/components/base-list/models/export.model.js → esm2020/lib/components/base-list/models/export.model.mjs} +0 -0
- package/esm2020/lib/components/base-list/models/layout.model.mjs +149 -0
- package/esm2020/lib/components/base-list/providers/base-filter.service.mjs +34 -0
- package/{esm2015/lib/components/base-list/providers/base-list-saved-report.service.js → esm2020/lib/components/base-list/providers/base-list-saved-report.service.mjs} +3 -3
- package/{esm2015/lib/components/base-list/public-api.js → esm2020/lib/components/base-list/public-api.mjs} +0 -0
- package/esm2020/lib/components/base-list/store/base-list.query.mjs +35 -0
- package/esm2020/lib/components/base-list/store/base-list.service.mjs +341 -0
- package/esm2020/lib/components/base-list/store/base-list.store.mjs +81 -0
- package/{esm2015/lib/components/multi-state-list/models/list-states.model.js → esm2020/lib/components/multi-state-list/models/list-states.model.mjs} +0 -0
- package/esm2020/lib/components/multi-state-list/multi-state-list.component.mjs +71 -0
- package/{esm2015/lib/components/multi-state-list/multi-state-list.constant.js → esm2020/lib/components/multi-state-list/multi-state-list.constant.mjs} +0 -0
- package/{esm2015/lib/components/multi-state-list/multi-state-list.module.js → esm2020/lib/components/multi-state-list/multi-state-list.module.mjs} +6 -14
- package/{esm2015/lib/components/multi-state-list/providers/multi-state-filter.service.js → esm2020/lib/components/multi-state-list/providers/multi-state-filter.service.mjs} +0 -0
- package/{esm2015/lib/components/multi-state-list/public-api.js → esm2020/lib/components/multi-state-list/public-api.mjs} +0 -0
- package/{esm2015/lib/components/multi-state-list/store/multi-state-list.query.js → esm2020/lib/components/multi-state-list/store/multi-state-list.query.mjs} +3 -3
- package/{esm2015/lib/components/multi-state-list/store/multi-state-list.service.js → esm2020/lib/components/multi-state-list/store/multi-state-list.service.mjs} +5 -6
- package/esm2020/lib/components/multi-state-list/store/multi-state-list.store.mjs +24 -0
- package/{esm2015/lib/components/public-api.js → esm2020/lib/components/public-api.mjs} +0 -0
- package/esm2020/lib/components/query-builder/filter-selection/filter-selection.component.mjs +41 -0
- package/{esm2015/lib/components/query-builder/pipes/filter-group-icon.pipe.js → esm2020/lib/components/query-builder/pipes/filter-group-icon.pipe.mjs} +3 -3
- package/{esm2015/lib/components/query-builder/providers/filter-group.service.js → esm2020/lib/components/query-builder/providers/filter-group.service.mjs} +0 -0
- package/{esm2015/lib/components/query-builder/public-api.js → esm2020/lib/components/query-builder/public-api.mjs} +0 -0
- package/{esm2015/lib/components/query-builder/query-builder-trigger.directive.js → esm2020/lib/components/query-builder/query-builder-trigger.directive.mjs} +3 -3
- package/esm2020/lib/components/query-builder/query-builder.component.mjs +93 -0
- package/{esm2015/lib/components/query-builder/query-builder.form.js → esm2020/lib/components/query-builder/query-builder.form.mjs} +0 -0
- package/esm2020/lib/components/query-builder/query-builder.module.mjs +116 -0
- package/esm2020/lib/components/query-builder/rule/components/date/date-filter.component.mjs +29 -0
- package/{esm2015/lib/components/query-builder/rule/components/filter.component.js → esm2020/lib/components/query-builder/rule/components/filter.component.mjs} +3 -3
- package/esm2020/lib/components/query-builder/rule/components/number/number-filter.component.mjs +28 -0
- package/esm2020/lib/components/query-builder/rule/components/radio/radio-filter.component.mjs +30 -0
- package/esm2020/lib/components/query-builder/rule/components/select/select-filter.component.mjs +83 -0
- package/esm2020/lib/components/query-builder/rule/components/text/text-filter.component.mjs +31 -0
- package/esm2020/lib/components/query-builder/rule/rule.component.mjs +78 -0
- package/{esm2015/lib/components/query-builder/utils/qb-filter.utils.js → esm2020/lib/components/query-builder/utils/qb-filter.utils.mjs} +23 -9
- package/{esm2015/lib/models/filter.model.js → esm2020/lib/models/filter.model.mjs} +0 -0
- package/{esm2015/lib/models/public-api.js → esm2020/lib/models/public-api.mjs} +0 -0
- package/{esm2015/lib/models/query.model.js → esm2020/lib/models/query.model.mjs} +0 -0
- package/{esm2015/lib/utils/date.adapter.js → esm2020/lib/utils/date.adapter.mjs} +3 -3
- package/esm2020/lib/utils/filter.utils.mjs +40 -0
- package/{esm2015/lib/utils/public-api.js → esm2020/lib/utils/public-api.mjs} +0 -0
- package/{esm2015/lib/utils/query-params.utils.js → esm2020/lib/utils/query-params.utils.mjs} +0 -0
- package/{esm2015/lib/utils/string.utils.js → esm2020/lib/utils/string.utils.mjs} +0 -0
- package/{esm2015/public-api.js → esm2020/public-api.mjs} +0 -0
- package/{esm2015/recursyve-nice-data-filter-kit.js → esm2020/recursyve-nice-data-filter-kit.mjs} +0 -0
- package/fesm2015/recursyve-nice-data-filter-kit.mjs +2448 -0
- package/fesm2015/recursyve-nice-data-filter-kit.mjs.map +1 -0
- package/fesm2020/recursyve-nice-data-filter-kit.mjs +2446 -0
- package/fesm2020/recursyve-nice-data-filter-kit.mjs.map +1 -0
- package/lib/components/base-list/base-list.module.d.ts +15 -16
- package/lib/components/base-list/models/layout.model.d.ts +0 -4
- package/lib/components/multi-state-list/multi-state-list.module.d.ts +15 -16
- package/lib/components/query-builder/query-builder.module.d.ts +10 -11
- package/package.json +30 -16
- package/src/lib/components/base-list/base-list.theme.scss +5 -5
- package/src/lib/components/query-builder/filter-selection/filter-selection.theme.scss +42 -0
- package/src/lib/components/query-builder/query-builder.theme.scss +2 -0
- package/src/lib/components/query-builder/rule/rule.theme.scss +83 -1
- package/src/lib/nice-data-filter.theme.scss +7 -0
- package/bundles/recursyve-nice-data-filter-kit.umd.js +0 -3189
- package/bundles/recursyve-nice-data-filter-kit.umd.js.map +0 -1
- package/esm2015/lib/api/filter.api.js +0 -52
- package/esm2015/lib/api/saved-report.api.js +0 -49
- package/esm2015/lib/components/base-list/base-list.component.js +0 -297
- package/esm2015/lib/components/base-list/base-list.module.js +0 -180
- package/esm2015/lib/components/base-list/models/layout.model.js +0 -164
- package/esm2015/lib/components/base-list/providers/base-filter.service.js +0 -40
- package/esm2015/lib/components/base-list/store/base-list.query.js +0 -35
- package/esm2015/lib/components/base-list/store/base-list.service.js +0 -330
- package/esm2015/lib/components/base-list/store/base-list.store.js +0 -78
- package/esm2015/lib/components/multi-state-list/multi-state-list.component.js +0 -75
- package/esm2015/lib/components/multi-state-list/store/multi-state-list.store.js +0 -22
- package/esm2015/lib/components/query-builder/filter-selection/filter-selection.component.js +0 -48
- package/esm2015/lib/components/query-builder/query-builder.component.js +0 -100
- package/esm2015/lib/components/query-builder/query-builder.module.js +0 -120
- package/esm2015/lib/components/query-builder/rule/components/date/date-filter.component.js +0 -35
- package/esm2015/lib/components/query-builder/rule/components/number/number-filter.component.js +0 -34
- package/esm2015/lib/components/query-builder/rule/components/radio/radio-filter.component.js +0 -36
- package/esm2015/lib/components/query-builder/rule/components/select/select-filter.component.js +0 -94
- package/esm2015/lib/components/query-builder/rule/components/text/text-filter.component.js +0 -37
- package/esm2015/lib/components/query-builder/rule/rule.component.js +0 -86
- package/esm2015/lib/utils/filter.utils.js +0 -41
- package/fesm2015/recursyve-nice-data-filter-kit.js +0 -2519
- package/fesm2015/recursyve-nice-data-filter-kit.js.map +0 -1
|
@@ -15,18 +15,17 @@ import * as i13 from "@ngx-translate/core";
|
|
|
15
15
|
import * as i14 from "@angular/cdk/overlay";
|
|
16
16
|
import * as i15 from "@angular/material/card";
|
|
17
17
|
import * as i16 from "@angular/material/list";
|
|
18
|
-
import * as i17 from "@angular/
|
|
19
|
-
import * as i18 from "@angular/material/
|
|
20
|
-
import * as i19 from "@angular/material/
|
|
21
|
-
import * as i20 from "@angular/material/
|
|
22
|
-
import * as i21 from "@angular/material/
|
|
23
|
-
import * as i22 from "@angular/material/
|
|
24
|
-
import * as i23 from "@angular/material/
|
|
25
|
-
import * as i24 from "@
|
|
26
|
-
import * as i25 from "
|
|
27
|
-
import * as i26 from "ngx-mask";
|
|
18
|
+
import * as i17 from "@angular/material/button";
|
|
19
|
+
import * as i18 from "@angular/material/core";
|
|
20
|
+
import * as i19 from "@angular/material/icon";
|
|
21
|
+
import * as i20 from "@angular/material/select";
|
|
22
|
+
import * as i21 from "@angular/material/input";
|
|
23
|
+
import * as i22 from "@angular/material/datepicker";
|
|
24
|
+
import * as i23 from "@angular/material/radio";
|
|
25
|
+
import * as i24 from "@recursyve/nice-ui-kit.v2";
|
|
26
|
+
import * as i25 from "ngx-mask";
|
|
28
27
|
export declare class QueryBuilderModule {
|
|
29
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<QueryBuilderModule, never>;
|
|
30
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<QueryBuilderModule, [typeof i1.QueryBuilderComponent, typeof i2.QueryBuilderTriggerDirective, typeof i3.FilterSelectionComponent, typeof i4.RuleComponent, typeof i5.SelectFilterComponent, typeof i6.TextFilterComponent, typeof i7.NumberFilterComponent, typeof i8.RadioFilterComponent, typeof i9.DateFilterComponent, typeof i10.FilterGroupIconPipe], [typeof i11.CommonModule, typeof i12.FormsModule, typeof i13.TranslateModule, typeof i14.OverlayModule, typeof i15.MatCardModule, typeof i16.MatListModule, typeof i17.
|
|
29
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<QueryBuilderModule, [typeof i1.QueryBuilderComponent, typeof i2.QueryBuilderTriggerDirective, typeof i3.FilterSelectionComponent, typeof i4.RuleComponent, typeof i5.SelectFilterComponent, typeof i6.TextFilterComponent, typeof i7.NumberFilterComponent, typeof i8.RadioFilterComponent, typeof i9.DateFilterComponent, typeof i10.FilterGroupIconPipe], [typeof i11.CommonModule, typeof i12.FormsModule, typeof i13.TranslateModule, typeof i14.OverlayModule, typeof i15.MatCardModule, typeof i16.MatListModule, typeof i17.MatButtonModule, typeof i18.MatRippleModule, typeof i19.MatIconModule, typeof i20.MatSelectModule, typeof i21.MatInputModule, typeof i22.MatDatepickerModule, typeof i23.MatRadioModule, typeof i24.NiceLoadingSpinnerModule, typeof i24.NiceTypeaheadModule, typeof i12.ReactiveFormsModule, typeof i25.NgxMaskModule], [typeof i1.QueryBuilderComponent, typeof i2.QueryBuilderTriggerDirective]>;
|
|
31
30
|
static ɵinj: i0.ɵɵInjectorDeclaration<QueryBuilderModule>;
|
|
32
31
|
}
|
package/package.json
CHANGED
|
@@ -1,26 +1,40 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@recursyve/nice-data-filter-kit",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "13.0.2",
|
|
4
|
+
"exports": {
|
|
5
|
+
".": {
|
|
6
|
+
"sass": "./_index.scss",
|
|
7
|
+
"types": "./recursyve-nice-data-filter-kit.d.ts",
|
|
8
|
+
"esm2020": "./esm2020/recursyve-nice-data-filter-kit.mjs",
|
|
9
|
+
"es2020": "./fesm2020/recursyve-nice-data-filter-kit.mjs",
|
|
10
|
+
"es2015": "./fesm2015/recursyve-nice-data-filter-kit.mjs",
|
|
11
|
+
"node": "./fesm2015/recursyve-nice-data-filter-kit.mjs",
|
|
12
|
+
"default": "./fesm2020/recursyve-nice-data-filter-kit.mjs"
|
|
13
|
+
},
|
|
14
|
+
"./package.json": {
|
|
15
|
+
"default": "./package.json"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
4
18
|
"peerDependencies": {
|
|
5
|
-
"@angular/cdk": "~
|
|
6
|
-
"@angular/common": "~
|
|
7
|
-
"@angular/core": "~
|
|
8
|
-
"@angular/flex-layout": "^
|
|
9
|
-
"@angular/forms": "~
|
|
10
|
-
"@angular/material": "~
|
|
11
|
-
"@datorama/akita": "^
|
|
12
|
-
"@ngx-translate/core": "^
|
|
13
|
-
"@recursyve/nice-ui-kit.v2": "^
|
|
14
|
-
"@recursyve/ngx-form-generator": "^
|
|
19
|
+
"@angular/cdk": "~13.0.0",
|
|
20
|
+
"@angular/common": "~13.0.0",
|
|
21
|
+
"@angular/core": "~13.0.0",
|
|
22
|
+
"@angular/flex-layout": "^13.0.0-beta.36",
|
|
23
|
+
"@angular/forms": "~13.0.0",
|
|
24
|
+
"@angular/material": "~13.0.0",
|
|
25
|
+
"@datorama/akita": "^7.0.0",
|
|
26
|
+
"@ngx-translate/core": "^14.0.0",
|
|
27
|
+
"@recursyve/nice-ui-kit.v2": "^13.0.0-beta.42",
|
|
28
|
+
"@recursyve/ngx-form-generator": "^13.0.0-beta.19"
|
|
15
29
|
},
|
|
16
30
|
"dependencies": {
|
|
17
31
|
"tslib": "^2.0.0"
|
|
18
32
|
},
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"fesm2015": "fesm2015/recursyve-nice-data-filter-kit.
|
|
33
|
+
"module": "fesm2015/recursyve-nice-data-filter-kit.mjs",
|
|
34
|
+
"es2020": "fesm2020/recursyve-nice-data-filter-kit.mjs",
|
|
35
|
+
"esm2020": "esm2020/recursyve-nice-data-filter-kit.mjs",
|
|
36
|
+
"fesm2020": "fesm2020/recursyve-nice-data-filter-kit.mjs",
|
|
37
|
+
"fesm2015": "fesm2015/recursyve-nice-data-filter-kit.mjs",
|
|
24
38
|
"typings": "recursyve-nice-data-filter-kit.d.ts",
|
|
25
39
|
"sideEffects": false
|
|
26
40
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
@use '
|
|
2
|
-
@
|
|
1
|
+
@use '@angular/material' as mat;
|
|
2
|
+
@use "@recursyve/nice-ui-kit.v2" as nice;
|
|
3
3
|
|
|
4
4
|
@mixin nice-base-list-theme($theme) {
|
|
5
5
|
$background: map-get($theme, background);
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
overflow: hidden;
|
|
23
23
|
@include mat.elevation(3, #000, 0.3);
|
|
24
24
|
|
|
25
|
-
@include media-breakpoint("xs") {
|
|
25
|
+
@include nice.media-breakpoint("xs") {
|
|
26
26
|
width: 100%;
|
|
27
27
|
}
|
|
28
28
|
|
|
@@ -69,12 +69,12 @@
|
|
|
69
69
|
.page-layout.carded.fullwidth.list {
|
|
70
70
|
padding-bottom: 32px;
|
|
71
71
|
|
|
72
|
-
@include media-breakpoint("lt-md") {
|
|
72
|
+
@include nice.media-breakpoint("lt-md") {
|
|
73
73
|
padding-bottom: 64px;
|
|
74
74
|
}
|
|
75
75
|
|
|
76
76
|
> .center {
|
|
77
|
-
@include media-breakpoint("lt-md") {
|
|
77
|
+
@include nice.media-breakpoint("lt-md") {
|
|
78
78
|
padding: 0 !important;
|
|
79
79
|
}
|
|
80
80
|
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
@mixin filter-selection-theme() {
|
|
2
|
+
nice-filter-selection {
|
|
3
|
+
.filter-selection-container {
|
|
4
|
+
min-width: 150px;
|
|
5
|
+
min-height: 150px;
|
|
6
|
+
max-width: 600px;
|
|
7
|
+
padding: 8px;
|
|
8
|
+
|
|
9
|
+
.mat-list {
|
|
10
|
+
&.double-groups {
|
|
11
|
+
max-width: 50%;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
&:not(.double-groups) {
|
|
15
|
+
max-width: 100%;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.mat-list-item {
|
|
21
|
+
height: auto !important;
|
|
22
|
+
min-height: 32px !important;
|
|
23
|
+
padding: 16px;
|
|
24
|
+
|
|
25
|
+
strong {
|
|
26
|
+
font-weight: 700 !important;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&.filter {
|
|
30
|
+
padding: 8px 24px;
|
|
31
|
+
cursor: pointer;
|
|
32
|
+
user-select: none;
|
|
33
|
+
|
|
34
|
+
font-size: 14px !important;
|
|
35
|
+
|
|
36
|
+
@screen md {
|
|
37
|
+
padding: 8px 48px;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@use '
|
|
1
|
+
@use '@angular/material' as mat;
|
|
2
2
|
|
|
3
3
|
@mixin rule-theme($theme) {
|
|
4
4
|
$isDark: map-get($theme, is-dark);
|
|
@@ -6,6 +6,88 @@
|
|
|
6
6
|
$background: map-get($theme, background);
|
|
7
7
|
$foreground: map-get($theme, foreground);
|
|
8
8
|
|
|
9
|
+
nice-rule {
|
|
10
|
+
background: transparent;
|
|
11
|
+
|
|
12
|
+
.select-filter {
|
|
13
|
+
@apply flex flex-full;
|
|
14
|
+
|
|
15
|
+
height: 36px;
|
|
16
|
+
max-width: 150px;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.config-name {
|
|
20
|
+
@apply flex flex-full flex-grow-0 truncate;
|
|
21
|
+
|
|
22
|
+
max-width: 90px;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.config-name-icon {
|
|
26
|
+
@apply flex flex-full;
|
|
27
|
+
|
|
28
|
+
max-width: 24px;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.rule-operator {
|
|
32
|
+
@apply flex flex-full;
|
|
33
|
+
|
|
34
|
+
max-width: 100%;
|
|
35
|
+
|
|
36
|
+
@screen md {
|
|
37
|
+
max-width: 150px;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.aligned-button,
|
|
42
|
+
.select-filter {
|
|
43
|
+
margin-bottom: 1.25em;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.aligned-text {
|
|
47
|
+
margin-bottom: 2em;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.filter-select {
|
|
51
|
+
margin-top: -14px;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.mat-form-field-infix {
|
|
55
|
+
border: none;
|
|
56
|
+
max-width: 150px;
|
|
57
|
+
|
|
58
|
+
@screen md {
|
|
59
|
+
max-width: none;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.rule-form-field {
|
|
64
|
+
flex: 0 0 188px;
|
|
65
|
+
max-width: 188px;
|
|
66
|
+
min-width: 188px;
|
|
67
|
+
width: 90%;
|
|
68
|
+
|
|
69
|
+
@screen md {
|
|
70
|
+
width: auto;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.rule-container {
|
|
75
|
+
padding: 0;
|
|
76
|
+
max-width: 100%;
|
|
77
|
+
|
|
78
|
+
&.is-single-input {
|
|
79
|
+
@screen md {
|
|
80
|
+
max-width: 50%;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
@screen md {
|
|
85
|
+
padding-left: 12px;
|
|
86
|
+
padding-right: 12px;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
9
91
|
.or-button {
|
|
10
92
|
background: map-get($background, card) !important;
|
|
11
93
|
color: map-get($foreground, text) !important;
|