@appartmint/mint 2.6.0 → 2.6.1
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/dist/css/mint.css +26 -39
- package/dist/css/mint.css.map +1 -1
- package/dist/css/mint.min.css +1 -1
- package/dist/css/mint.min.css.map +1 -1
- package/dist/js/imports/abstract/attaches-events.d.ts +1 -1
- package/dist/js/imports/components/panel.d.ts.map +1 -1
- package/dist/js/index.js +6 -4
- package/dist/js/index.js.map +1 -1
- package/dist/js/index.min.js +1 -1
- package/dist/js/index.min.js.map +1 -1
- package/package.json +1 -1
- package/src/scss/imports/components/partial/_header.scss +17 -43
- package/src/scss/imports/components/widget/_panel.scss +6 -1
- package/src/scss/imports/global/_global.scss +1 -1
package/dist/css/mint.css
CHANGED
|
@@ -168,7 +168,7 @@
|
|
|
168
168
|
width: 100%;
|
|
169
169
|
color: var(--mint-header-fore);
|
|
170
170
|
background-color: var(--mint-header-back);
|
|
171
|
-
z-index:
|
|
171
|
+
z-index: 1000;
|
|
172
172
|
height: var(--mint-header-height);
|
|
173
173
|
}
|
|
174
174
|
@media (min-width: 768px) {
|
|
@@ -278,22 +278,22 @@
|
|
|
278
278
|
#mint-header.mint-spread:not(.mint-expand) #mint-wrapper [aria-controls] + ul > li:first-child {
|
|
279
279
|
font-size: 1.5em;
|
|
280
280
|
}
|
|
281
|
-
#mint-header.mint-tray #mint-wrapper a, #mint-header.mint-tray #mint-wrapper button {
|
|
281
|
+
#mint-header .mint-tray #mint-wrapper a, #mint-header .mint-tray #mint-wrapper button {
|
|
282
282
|
padding: 0.75rem;
|
|
283
283
|
margin: 0.25rem 0;
|
|
284
284
|
line-height: 1;
|
|
285
|
-
font-size:
|
|
285
|
+
font-size: 2em;
|
|
286
286
|
width: 100%;
|
|
287
287
|
}
|
|
288
|
-
#mint-header.mint-tray #mint-wrapper button {
|
|
289
|
-
font-size:
|
|
288
|
+
#mint-header .mint-tray #mint-wrapper button {
|
|
289
|
+
font-size: 3em;
|
|
290
290
|
}
|
|
291
|
-
#mint-header.mint-tray #mint-wrapper nav > ul {
|
|
291
|
+
#mint-header .mint-tray #mint-wrapper nav > ul {
|
|
292
292
|
flex-direction: column;
|
|
293
293
|
flex-wrap: nowrap;
|
|
294
294
|
justify-content: flex-start;
|
|
295
295
|
}
|
|
296
|
-
#mint-header.mint-tray #mint-wrapper nav li {
|
|
296
|
+
#mint-header .mint-tray #mint-wrapper nav li {
|
|
297
297
|
width: 100%;
|
|
298
298
|
}
|
|
299
299
|
#mint-header:not(.mint-border)::before {
|
|
@@ -308,33 +308,10 @@
|
|
|
308
308
|
height: var(--mint-header-height);
|
|
309
309
|
z-index: -1;
|
|
310
310
|
}
|
|
311
|
-
#mint-header nav > ul {
|
|
312
|
-
display: flex;
|
|
313
|
-
flex-direction: column;
|
|
314
|
-
}
|
|
315
|
-
#mint-header ul {
|
|
316
|
-
list-style: none;
|
|
317
|
-
margin-top: 0;
|
|
318
|
-
margin-bottom: 1rem;
|
|
319
|
-
padding-left: 0;
|
|
320
|
-
}
|
|
321
|
-
#mint-header a,
|
|
322
|
-
#mint-header button {
|
|
323
|
-
margin: 0;
|
|
324
|
-
border: 0;
|
|
325
|
-
color: var(--mint-fore);
|
|
326
|
-
background: var(--mint-trans);
|
|
327
|
-
transition-property: color, background;
|
|
328
|
-
transition-duration: var(--mint-delay-default);
|
|
329
|
-
}
|
|
330
|
-
#mint-header a:hover,
|
|
331
|
-
#mint-header button:hover {
|
|
332
|
-
color: var(--mint-back);
|
|
333
|
-
}
|
|
334
311
|
#mint-header #mint-navbar {
|
|
335
312
|
display: flex;
|
|
336
313
|
align-items: center;
|
|
337
|
-
justify-content:
|
|
314
|
+
justify-content: flex-end;
|
|
338
315
|
height: 100%;
|
|
339
316
|
}
|
|
340
317
|
#mint-header .mint-logo {
|
|
@@ -422,6 +399,8 @@
|
|
|
422
399
|
margin-bottom: 0;
|
|
423
400
|
}
|
|
424
401
|
#mint-header #mint-wrapper nav > ul {
|
|
402
|
+
display: flex;
|
|
403
|
+
flex-direction: column;
|
|
425
404
|
height: 100%;
|
|
426
405
|
overflow: visible;
|
|
427
406
|
}
|
|
@@ -448,6 +427,10 @@
|
|
|
448
427
|
margin: 0.5rem 0;
|
|
449
428
|
text-align: center;
|
|
450
429
|
border-radius: 1rem;
|
|
430
|
+
color: var(--mint-fore);
|
|
431
|
+
background: var(--mint-trans);
|
|
432
|
+
transition-property: color, background;
|
|
433
|
+
transition-duration: var(--mint-delay-default);
|
|
451
434
|
}
|
|
452
435
|
@media (min-width: 480px) {
|
|
453
436
|
#mint-header #mint-wrapper a,
|
|
@@ -473,6 +456,12 @@
|
|
|
473
456
|
#mint-header #mint-wrapper button.mint-active {
|
|
474
457
|
text-decoration: underline;
|
|
475
458
|
}
|
|
459
|
+
#mint-header #mint-wrapper ul {
|
|
460
|
+
list-style: none;
|
|
461
|
+
margin-top: 0;
|
|
462
|
+
margin-bottom: 1rem;
|
|
463
|
+
padding-left: 0;
|
|
464
|
+
}
|
|
476
465
|
#mint-header #mint-wrapper ul li:last-child {
|
|
477
466
|
margin-bottom: 0;
|
|
478
467
|
}
|
|
@@ -485,12 +474,6 @@
|
|
|
485
474
|
justify-content: flex-end;
|
|
486
475
|
margin-left: auto;
|
|
487
476
|
}
|
|
488
|
-
#mint-header .mint-buttons a:not([aria-controls=mint-wrapper]),
|
|
489
|
-
#mint-header .mint-buttons button:not([aria-controls=mint-wrapper]) {
|
|
490
|
-
display: flex;
|
|
491
|
-
width: auto;
|
|
492
|
-
padding: 0.5rem;
|
|
493
|
-
}
|
|
494
477
|
#mint-header .mint-dropdown {
|
|
495
478
|
background: var(--mint-header-back);
|
|
496
479
|
}
|
|
@@ -1401,7 +1384,6 @@ p .mint-pill, p .mint-btn, :root:root p [amplify-button], p .mint-select {
|
|
|
1401
1384
|
}
|
|
1402
1385
|
.mint-panel.mint-tray .mint-panel-wrapper {
|
|
1403
1386
|
gap: 1.5rem;
|
|
1404
|
-
font-size: 0.5em;
|
|
1405
1387
|
}
|
|
1406
1388
|
@media (min-width: 768px) {
|
|
1407
1389
|
.mint-panel.mint-tray .mint-panel-wrapper {
|
|
@@ -1442,6 +1424,11 @@ p .mint-pill, p .mint-btn, :root:root p [amplify-button], p .mint-select {
|
|
|
1442
1424
|
.mint-panel .mint-panel-wrapper nav > :last-child {
|
|
1443
1425
|
margin-bottom: 0;
|
|
1444
1426
|
}
|
|
1427
|
+
.mint-panel .mint-title {
|
|
1428
|
+
display: flex;
|
|
1429
|
+
align-items: flex-start;
|
|
1430
|
+
justify-content: space-between;
|
|
1431
|
+
}
|
|
1445
1432
|
|
|
1446
1433
|
.mint-table-wrap {
|
|
1447
1434
|
max-height: 50vh;
|
|
@@ -1683,7 +1670,7 @@ main {
|
|
|
1683
1670
|
width: 100%;
|
|
1684
1671
|
min-height: calc(100vh - var(--mint-header-height));
|
|
1685
1672
|
overflow: hidden;
|
|
1686
|
-
z-index:
|
|
1673
|
+
z-index: 999;
|
|
1687
1674
|
}
|
|
1688
1675
|
main > router-outlet {
|
|
1689
1676
|
flex-grow: 0;
|