@wordpress/interface 4.1.1 → 4.1.2
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.
|
@@ -163,12 +163,18 @@
|
|
|
163
163
|
.interface-complementary-area p {
|
|
164
164
|
margin-top: 0;
|
|
165
165
|
}
|
|
166
|
-
.interface-complementary-area h2
|
|
167
|
-
.interface-complementary-area h3 {
|
|
166
|
+
.interface-complementary-area h2 {
|
|
168
167
|
font-size: 13px;
|
|
169
168
|
color: #1e1e1e;
|
|
170
169
|
margin-bottom: 1.5em;
|
|
171
170
|
}
|
|
171
|
+
.interface-complementary-area h3 {
|
|
172
|
+
font-size: 11px;
|
|
173
|
+
text-transform: uppercase;
|
|
174
|
+
font-weight: 500;
|
|
175
|
+
color: #1e1e1e;
|
|
176
|
+
margin-bottom: 1.5em;
|
|
177
|
+
}
|
|
172
178
|
.interface-complementary-area hr {
|
|
173
179
|
border-top: none;
|
|
174
180
|
border-bottom: 1px solid #f0f0f0;
|
package/build-style/style.css
CHANGED
|
@@ -163,12 +163,18 @@
|
|
|
163
163
|
.interface-complementary-area p {
|
|
164
164
|
margin-top: 0;
|
|
165
165
|
}
|
|
166
|
-
.interface-complementary-area h2
|
|
167
|
-
.interface-complementary-area h3 {
|
|
166
|
+
.interface-complementary-area h2 {
|
|
168
167
|
font-size: 13px;
|
|
169
168
|
color: #1e1e1e;
|
|
170
169
|
margin-bottom: 1.5em;
|
|
171
170
|
}
|
|
171
|
+
.interface-complementary-area h3 {
|
|
172
|
+
font-size: 11px;
|
|
173
|
+
text-transform: uppercase;
|
|
174
|
+
font-weight: 500;
|
|
175
|
+
color: #1e1e1e;
|
|
176
|
+
margin-bottom: 1.5em;
|
|
177
|
+
}
|
|
172
178
|
.interface-complementary-area hr {
|
|
173
179
|
border-top: none;
|
|
174
180
|
border-bottom: 1px solid #f0f0f0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/interface",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.2",
|
|
4
4
|
"description": "Interface module for WordPress. The package contains shared functionality across the modern JavaScript-based WordPress screens.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -33,20 +33,20 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@babel/runtime": "^7.13.10",
|
|
35
35
|
"@wordpress/a11y": "^3.2.3",
|
|
36
|
-
"@wordpress/components": "^
|
|
37
|
-
"@wordpress/compose": "^5.0.
|
|
38
|
-
"@wordpress/data": "^6.1.
|
|
36
|
+
"@wordpress/components": "^19.0.0",
|
|
37
|
+
"@wordpress/compose": "^5.0.4",
|
|
38
|
+
"@wordpress/data": "^6.1.2",
|
|
39
39
|
"@wordpress/deprecated": "^3.2.2",
|
|
40
|
-
"@wordpress/element": "^4.0.
|
|
40
|
+
"@wordpress/element": "^4.0.3",
|
|
41
41
|
"@wordpress/i18n": "^4.2.3",
|
|
42
|
-
"@wordpress/icons": "^6.0.
|
|
43
|
-
"@wordpress/plugins": "^4.0.
|
|
44
|
-
"@wordpress/viewport": "^4.0.
|
|
42
|
+
"@wordpress/icons": "^6.0.1",
|
|
43
|
+
"@wordpress/plugins": "^4.0.4",
|
|
44
|
+
"@wordpress/viewport": "^4.0.4",
|
|
45
45
|
"classnames": "^2.3.1",
|
|
46
46
|
"lodash": "^4.17.21"
|
|
47
47
|
},
|
|
48
48
|
"publishConfig": {
|
|
49
49
|
"access": "public"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "157f4ae53ab98e574af01f72213ae5a9613159ff"
|
|
52
52
|
}
|
|
@@ -35,13 +35,21 @@
|
|
|
35
35
|
margin-top: 0;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
-
h2
|
|
39
|
-
h3 {
|
|
38
|
+
h2 {
|
|
40
39
|
font-size: $default-font-size;
|
|
41
40
|
color: $gray-900;
|
|
42
41
|
margin-bottom: 1.5em;
|
|
43
42
|
}
|
|
44
43
|
|
|
44
|
+
// Subheading style.
|
|
45
|
+
h3 {
|
|
46
|
+
font-size: 11px;
|
|
47
|
+
text-transform: uppercase;
|
|
48
|
+
font-weight: 500;
|
|
49
|
+
color: $gray-900;
|
|
50
|
+
margin-bottom: 1.5em;
|
|
51
|
+
}
|
|
52
|
+
|
|
45
53
|
hr {
|
|
46
54
|
border-top: none;
|
|
47
55
|
border-bottom: 1px solid $gray-100;
|