@sparkle-learning/core 0.0.45 → 0.0.48

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/dist/cjs/header-mobile-collapse_61.cjs.entry.js +11 -111
  2. package/dist/cjs/{icons-c61db785.js → icons-fda820af.js} +0 -0
  3. package/dist/cjs/sparkle-code.cjs.entry.js +1 -1
  4. package/dist/cjs/sparkle-menu-collapsible.cjs.entry.js +1 -1
  5. package/dist/esm/header-mobile-collapse_61.entry.js +13 -113
  6. package/dist/esm/{icons-9b62a1ec.js → icons-1c794c74.js} +0 -0
  7. package/dist/esm/sparkle-code.entry.js +1 -1
  8. package/dist/esm/sparkle-menu-collapsible.entry.js +1 -1
  9. package/dist/node_modules/@sparkle-learning/components/dist/collection/components/button/button.css +49 -0
  10. package/dist/node_modules/@sparkle-learning/components/dist/collection/components/cards/card/card.css +208 -0
  11. package/dist/node_modules/@sparkle-learning/components/dist/collection/components/cards/cards.css +31 -0
  12. package/dist/node_modules/@sparkle-learning/components/dist/collection/components/code/code.css +245 -0
  13. package/dist/node_modules/@sparkle-learning/components/dist/collection/components/dropdown/dropdown.css +115 -0
  14. package/dist/node_modules/@sparkle-learning/components/dist/collection/components/header/header-mobile-collapse/header-mobile-collapse.css +255 -0
  15. package/dist/node_modules/@sparkle-learning/components/dist/collection/components/header/header.css +232 -0
  16. package/dist/node_modules/@sparkle-learning/components/dist/collection/components/menu/collapsible/collapsible.css +3 -0
  17. package/dist/node_modules/@sparkle-learning/components/dist/collection/components/menu/menu-toggle/menu-toggle.css +25 -0
  18. package/dist/node_modules/@sparkle-learning/components/dist/collection/components/menu/menu.css +71 -0
  19. package/dist/node_modules/@sparkle-learning/components/dist/collection/components/nav/nav.css +194 -0
  20. package/dist/node_modules/@sparkle-learning/components/dist/collection/components/notfound-page/notfound-page.css +4 -0
  21. package/dist/node_modules/@sparkle-learning/components/dist/collection/components/overlay/overlay.css +67 -0
  22. package/dist/node_modules/@sparkle-learning/components/dist/collection/components/page-footer/page-footer.css +18 -0
  23. package/dist/node_modules/@sparkle-learning/components/dist/collection/components/pagination/pagination.css +93 -0
  24. package/dist/node_modules/@sparkle-learning/components/dist/collection/components/select/select.css +52 -0
  25. package/dist/node_modules/@sparkle-learning/components/dist/collection/components/sidebar/sidebar.css +98 -0
  26. package/dist/node_modules/@sparkle-learning/components/dist/collection/components/sparkle-lower-content-nav/sparkle-lower-content-nav.css +8 -0
  27. package/dist/node_modules/@sparkle-learning/components/dist/collection/components/table-of-contents/table-of-contents.css +37 -0
  28. package/dist/node_modules/@sparkle-learning/components/dist/collection/components/tabs/tabs.css +64 -0
  29. package/dist/sparkle-core/{p-0fa3fd63.entry.js → p-11a6c175.entry.js} +1 -1
  30. package/dist/sparkle-core/{p-421d4a6e.entry.js → p-31be4dc4.entry.js} +26 -30
  31. package/dist/sparkle-core/{p-a102341e.entry.js → p-957715c5.entry.js} +1 -1
  32. package/dist/sparkle-core/{p-e8073714.js → p-cabe9139.js} +0 -0
  33. package/dist/sparkle-core/sparkle-core.esm.js +1 -1
  34. package/package.json +2 -2
