clairity.css 0.5.0 → 0.5.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 +13 -1
- data/lib/assets/css/clairity/classes.css +8 -0
- data/lib/assets/css/clairity/cosmetic.css +2 -2
- data/lib/clairity.css/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: c65c6029ccabe42eb67a360010a78668fa3c70710a1f39a855d362dea1dd7fa8
|
4
|
+
data.tar.gz: 82c3bdb27894954730a381bf55ea21b9b07737e95c7807314754377ec37aea14
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7e4baab2ddda8fd5c268d8975814e1066d774134e09bb618d3858e3bd2c36b8e558b264c354838429b8d234f2b90375b3b26de9eb4e967dece49ea720fa6bdb0
|
7
|
+
data.tar.gz: f20400f2e224b380cc1f189842bd44c806317eebeed85bdc8cc604073077fef047a24952a5c62b4a2d509b75f520abd31e1b02cd31adfe12a786c09bc36c8a89
|
data/CHANGELOG.md
CHANGED
@@ -29,6 +29,17 @@ This section is for recording changes committed since the last release.
|
|
29
29
|
### Security
|
30
30
|
|
31
31
|
|
32
|
+
## [v0.5.1] - 20230628
|
33
|
+
|
34
|
+
### Changed
|
35
|
+
|
36
|
+
* [classes.css]: decreased spacing between heading classes (like `.h1`) and the following paragraph - EXPERIMENTAL
|
37
|
+
|
38
|
+
### Fixed
|
39
|
+
|
40
|
+
* [cosmetic.css]: forgot to add `place-self: start` to checkbox/radio label
|
41
|
+
|
42
|
+
|
32
43
|
## [v0.5.0] - 20230628
|
33
44
|
|
34
45
|
### Added
|
@@ -706,7 +717,8 @@ After a number of diversions, including developing a (as yet unreleased) Jekyll
|
|
706
717
|
- `palette.css` - separate out the color scheme into its own css file
|
707
718
|
|
708
719
|
|
709
|
-
[unreleased]: https://github.com/clairity/clairity.css/compare/v0.5.
|
720
|
+
[unreleased]: https://github.com/clairity/clairity.css/compare/v0.5.1...HEAD
|
721
|
+
[v0.5.1]: https://github.com/clairity/clairity.css/compare/v0.5.0...v0.5.1
|
710
722
|
[v0.5.0]: https://github.com/clairity/clairity.css/compare/v0.4.0...v0.5.0
|
711
723
|
[v0.4.0]: https://github.com/clairity/clairity.css/compare/v0.3.1...v0.4.0
|
712
724
|
[v0.3.1]: https://github.com/clairity/clairity.css/compare/v0.3.0...v0.3.1
|
@@ -100,6 +100,14 @@ CLASSES - Here is where we first deviate from the classless CSS directive. We'll
|
|
100
100
|
text-decoration-style: dotted;
|
101
101
|
}
|
102
102
|
|
103
|
+
/* decrease space between headings and paragraphs - EXPERIMENTAL */
|
104
|
+
:is(.h1,.h2,.h3,.h4,.h5,.h6):has(+ p) {
|
105
|
+
margin-bottom: 0.25em;
|
106
|
+
}
|
107
|
+
:where(.h1,.h2,.h3,.h4,.h5,.h6) + p {
|
108
|
+
margin-top: 0.25em;
|
109
|
+
}
|
110
|
+
|
103
111
|
/* text providing extra detail to a heading. p-subtitle is a microformat
|
104
112
|
(plaintext) alternative class name for .subtitle
|
105
113
|
// .......................................................................... */
|
@@ -228,9 +228,9 @@ label:has([type='checkbox']) {
|
|
228
228
|
place-self: center end;
|
229
229
|
}
|
230
230
|
|
231
|
-
:where(form) :is([type='checkbox'], [type='radio']) + label
|
231
|
+
:where(form) :is([type='checkbox'], [type='radio']) + label {
|
232
232
|
grid-column: elements;
|
233
|
-
|
233
|
+
place-self: center start;
|
234
234
|
}
|
235
235
|
|
236
236
|
label + [type='image'] {
|
data/lib/clairity.css/version.rb
CHANGED