jekyll-theme-amethyst 2.2.0 → 2.2.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.
- checksums.yaml +4 -4
- data/_sass/amethyst.scss +6 -6
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 33f7b0f9d251222c85f49f4af58db521600c1181d7e48b2ae10909cae943d7c1
|
|
4
|
+
data.tar.gz: 6266b78cf47fca3f3f8004f5e014e2b264d0aa7e2ea7f64952162b15c90a0ea4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e727632a049809d4f346d2d9cf89fc13a21e6428f87cb4b806edda1765be44611abff2c05d470902510d2099dee40bb234439169692fe08eb2d3adcbb532a4a1
|
|
7
|
+
data.tar.gz: a2f951769200180f3e5159c63af66641c8155b45ceeef2fb3e21d74b86643ebb3c4ed297dc23a899dd27f18c1b37e3235aa289a0f5186a2a88130d8699511147
|
data/_sass/amethyst.scss
CHANGED
|
@@ -468,13 +468,13 @@ table {
|
|
|
468
468
|
/* Search */
|
|
469
469
|
|
|
470
470
|
typesense-minibar {
|
|
471
|
-
--tsmb-color-base-background: #{
|
|
471
|
+
--tsmb-color-base-background: #{color.adjust($color-accent, $lightness: 12%)};
|
|
472
472
|
--tsmb-color-primary30: #{$color-accent};
|
|
473
473
|
--tsmb-color-primary50: #{$color-vibrant};
|
|
474
474
|
--tsmb-color-primary90: #{$color-bright};
|
|
475
475
|
--tsmb-color-base30: var(--tsmb-color-primary90);
|
|
476
|
-
--tsmb-color-base50: #{change
|
|
477
|
-
--tsmb-color-base90: #{change
|
|
476
|
+
--tsmb-color-base50: #{color.change($color-bright, $alpha: 0.6)}; // #a98dc1
|
|
477
|
+
--tsmb-color-base90: #{color.change($color-bright, $alpha: 0.6)};
|
|
478
478
|
|
|
479
479
|
flex: 1;
|
|
480
480
|
align-self: center;
|
|
@@ -483,7 +483,7 @@ typesense-minibar form {
|
|
|
483
483
|
width: auto;
|
|
484
484
|
}
|
|
485
485
|
typesense-minibar form:not(:focus-within)::before {
|
|
486
|
-
filter: unquote("invert()");
|
|
486
|
+
filter: string.unquote("invert()");
|
|
487
487
|
}
|
|
488
488
|
typesense-minibar input[type="search"] {
|
|
489
489
|
border: none;
|
|
@@ -610,8 +610,8 @@ typesense-minibar input[type="search"] {
|
|
|
610
610
|
|
|
611
611
|
.hero {
|
|
612
612
|
margin-bottom: $size-spacing;
|
|
613
|
-
background-color:
|
|
614
|
-
background-image: linear-gradient(135deg,
|
|
613
|
+
background-color: color.adjust($color-vibrant, $lightness: -12%);
|
|
614
|
+
background-image: linear-gradient(135deg, color.adjust($color-vibrant, $lightness: -12%), $color-vibrant );
|
|
615
615
|
padding: ($size-4 * 2) 0;
|
|
616
616
|
text-align: center;
|
|
617
617
|
}
|