@wordpress/base-styles 6.12.1-next.8fd3f8831.0 → 6.12.2-next.76cff8c98.0

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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 6.12.1-next.0 (2026-01-07)
6
+
7
+ ### Internal
8
+
9
+ - Remove outdated vendor prefix properties ([#74213](https://github.com/WordPress/gutenberg/pull/74213)).
10
+
5
11
  ## 6.12.0 (2025-11-26)
6
12
 
7
13
  ## 6.11.0 (2025-11-12)
package/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  ## Gutenberg
2
2
 
3
- Copyright 2016-2025 by the contributors
3
+ Copyright 2016-2026 by the contributors
4
4
 
5
5
  **License for Contributions (on and after April 15, 2021)**
6
6
 
@@ -10,10 +10,6 @@
10
10
  display: block;
11
11
  position: absolute;
12
12
  -webkit-touch-callout: none;
13
- -webkit-user-select: none;
14
- -khtml-user-select: none;
15
- -moz-user-select: none;
16
- -ms-user-select: none;
17
13
  user-select: none;
18
14
  pointer-events: none;
19
15
 
package/_mixins.scss CHANGED
@@ -283,15 +283,7 @@
283
283
  }
284
284
 
285
285
  // Use opacity to work in various editor styles.
286
- &::-webkit-input-placeholder {
287
- color: colors.$dark-gray-placeholder;
288
- }
289
-
290
- &::-moz-placeholder {
291
- color: colors.$dark-gray-placeholder;
292
- }
293
-
294
- &:-ms-input-placeholder {
286
+ &::placeholder {
295
287
  color: colors.$dark-gray-placeholder;
296
288
  }
297
289
  }
@@ -313,11 +305,6 @@
313
305
  &:checked {
314
306
  background: var(--wp-admin-theme-color);
315
307
  border-color: var(--wp-admin-theme-color);
316
-
317
- // Hide default checkbox styles in IE.
318
- &::-ms-check {
319
- opacity: 0;
320
- }
321
308
  }
322
309
 
323
310
  &:checked::before,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/base-styles",
3
- "version": "6.12.1-next.8fd3f8831.0",
3
+ "version": "6.12.2-next.76cff8c98.0",
4
4
  "description": "Base SCSS utilities and variables for WordPress.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -45,5 +45,5 @@
45
45
  "publishConfig": {
46
46
  "access": "public"
47
47
  },
48
- "gitHead": "e582b351bc4c4b8734bb087f63a3beec9875c3c7"
48
+ "gitHead": "368727f14b858e75179e140967c2d9ec965c8790"
49
49
  }