@wordpress/block-library 7.3.9 → 7.3.10

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.
@@ -74,6 +74,21 @@
74
74
  /**
75
75
  * Reset the WP Admin page styles for Gutenberg-like pages.
76
76
  */
77
+ .wp-block-post-comments {
78
+ /* utility classes */
79
+ /* end utility classes */
80
+ }
81
+ .wp-block-post-comments .alignleft {
82
+ float: right;
83
+ }
84
+ .wp-block-post-comments .alignright {
85
+ float: left;
86
+ }
87
+ .wp-block-post-comments .navigation::after {
88
+ content: "";
89
+ display: table;
90
+ clear: both;
91
+ }
77
92
  .wp-block-post-comments .commentlist {
78
93
  clear: both;
79
94
  list-style: none;
@@ -74,6 +74,21 @@
74
74
  /**
75
75
  * Reset the WP Admin page styles for Gutenberg-like pages.
76
76
  */
77
+ .wp-block-post-comments {
78
+ /* utility classes */
79
+ /* end utility classes */
80
+ }
81
+ .wp-block-post-comments .alignleft {
82
+ float: left;
83
+ }
84
+ .wp-block-post-comments .alignright {
85
+ float: right;
86
+ }
87
+ .wp-block-post-comments .navigation::after {
88
+ content: "";
89
+ display: table;
90
+ clear: both;
91
+ }
77
92
  .wp-block-post-comments .commentlist {
78
93
  clear: both;
79
94
  list-style: none;
@@ -2101,6 +2101,21 @@ p.has-background {
2101
2101
  margin: 0;
2102
2102
  }
2103
2103
 
2104
+ .wp-block-post-comments {
2105
+ /* utility classes */
2106
+ /* end utility classes */
2107
+ }
2108
+ .wp-block-post-comments .alignleft {
2109
+ float: right;
2110
+ }
2111
+ .wp-block-post-comments .alignright {
2112
+ float: left;
2113
+ }
2114
+ .wp-block-post-comments .navigation::after {
2115
+ content: "";
2116
+ display: table;
2117
+ clear: both;
2118
+ }
2104
2119
  .wp-block-post-comments .commentlist {
2105
2120
  clear: both;
2106
2121
  list-style: none;
@@ -2127,6 +2127,21 @@ p.has-background {
2127
2127
  margin: 0;
2128
2128
  }
2129
2129
 
2130
+ .wp-block-post-comments {
2131
+ /* utility classes */
2132
+ /* end utility classes */
2133
+ }
2134
+ .wp-block-post-comments .alignleft {
2135
+ float: left;
2136
+ }
2137
+ .wp-block-post-comments .alignright {
2138
+ float: right;
2139
+ }
2140
+ .wp-block-post-comments .navigation::after {
2141
+ content: "";
2142
+ display: table;
2143
+ clear: both;
2144
+ }
2130
2145
  .wp-block-post-comments .commentlist {
2131
2146
  clear: both;
2132
2147
  list-style: none;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/block-library",
3
- "version": "7.3.9",
3
+ "version": "7.3.10",
4
4
  "description": "Block library for the WordPress editor.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -37,7 +37,7 @@
37
37
  "@wordpress/api-fetch": "^6.3.1",
38
38
  "@wordpress/autop": "^3.6.1",
39
39
  "@wordpress/blob": "^3.6.1",
40
- "@wordpress/block-editor": "^8.5.6",
40
+ "@wordpress/block-editor": "^8.5.7",
41
41
  "@wordpress/blocks": "^11.5.3",
42
42
  "@wordpress/components": "^19.8.4",
43
43
  "@wordpress/compose": "^5.4.1",
@@ -54,7 +54,7 @@
54
54
  "@wordpress/keycodes": "^3.6.1",
55
55
  "@wordpress/notices": "^3.6.1",
56
56
  "@wordpress/primitives": "^3.4.1",
57
- "@wordpress/reusable-blocks": "^3.4.6",
57
+ "@wordpress/reusable-blocks": "^3.4.7",
58
58
  "@wordpress/rich-text": "^5.4.2",
59
59
  "@wordpress/server-side-render": "^3.4.5",
60
60
  "@wordpress/url": "^3.7.1",
@@ -74,5 +74,5 @@
74
74
  "publishConfig": {
75
75
  "access": "public"
76
76
  },
77
- "gitHead": "7c3e7511fd348b9936d656471f08345ca197fd34"
77
+ "gitHead": "d9042594d77ee2d9e28326266de078a505fdf645"
78
78
  }
@@ -1,4 +1,22 @@
1
1
  .wp-block-post-comments {
2
+ /* utility classes */
3
+ .alignleft {
4
+ float: left;
5
+ }
6
+
7
+ .alignright {
8
+ float: right;
9
+ }
10
+ /* end utility classes */
11
+
12
+ .navigation {
13
+ &::after {
14
+ content: "";
15
+ display: table;
16
+ clear: both;
17
+ }
18
+ }
19
+
2
20
  .commentlist {
3
21
  clear: both;
4
22
  list-style: none;