@@ -0,0 +1,232 @@
1
+ sparkle-header {
2
+ background-color: var(--background);
3
+ box-shadow: 0px 1px 3px rgba(2, 8, 20, 0.06), 0px 1px 2px rgba(2, 8, 20, 0.04);
4
+ color: var(--text-color--light);
5
+ display: block;
6
+ font-size: 14px;
7
+ font-weight: 500;
8
+ line-height: 1;
9
+ position: fixed;
10
+ top: 0;
11
+ left: 0;
12
+ transform: translateY(0);
13
+ transition: transform 200ms ease;
14
+ user-select: none;
15
+ width: 100%;
16
+ white-space: nowrap;
17
+ z-index: 2;
18
+ }
19
+
20
+ @media (min-width: 768px) {
21
+ .Layout:not(.is-menu-toggled) sparkle-header.hidden {
22
+ transform: translateY(-100%);
23
+ }
24
+ }
25
+
26
+ @media (max-width: 768px) {
27
+ .Layout.is-menu-toggled sparkle-header.hidden {
28
+ transform: translateY(-100%);
29
+ }
30
+ }
31
+
32
+ sparkle-header header {
33
+ align-items: center;
34
+ display: flex;
35
+ height: var(--header-height);
36
+ padding: 0 1.4rem 0 0.8rem;
37
+ }
38
+
39
+ sparkle-header a {
40
+ color: inherit;
41
+ font-weight: 500;
42
+ padding: 10px 0;
43
+ }
44
+
45
+ sparkle-header ion-icon {
46
+ font-size: 16px;
47
+ color: #b2becd;
48
+ }
49
+
50
+ sparkle-header .link-active {
51
+ color: var(--ion-color-sparkle);
52
+ }
53
+
54
+ @media (hover: hover) {
55
+ sparkle-header a:not(.link-active):hover {
56
+ color: var(--text-color);
57
+ }
58
+ }
59
+
60
+ sparkle-header sparkle-menu-toggle {
61
+ flex: none;
62
+ margin-right: 0.75em;
63
+ }
64
+
65
+ sparkle-header .HeaderLogo {
66
+ color: var(--text-color--dark);
67
+ font-family: var(--heading-font-family);
68
+ height: 25px;
69
+ margin-right: 2em;
70
+ display: flex;
71
+ justify-content: center;
72
+ align-items: center;
73
+ font-size: 1.5em;
74
+ }
75
+
76
+ sparkle-header .SectionNav stencil-route {
77
+ display: flex;
78
+ }
79
+
80
+ sparkle-header .SectionNav .Dropdown {
81
+ align-self: center;
82
+ color: var(--text-color);
83
+ margin-right: 0.75em;
84
+ }
85
+
86
+ sparkle-header .SectionNav .Dropdown-button {
87
+ border: solid 1px #dee3ea;
88
+ border-radius: 6px;
89
+ color: var(--text-color--dark);
90
+ padding: 10px;
91
+ transition: border-color 100ms ease;
92
+ }
93
+
94
+ sparkle-header .SectionNav .Dropdown.is-open .Dropdown-button {
95
+ border-color: var(--line-rule-color);
96
+ }
97
+
98
+ sparkle-header .SectionNav .Dropdown-panel {
99
+ min-width: 180px;
100
+ }
101
+
102
+ sparkle-header .SectionNav .Dropdown-panel a {
103
+ display: flex;
104
+ justify-content: space-between;
105
+ }
106
+
107
+ sparkle-header .SectionNav .Dropdown-panel svg {
108
+ height: 1em;
109
+ width: 1em;
110
+ }
111
+
112
+ sparkle-header .SectionNav .Dropdown-panel .Nav-link {
113
+ margin-left: 0;
114
+ margin-right: 0;
115
+ }
116
+
117
+ sparkle-header .SectionNav-tabs > * {
118
+ align-items: center;
119
+ display: inline-flex;
120
+ height: var(--header-height);
121
+ margin-right: 1em;
122
+ padding: 0px 1em;
123
+ position: relative;
124
+ }
125
+
126
+ sparkle-header .SectionNav-tabs .link-active:after {
127
+ background-color: currentColor;
128
+ bottom: 0;
129
+ content: '';
130
+ display: block;
131
+ height: 2px;
132
+ left: 0;
133
+ position: absolute;
134
+ width: 100%;
135
+ }
136
+
137
+ sparkle-header .UtilNav {
138
+ align-items: center;
139
+ display: flex;
140
+ font-size: 12px;
141
+ margin-left: auto;
142
+ }
143
+
144
+ sparkle-header .UtilNav > * {
145
+ margin-left: 1em;
146
+ }
147
+
148
+ sparkle-header .UtilNav .Dropdown.is-open {
149
+ color: var(--text-color);
150
+ }
151
+
152
+ sparkle-header .UtilNav .Dropdown-button {
153
+ padding: 10px 0;
154
+ }
155
+
156
+ @media (hover: hover) {
157
+ sparkle-header .UtilNav .Dropdown-button:hover {
158
+ color: var(--text-color);
159
+ }
160
+ }
161
+
162
+ sparkle-header .UtilNav .Dropdown-panel {
163
+ font-size: 14px;
164
+ }
165
+
166
+ sparkle-header .class-room-toggle-container {
167
+ display: flex;
168
+ justify-content: start;
169
+ align-items: center;
170
+ padding-left: 20px;
171
+ }
172
+ sparkle-header .class-room-mode-toggle-title {
173
+ padding-right: 5px;
174
+ }
175
+
176
+ sparkle-header .class-room-mode-toggle {
177
+ align-items: center;
178
+ display: flex;
179
+ justify-content: center;
180
+ width: 90px;
181
+ height: 28px;
182
+ background: var(--ion-color-sparkle-step-50);
183
+ border-radius: 18px;
184
+ }
185
+
186
+ sparkle-header .class-room-mode-toggle button {
187
+ background-color: transparent;
188
+ border: none;
189
+ border-radius: 16px;
190
+
191
+ color: #5b708b;
192
+
193
+ cursor: pointer;
194
+ font-family: var(--font-family);
195
+ font-size: 11px;
196
+ letter-spacing: -0.02em;
197
+ width: calc(50% - 2px);
198
+ line-height: 21px;
199
+ padding-top: 2px;
200
+
201
+ transition: 200ms background-color ease, 200ms color ease;
202
+ }
203
+
204
+ sparkle-header .class-room-mode-toggle button:focus,
205
+ sparkle-header .class-room-mode-toggle button:active {
206
+ outline: none;
207
+ }
208
+
209
+ sparkle-header .class-room-mode-toggle button.is-selected {
210
+ background-color: var(--ion-color-sparkle);
211
+ color: var(--ion-color-sparkle-contrast);
212
+
213
+ font-weight: 600;
214
+ box-shadow: 0px 2px 3px #a7b5c7;
215
+ }
216
+ sparkle-header .girls-inc-logo {
217
+ display: block;
218
+ max-width: 40px;
219
+ max-height: 40px;
220
+ width: auto;
221
+ height: auto;
222
+ }
223
+
224
+ sparkle-header sparkle-dropdown.profile-dropdown .Dropdown-icon {
225
+ height: 30px;
226
+ width: 30px;
227
+ }
228
+
229
+
230
+ sparkle-header sparkle-dropdown.profile-dropdown .Dropdown-arrow {
231
+ height: 30px;
232
+ }
@@ -0,0 +1,25 @@
1
+ sparkle-menu-toggle {
2
+ background-color: rgba(0, 0, 0, var(--bg-alpha, 0));
3
+ border-radius: 50%;
4
+ color: var(--text-color--light);
5
+ cursor: pointer;
6
+ height: 40px;
7
+ padding: 8px;
8
+ width: 40px;
9
+ }
10
+
11
+ @media (hover: hover) {
12
+ sparkle-menu-toggle:focus,
13
+ sparkle-menu-toggle:hover {
14
+ --bg-alpha: 0.03;
15
+ outline: none;
16
+ }
17
+
18
+ sparkle-menu-toggle:active {
19
+ --bg-alpha: 0.06;
20
+ }
21
+ }
22
+
23
+ sparkle-menu-toggle svg {
24
+ fill: currentColor;
25
+ }
@@ -0,0 +1,71 @@
1
+ sparkle-menu {
2
+ background-color: var(--background);
3
+ border-right: solid 1px var(--line-rule-color);
4
+ display: flex;
5
+ flex-direction: column;
6
+ height: 100vh;
7
+ left: 0;
8
+ position: fixed;
9
+ top: 0;
10
+ transition: transform 200ms cubic-bezier(0.2, 1, 0.2, 1);
11
+ transform: var(--menu-transform, none);
12
+ width: var(--menu-width);
13
+ z-index: 1;
14
+ }
15
+
16
+ sparkle-menu > header {
17
+ align-items: center;
18
+ border-bottom: solid 1px var(--line-rule-color);
19
+ display: flex;
20
+ flex: none;
21
+ height: var(--header-height);
22
+ padding: 0 1.4rem 0 0.8rem;
23
+ user-select: none;
24
+ }
25
+
26
+ sparkle-menu sparkle-menu-toggle {
27
+ margin-right: 0.75em;
28
+ }
29
+
30
+ sparkle-menu .MenuLogo {
31
+ color: var(--text-color--dark);
32
+ font-family: var(--heading-font-family);
33
+ height: 25px;
34
+ }
35
+
36
+ sparkle-menu > .Menu {
37
+ overflow-y: auto;
38
+ -webkit-overflow-scrolling: touch;
39
+ }
40
+
41
+ sparkle-menu nav {
42
+ padding: 2rem 1.5rem;
43
+ }
44
+
45
+ .MenuControls {
46
+ border-bottom: solid 1px var(--line-rule-color);
47
+ box-shadow: 0 5px 10px -10px rgba(0, 0, 0, 0.1);
48
+ font-size: 13px;
49
+ padding: 1em;
50
+ }
51
+
52
+ .CourseSelect,
53
+ .CourseSelect .Dropdown,
54
+ .CourseSelect .Dropdown-button {
55
+ width: 100%;
56
+ }
57
+
58
+ .CourseSelect-course {
59
+ align-items: center;
60
+ display: flex;
61
+ }
62
+
63
+ .CourseSelect-icon {
64
+ height: 14px;
65
+ width: 14px;
66
+ margin-right: 0.5em;
67
+ }
68
+
69
+ .CourseSelect .Select-option {
70
+ padding-left: 0.75em;
71
+ }
@@ -0,0 +1,194 @@
1
+ sparkle-nav {
2
+ display: block;
3
+ flex: 0 0 auto;
4
+ z-index: 1;
5
+ }
6
+
7
+ sparkle-nav .wrapper {
8
+ position: relative;
9
+ }
10
+
11
+ sparkle-nav .section-label {
12
+ margin-bottom: 0;
13
+ font-size: 14px;
14
+ font-weight: 600;
15
+ }
16
+
17
+ sparkle-nav .module-list li,
18
+ sparkle-nav .module-list ul li {
19
+ list-style-type: none;
20
+ margin: 0;
21
+ padding: 0;
22
+ }
23
+
24
+ sparkle-nav .module-list {
25
+ margin-top: 0;
26
+ padding: 0;
27
+ }
28
+
29
+ sparkle-nav .module-list .section-label:first-of-type {
30
+ margin-top: 0;
31
+ }
32
+
33
+ sparkle-nav .module-list li {
34
+ font-size: 14px;
35
+ padding: 10px 10px 0px 14px;
36
+ }
37
+
38
+ sparkle-nav .module-list > li {
39
+ margin-top: 10px;
40
+ }
41
+
42
+ sparkle-nav .module-list a {
43
+ font-weight: 400;
44
+ color: #6c6c8b;
45
+ text-decoration: none;
46
+ white-space: nowrap;
47
+ border: 0;
48
+ }
49
+
50
+ sparkle-nav .module-list a:not(.link-active) {
51
+ transition: color 0.2s;
52
+ }
53
+
54
+ sparkle-nav .module-list a:hover {
55
+ border: 0;
56
+ }
57
+
58
+ sparkle-nav .module-list .link-active {
59
+ font-weight: bold;
60
+ color: var(--ion-color-sparkle);
61
+ }
62
+
63
+ sparkle-nav .module-list .link-active a{
64
+ color: var(--ion-color-sparkle);
65
+ }
66
+
67
+ sparkle-nav .module-list a:hover:not(.link-active) {
68
+ color: var(--ion-color-sparkle);
69
+ }
70
+
71
+ sparkle-nav .module-list ul li {
72
+ padding-left: 12px;
73
+ transition: 80ms height;
74
+ display: block;
75
+ overflow: hidden;
76
+ text-overflow: ellipsis;
77
+ }
78
+
79
+ sparkle-nav .module-list ul.collapsed li {
80
+ height: 0;
81
+ }
82
+
83
+ sparkle-nav ul.session-list {
84
+ margin: 0;
85
+ padding: 10px 0px 0px 0px;
86
+ }
87
+
88
+ sparkle-nav ul.session-list li a {
89
+ display: flex;
90
+ flex-direction: column;
91
+ padding: 15px 24px;
92
+ position: relative;
93
+ }
94
+
95
+ sparkle-nav ul.session-list li a:before {
96
+ content: '';
97
+ width: 10px;
98
+ height: 10px;
99
+ border-radius: 50%;
100
+ background: #dfe1e3;
101
+ display: block;
102
+ position: absolute;
103
+ left: 1px;
104
+ top: 50%;
105
+ margin-top: -5px;
106
+ z-index: 5
107
+ }
108
+
109
+
110
+ sparkle-nav ul.session-list li a:after {
111
+ content: '';
112
+ background: #dfe1e3;
113
+ height: 100%;
114
+ position: absolute;
115
+ width: 2px;
116
+ display: block;
117
+ left: 5px;
118
+ top: 0
119
+ }
120
+
121
+ sparkle-nav ul.session-list li a.is-active {
122
+ color: var(--ion-color-sparkle);
123
+ }
124
+
125
+ sparkle-nav ul.session-list li a.is-active:before {
126
+ width: 14px;
127
+ height: 14px;
128
+ left: 23px;
129
+ margin-top: -7px;
130
+ background: var(--ion-color-sparkle);
131
+ box-shadow: 0 0 4px var(--ion-color-sparkle);
132
+ }
133
+
134
+
135
+ sparkle-nav ul.session-list li a.is-active:after {
136
+ background: #dfe1e3
137
+ }
138
+
139
+ sparkle-nav ul.session-list li stencil-route-link.is-completed a {
140
+ /* color: var(--ion-color-sparkle); */
141
+ }
142
+
143
+ sparkle-nav ul.session-list li stencil-route-link.is-completed a:before {
144
+ background: var(--ion-color-sparkle);
145
+ }
146
+
147
+ sparkle-nav ul.session-list li stencil-route-link.is-completed a:after {
148
+ background: var(--ion-color-sparkle);
149
+ }
150
+
151
+ sparkle-nav ul.session-list li a p {
152
+ color: #fff;
153
+ flex: 1;
154
+ white-space: nowrap;
155
+ overflow: hidden;
156
+ text-overflow: ellipsis;
157
+ transition: .2s ease-in-out color
158
+ }
159
+
160
+ sparkle-nav ul.session-list li a span {
161
+ display: block;
162
+ line-height: 12px;
163
+ }
164
+
165
+ sparkle-nav ul li span.coming-soon {
166
+ font-size: 0.7rem;
167
+ display: block;
168
+ background: 0 0;
169
+ color: #f6c95b;
170
+ line-height: 14px;
171
+ border-radius: 4px;
172
+ padding: 1px 4px 0;
173
+ box-shadow: none;
174
+ border: 1px solid #f6c95b;
175
+ width: 85px;
176
+ text-align: center;
177
+ }
178
+
179
+
180
+ sparkle-nav ul.session-list li a:hover p {
181
+ color: var(--ion-color-sparkle);
182
+ }
183
+
184
+
185
+
186
+ sparkle-nav ul.session-list li:first-child a:after {
187
+ height: 50%;
188
+ top: 50%
189
+ }
190
+
191
+ sparkle-nav ul.session-list li:last-child a:after {
192
+ height: 50%;
193
+ bottom: 50%
194
+ }
@@ -0,0 +1,67 @@
1
+ sparkle-overlay {
2
+ --sparkle-z-index-xl: 500;
3
+ --sparkle-transition-fast: 0.3s;
4
+ --sparkle-color-light-base: 197, 209, 218;
5
+ --sparkle-shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
6
+ }
7
+ .sparkle-overlay {
8
+ -ms-flex-align: center;
9
+ align-items: center;
10
+ display: flex;
11
+ visibility: hidden;
12
+ -ms-flex-pack: center;
13
+ justify-content: center;
14
+ position: fixed;
15
+ top: 0;
16
+ left: 0;
17
+ right: 0;
18
+ bottom: 0;
19
+ pointer-events: auto;
20
+ -ms-touch-action: none;
21
+ touch-action: none;
22
+ opacity: 0;
23
+ z-index: var(--sparkle-z-index-xl);
24
+ }
25
+ .sparkle-overlay,
26
+ .sparkle-overlay.opened {
27
+ -webkit-transition: all var(--sparkle-transition-fast) ease-in-out;
28
+ transition: all var(--sparkle-transition-fast) ease-in-out;
29
+ }
30
+ .sparkle-overlay.opened {
31
+ visibility: visible;
32
+ opacity: 1;
33
+ }
34
+ .sparkle-overlay.opened .content {
35
+ -webkit-transition: all var(--sparkle-transition-fast) ease-in-out;
36
+ transition: all var(--sparkle-transition-fast) ease-in-out;
37
+ }
38
+ .sparkle-overlay.light {
39
+ background-color: rgba(var(--sparkle-color-light-base), 0.6);
40
+ }
41
+ .sparkle-overlay.dark {
42
+ background-color: rgba(var(--sparkle-color-dark-base), 0.6);
43
+ }
44
+ .sparkle-overlay.absolute {
45
+ position: absolute;
46
+ }
47
+ .sparkle-overlay .scrim {
48
+ border-radius: inherit;
49
+ height: 100%;
50
+ position: absolute;
51
+ top: 0;
52
+ bottom: 0;
53
+ left: 0;
54
+ right: 0;
55
+ -webkit-transition: inherit;
56
+ transition: inherit;
57
+ width: 100%;
58
+ will-change: opacity;
59
+ }
60
+ .sparkle-overlay .content {
61
+ position: relative;
62
+ outline: none;
63
+ -webkit-box-shadow: var(--sparkle-shadow-xl);
64
+ box-shadow: var(--sparkle-shadow-xl);
65
+ -webkit-transition: all var(--sparkle-transition-fast) ease-in-out;
66
+ transition: all var(--sparkle-transition-fast) ease-in-out;
67
+ }
@@ -0,0 +1,18 @@
1
+ sparkle-page-footer {
2
+ margin-top: 6rem;
3
+ }
4
+
5
+
6
+ sparkle-page-footer .last-updated {
7
+ color: var(--text-color--light);
8
+ font-weight: normal;
9
+ margin-left: auto;
10
+ text-decoration: underline;
11
+ }
12
+
13
+ sparkle-page-footer .page-footer__row {
14
+ align-items: center;
15
+ display: flex;
16
+ font-size: 12px;
17
+ margin-top: 2rem;
18
+ }
@@ -0,0 +1,93 @@
1
+ sparkle-pagination {
2
+ border-color: var(--line-rule-color);
3
+ border-style: solid;
4
+ border-width: 0 0 1px;
5
+ display: flex;
6
+ flex-wrap: wrap-reverse;
7
+ padding: var(--page-padding, 2rem 0rem) 0;
8
+ }
9
+
10
+ sparkle-pagination .next,
11
+ sparkle-pagination .previous {
12
+ max-width: 100%;
13
+ overflow: hidden;
14
+ }
15
+
16
+ sparkle-pagination .next {
17
+ margin-left: auto;
18
+ }
19
+
20
+ sparkle-pagination a {
21
+ border-radius: 4px;
22
+ display: flex;
23
+ align-items: flex-start;
24
+ flex-direction: column;
25
+ padding: 1em 1.5em;
26
+ color: rgb(var(--accent-color-rgb));
27
+ }
28
+
29
+ sparkle-pagination .previous a {
30
+ padding-left: 0;
31
+ }
32
+
33
+ sparkle-pagination .next a {
34
+ padding-right: 0;
35
+ align-items: flex-end;
36
+ }
37
+
38
+ @media (max-width: 700px) {
39
+ sparkle-pagination .previous a {
40
+ padding-right: 0.5rem;
41
+ }
42
+
43
+ sparkle-pagination .next a {
44
+ padding-left: 0.5rem;
45
+ }
46
+ }
47
+
48
+ @media (hover: hover) {
49
+ sparkle-pagination a:hover,
50
+ sparkle-pagination a:active {
51
+ filter: brightness(0.8);
52
+ }
53
+ }
54
+
55
+ sparkle-pagination .pagination__title {
56
+ color: var(--text-color--lighter);
57
+ font-size: 12px;
58
+ display: block;
59
+ }
60
+
61
+ sparkle-pagination .pagination__text {
62
+ white-space: nowrap;
63
+ overflow: hidden;
64
+ text-overflow: ellipsis;
65
+ display: block;
66
+ color: var(--ion-color-sparkle);
67
+ }
68
+
69
+ sparkle-pagination span {
70
+ overflow: hidden;
71
+ text-overflow: ellipsis;
72
+ white-space: nowrap;
73
+ }
74
+
75
+ sparkle-pagination svg {
76
+ fill: currentColor;
77
+ flex: none;
78
+ height: 1em;
79
+ margin-bottom: -0.125em;
80
+ width: 1em;
81
+ }
82
+
83
+ sparkle-pagination .next svg {
84
+ margin-left: 0.5em;
85
+ }
86
+
87
+ sparkle-pagination .previous svg {
88
+ margin-right: 0.5em;
89
+ }
90
+
91
+ .completed-toast {
92
+ z-index: 999999999999999999999999999 !important;
93
+ }