starlight-theme-bejamas 0.1.6 → 0.1.8
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/CHANGELOG.md +12 -0
- package/package.json +1 -1
- package/src/styles/theme.css +7 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# starlight-theme-bejamas
|
|
2
2
|
|
|
3
|
+
## 0.1.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#40](https://github.com/bejamas/ui/pull/40) [`58fbd77`](https://github.com/bejamas/ui/commit/58fbd775b67b2e132662ecfd9e69f674b004e675) Thanks [@thomkrupa](https://github.com/thomkrupa)! - improve z-indexes for code blocks
|
|
8
|
+
|
|
9
|
+
## 0.1.7
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#30](https://github.com/bejamas/ui/pull/30) [`4f2f6d4`](https://github.com/bejamas/ui/commit/4f2f6d41ba455d0dc87ee8db45974f78c7ca4a7d) Thanks [@thomkrupa](https://github.com/thomkrupa)! - decrease inline padding for mobile component preview
|
|
14
|
+
|
|
3
15
|
## 0.1.6
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED
package/src/styles/theme.css
CHANGED
|
@@ -370,7 +370,7 @@
|
|
|
370
370
|
button[data-open-modal] {
|
|
371
371
|
border-color: var(--border);
|
|
372
372
|
color: var(--foreground);
|
|
373
|
-
box-shadow:
|
|
373
|
+
box-shadow: none;
|
|
374
374
|
background-color: var(--background);
|
|
375
375
|
height: calc(var(--spacing) * 9);
|
|
376
376
|
}
|
|
@@ -421,6 +421,8 @@
|
|
|
421
421
|
justify-content: center;
|
|
422
422
|
align-items: center;
|
|
423
423
|
background-color: var(--background);
|
|
424
|
+
position: relative;
|
|
425
|
+
z-index: 10;
|
|
424
426
|
}
|
|
425
427
|
|
|
426
428
|
.sl-bejamas-component-preview + .expressive-code {
|
|
@@ -456,14 +458,16 @@
|
|
|
456
458
|
bottom: 50%;
|
|
457
459
|
transform: translateY(50%) translateX(-50%);
|
|
458
460
|
height: calc(var(--spacing) * 8.5);
|
|
461
|
+
z-index: 3;
|
|
459
462
|
}
|
|
460
463
|
|
|
461
464
|
.expressive-code .ec-collapse.ec-collapse--collapsed .ec-collapse__content {
|
|
462
465
|
border-radius: 0 0 var(--radius-lg) var(--radius-lg);
|
|
463
466
|
}
|
|
464
467
|
|
|
465
|
-
.ec-collapse__gradient {
|
|
468
|
+
.expressive-code .ec-collapse__gradient {
|
|
466
469
|
height: 100%;
|
|
470
|
+
z-index: 1;
|
|
467
471
|
}
|
|
468
472
|
|
|
469
473
|
.ec-collapse.ec-collapse--collapsed::after {
|
|
@@ -488,6 +492,7 @@
|
|
|
488
492
|
);
|
|
489
493
|
bottom: 0;
|
|
490
494
|
border-radius: 0 0 var(--radius-lg) var(--radius-lg);
|
|
495
|
+
z-index: 2;
|
|
491
496
|
}
|
|
492
497
|
|
|
493
498
|
.ec-collapse.ec-collapse--expanded .ec-collapse__toggle {
|