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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 356b88afa2ad21ee85317b10189c1153c359346cb1e6b3a56275d6b551383177
4
- data.tar.gz: e9d8ed00fa08e18572626aacf722bf76fff9cbb048a56de6f7f4d8291bfe661d
3
+ metadata.gz: c65c6029ccabe42eb67a360010a78668fa3c70710a1f39a855d362dea1dd7fa8
4
+ data.tar.gz: 82c3bdb27894954730a381bf55ea21b9b07737e95c7807314754377ec37aea14
5
5
  SHA512:
6
- metadata.gz: eb93dc1feacfc0b6086eb764538057f1355f33d45f3acad38c5939d8bf5529e053a2bd54565f094170f8c56a357362d7ab816efd06c83893772b3b397cdd7b9e
7
- data.tar.gz: a13a003c9a64b3b7ad3f78e6be8d81c228b7c5cdaf03679c1e3160244820662624a45c702765532ce44c83b096f98a2ae48e962570b47f6edf3fb299d97279ef
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.0...HEAD
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
- justify-self: left;
233
+ place-self: center start;
234
234
  }
235
235
 
236
236
  label + [type='image'] {
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ClairityCss
4
- VERSION = '0.5.0'
4
+ VERSION = '0.5.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: clairity.css
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - clairity