athena-x-ai-headless 2.2.14 → 2.2.16

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.
@@ -147,6 +147,134 @@
147
147
  }
148
148
  }
149
149
 
150
+ /* Lazy loaders — global (any host page, not scoped to demo wrapper) */
151
+ .form-input-element__container {
152
+ position: relative;
153
+ isolation: isolate;
154
+ }
155
+ .athena-lazy-image {
156
+ position: relative;
157
+ display: block;
158
+ overflow: hidden;
159
+ }
160
+ .athena-lazy-image__img {
161
+ position: relative;
162
+ z-index: 2;
163
+ width: 100%;
164
+ height: auto;
165
+ opacity: 0;
166
+ transition: opacity 0.35s ease;
167
+ }
168
+ .athena-lazy-image__img--loaded,
169
+ .athena-lazy-image--loaded .athena-lazy-image__img {
170
+ opacity: 1;
171
+ }
172
+ .athena-lazy-image--error .athena-lazy-image__img {
173
+ opacity: 1;
174
+ }
175
+ .athena-lazy-image__loader {
176
+ position: absolute;
177
+ inset: 0;
178
+ z-index: 3;
179
+ display: flex;
180
+ align-items: center;
181
+ justify-content: center;
182
+ pointer-events: none;
183
+ }
184
+ .athena-lazy-image__loader-ring,
185
+ .athena-search-input-loader__ring {
186
+ display: block;
187
+ flex-shrink: 0;
188
+ width: 36px;
189
+ height: 36px;
190
+ border-radius: 50%;
191
+ border: 3px solid rgba(168, 198, 243, 0.25);
192
+ border-top-color: #6b9de8;
193
+ -webkit-animation: athena-loader-spin 0.85s linear infinite;
194
+ animation: athena-loader-spin 0.85s linear infinite;
195
+ transform-origin: center center;
196
+ box-sizing: border-box;
197
+ }
198
+ .athena-autocomplete-panel-loader {
199
+ position: absolute;
200
+ inset: 0;
201
+ z-index: 20;
202
+ display: flex;
203
+ align-items: center;
204
+ justify-content: center;
205
+ background: rgba(255, 255, 255, 0.72);
206
+ backdrop-filter: blur(2px);
207
+ }
208
+ .athena-autocomplete-panel-loader .athena-lazy-image__loader-ring {
209
+ width: 42px;
210
+ height: 42px;
211
+ }
212
+ .athena-spinner-loader--inline {
213
+ display: flex;
214
+ align-items: center;
215
+ justify-content: center;
216
+ pointer-events: none;
217
+ background: none;
218
+ }
219
+ .athena-spinner-loader__infinite,
220
+ .athena-spinner-loader-infinite {
221
+ display: flex;
222
+ align-items: center;
223
+ justify-content: center;
224
+ width: 100%;
225
+ padding: 16px 0;
226
+ position: relative;
227
+ left: auto;
228
+ bottom: auto;
229
+ transform: none;
230
+ z-index: 1;
231
+ background: none;
232
+ box-shadow: none;
233
+ pointer-events: none;
234
+ }
235
+ .autocomplete-l3__infinite-scroll {
236
+ position: relative;
237
+ width: 100%;
238
+ }
239
+ .autocomplete-l3__infinite-scroll--loading {
240
+ min-height: 52px;
241
+ }
242
+ .autocomplete-l3__infinite-scroll .athena-spinner-loader-infinite {
243
+ padding: 12px 0;
244
+ }
245
+ .athena-search-input-loader {
246
+ position: absolute;
247
+ left: 13px;
248
+ top: 50%;
249
+ transform: translateY(-50%);
250
+ z-index: 1;
251
+ width: 20px;
252
+ height: 20px;
253
+ display: flex;
254
+ align-items: center;
255
+ justify-content: center;
256
+ pointer-events: none;
257
+ }
258
+ .athena-search-input-loader__ring {
259
+ width: 18px;
260
+ height: 18px;
261
+ border-width: 2px;
262
+ -webkit-animation-duration: 0.7s;
263
+ animation-duration: 0.7s;
264
+ }
265
+ .form-input-element__container.athena-search-input--loading #search,
266
+ .form-input-element__container.athena-search-input--loading .search-input {
267
+ padding-right: 40px;
268
+ }
269
+ @-webkit-keyframes athena-loader-spin {
270
+ from { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
271
+ to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
272
+ }
273
+ @keyframes athena-loader-spin {
274
+ from { transform: rotate(0deg); }
275
+ to { transform: rotate(360deg); }
276
+ }
277
+
150
278
  /* --- autocomplete.css --- */
151
279
  /*==================
152
280
  Reset CSS
@@ -982,24 +1110,6 @@ Autocomplete Layout 3
982
1110
  height: 100%;
983
1111
  min-height: 100vh;
984
1112
  }
985
- .athena-spinner-loader-infinite {
986
- background: url(../../../images/loader-icon.svg) no-repeat;
987
- position: fixed;
988
- bottom: calc(15% - 15px);
989
- left: calc(50% - 15px);
990
- transform: translate(-50%, -50%);
991
- width: 30px;
992
- height: 30px;
993
- animation: spin 2s linear infinite;
994
- }
995
- @keyframes spin{
996
- 0% {
997
- transform: rotate(0deg);
998
- }
999
- 100% {
1000
- transform: rotate(360deg);
1001
- }
1002
- }
1003
1113
  /* Banner Top */
1004
1114
  .autocomplete-l3__flex-container #banner_top{
1005
1115
  width: 100%;
@@ -1999,17 +2109,6 @@ Segments
1999
2109
  background: rgba(0,0,0,0.3);
2000
2110
  z-index: 99;
2001
2111
  }
2002
- .athena-spinner-loader__infinite{
2003
- background: url(../../../images/loader-icon.svg) no-repeat;
2004
- position: absolute;
2005
- bottom: -15px;
2006
- left: calc(50% - 15px);
2007
- width: 30px;
2008
- z-index: 1;
2009
- height: 30px;
2010
- -webkit-animation: spin 2s linear infinite;
2011
- animation: spin 2s linear infinite;
2012
- }
2013
2112
 
2014
2113
  /**
2015
2114
  Input slider