markawesome 0.9.0 → 0.9.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 +6 -0
- data/lib/markawesome/transformers/popover_transformer.rb +1 -0
- data/lib/markawesome/version.rb +1 -1
- 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: f905b53dab8aa3e46a07e23a535027fdc95f290fa195ed7bc7e3700cb5b28434
|
|
4
|
+
data.tar.gz: 858f36fb5b797fddb06d9ce73b586a67088b9c41d48f58dd3e5755c537e7f6dc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 33be24fab1f053e5c26f854d748c59b324b9c02e08a61622d89cd57674551865de9497cc67e8ecb736c04f999cb1ae6cde3924ff0a2f14e265565d2fe5e5cb46
|
|
7
|
+
data.tar.gz: fff7882f369664e224277d97599311e19c17c3308eb02dff69ade5b945b01cf5bca0d4ab1f0ccffe389ca939c8efc8e9595632121bf3efcaecfd8b80cbe4f5fa
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.9.1] - 2026-03-12
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- Link-style popover triggers now use dotted underline (`text-decoration-style: dotted`) to visually distinguish them from navigation links
|
|
12
|
+
|
|
7
13
|
## [0.9.0] - 2026-03-12
|
|
8
14
|
|
|
9
15
|
### Added
|
|
@@ -164,6 +164,7 @@ module Markawesome
|
|
|
164
164
|
if link_style
|
|
165
165
|
link_style_attr = 'background: none; border: none; padding: 0; ' \
|
|
166
166
|
'color: inherit; text-decoration: underline; ' \
|
|
167
|
+
'text-decoration-style: dotted; ' \
|
|
167
168
|
'cursor: pointer; font: inherit;'
|
|
168
169
|
"<button id='#{popover_id}' style='#{link_style_attr}'>#{trigger_content}</button>"
|
|
169
170
|
else
|
data/lib/markawesome/version.rb
CHANGED