jekyll-highlight-cards 1.1.0 → 1.1.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/CHANGELOG.md +9 -0
- data/README.md +3 -3
- data/_sass/_highlight-cards.scss +2 -2
- data/lib/jekyll-highlight-cards/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a496b0ee2c27e17850013b6b6312f0ebed83c8435c9f79c751f7d8abee98d730
|
|
4
|
+
data.tar.gz: de62c4ec548155d0989f678aa2bcb1c1c1323c25854df7cd3ed3cf4200817b22
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 54445f4f6123e5a9c55db19a249c642879651c891c0bf93136b84265792f03692b6bf97001517c75ec2dbcd8c5f7ae06e57d2f20e2af44065391067cd025df3a
|
|
7
|
+
data.tar.gz: '06758a30fc8edf87c9bd2c55d18c8c71ea54934250786a851e75fc7c35c9d2098c53371ed5937648f73679cb3f15f7ad1dbd33b1c540ae365e9809404ed44b72'
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.1.1](https://github.com/Texarkanine/jekyll-highlight-cards/compare/v1.1.0...v1.1.1) (2025-12-22)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **css:** Refactor imports to use '[@use](https://github.com/use)' syntax ([#20](https://github.com/Texarkanine/jekyll-highlight-cards/issues/20)) ([14d4f1d](https://github.com/Texarkanine/jekyll-highlight-cards/commit/14d4f1dbd94a1ba6ccc5642e27c8114fd09e288a))
|
|
9
|
+
* **deps-dev:** bump rubocop from 1.81.7 to 1.82.0 in the dev-deps-minor-patch group ([#19](https://github.com/Texarkanine/jekyll-highlight-cards/issues/19)) ([031a996](https://github.com/Texarkanine/jekyll-highlight-cards/commit/031a99634fbdd06741c5f2fcf6f9d098f23173c2))
|
|
10
|
+
* **deps-dev:** bump rubocop in the dev-deps-minor-patch group ([031a996](https://github.com/Texarkanine/jekyll-highlight-cards/commit/031a99634fbdd06741c5f2fcf6f9d098f23173c2))
|
|
11
|
+
|
|
3
12
|
## [1.1.0](https://github.com/Texarkanine/jekyll-highlight-cards/compare/v1.0.1...v1.1.0) (2025-12-20)
|
|
4
13
|
|
|
5
14
|
|
data/README.md
CHANGED
|
@@ -37,7 +37,7 @@ bundle install
|
|
|
37
37
|
Add to your `main.scss` file:
|
|
38
38
|
|
|
39
39
|
```scss
|
|
40
|
-
@
|
|
40
|
+
@use "highlight-cards";
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
## Usage
|
|
@@ -155,7 +155,7 @@ export JEKYLL_HIGHLIGHT_CARDS_ARCHIVE=1
|
|
|
155
155
|
Import the default styles which include both structure and colors:
|
|
156
156
|
|
|
157
157
|
```scss
|
|
158
|
-
@
|
|
158
|
+
@use "highlight-cards";
|
|
159
159
|
```
|
|
160
160
|
|
|
161
161
|
This provides a complete, ready-to-use appearance.
|
|
@@ -165,7 +165,7 @@ This provides a complete, ready-to-use appearance.
|
|
|
165
165
|
For complete control over colors and visual effects, import only the structural styles and define your own colors:
|
|
166
166
|
|
|
167
167
|
```scss
|
|
168
|
-
@
|
|
168
|
+
@use "highlight-cards-structure";
|
|
169
169
|
|
|
170
170
|
// Define your own color styles
|
|
171
171
|
.polaroid {
|
data/_sass/_highlight-cards.scss
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-highlight-cards
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Texarkanine
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-12-
|
|
11
|
+
date: 2025-12-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|