@wordpress/block-library 9.0.3 → 9.0.5
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/build/block/index.js +5 -1
- package/build/block/index.js.map +1 -1
- package/build/image/image.js +14 -15
- package/build/image/image.js.map +1 -1
- package/build/list-item/hooks/use-merge.js +8 -1
- package/build/list-item/hooks/use-merge.js.map +1 -1
- package/build/media-text/edit.js +3 -2
- package/build/media-text/edit.js.map +1 -1
- package/build/query/edit/inspector-controls/index.js +3 -2
- package/build/query/edit/inspector-controls/index.js.map +1 -1
- package/build/utils/hooks.js +12 -0
- package/build/utils/hooks.js.map +1 -1
- package/build-module/block/index.js +5 -1
- package/build-module/block/index.js.map +1 -1
- package/build-module/image/image.js +9 -10
- package/build-module/image/image.js.map +1 -1
- package/build-module/list-item/hooks/use-merge.js +8 -1
- package/build-module/list-item/hooks/use-merge.js.map +1 -1
- package/build-module/media-text/edit.js +3 -2
- package/build-module/media-text/edit.js.map +1 -1
- package/build-module/query/edit/inspector-controls/index.js +3 -2
- package/build-module/query/edit/inspector-controls/index.js.map +1 -1
- package/build-module/utils/hooks.js +11 -0
- package/build-module/utils/hooks.js.map +1 -1
- package/build-style/audio/style-rtl.css +1 -1
- package/build-style/audio/style.css +1 -1
- package/build-style/audio/theme-rtl.css +2 -2
- package/build-style/audio/theme.css +2 -2
- package/build-style/editor-rtl.css +0 -12
- package/build-style/editor.css +0 -12
- package/build-style/embed/style-rtl.css +1 -1
- package/build-style/embed/style.css +1 -1
- package/build-style/embed/theme-rtl.css +2 -2
- package/build-style/embed/theme.css +2 -2
- package/build-style/image/editor-rtl.css +0 -12
- package/build-style/image/editor.css +0 -12
- package/build-style/image/style-rtl.css +1 -1
- package/build-style/image/style.css +1 -1
- package/build-style/navigation/style-rtl.css +1 -0
- package/build-style/navigation/style.css +1 -0
- package/build-style/reset-rtl.css +1 -5
- package/build-style/reset.css +1 -5
- package/build-style/social-links/style-rtl.css +91 -91
- package/build-style/social-links/style.css +91 -91
- package/build-style/style-rtl.css +96 -95
- package/build-style/style.css +96 -95
- package/build-style/table/theme-rtl.css +2 -2
- package/build-style/table/theme.css +2 -2
- package/build-style/theme-rtl.css +8 -8
- package/build-style/theme.css +8 -8
- package/build-style/video/style-rtl.css +1 -1
- package/build-style/video/style.css +1 -1
- package/build-style/video/theme-rtl.css +2 -2
- package/build-style/video/theme.css +2 -2
- package/package.json +12 -12
- package/src/audio/style.scss +1 -1
- package/src/audio/theme.scss +1 -1
- package/src/block/block.json +5 -1
- package/src/embed/style.scss +1 -1
- package/src/embed/theme.scss +1 -1
- package/src/image/editor.scss +0 -13
- package/src/image/image.js +21 -11
- package/src/image/style.scss +1 -1
- package/src/list-item/hooks/use-merge.js +19 -5
- package/src/media-text/edit.js +3 -2
- package/src/media-text/index.php +68 -18
- package/src/navigation/index.php +5 -3
- package/src/navigation/style.scss +1 -0
- package/src/query/edit/inspector-controls/index.js +3 -2
- package/src/reset.scss +11 -12
- package/src/social-links/style.scss +2 -2
- package/src/table/theme.scss +1 -1
- package/src/utils/hooks.js +14 -0
- package/src/video/style.scss +1 -1
- package/src/video/theme.scss +1 -1
- package/build/utils/constants.js +0 -15
- package/build/utils/constants.js.map +0 -1
- package/build-module/utils/constants.js +0 -9
- package/build-module/utils/constants.js.map +0 -1
- package/src/utils/constants.js +0 -8
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
.wp-block-audio {
|
|
110
110
|
box-sizing: border-box;
|
|
111
111
|
}
|
|
112
|
-
.wp-block-audio figcaption {
|
|
112
|
+
.wp-block-audio :where(figcaption) {
|
|
113
113
|
margin-top: 0.5em;
|
|
114
114
|
margin-bottom: 1em;
|
|
115
115
|
}
|
|
@@ -1010,7 +1010,7 @@ section.wp-block-cover-image > h2,
|
|
|
1010
1010
|
.wp-block-embed {
|
|
1011
1011
|
overflow-wrap: break-word;
|
|
1012
1012
|
}
|
|
1013
|
-
.wp-block-embed figcaption {
|
|
1013
|
+
.wp-block-embed :where(figcaption) {
|
|
1014
1014
|
margin-top: 0.5em;
|
|
1015
1015
|
margin-bottom: 1em;
|
|
1016
1016
|
}
|
|
@@ -1572,7 +1572,7 @@ h6.has-text-align-left[style*=writing-mode]:where([style*="vertical-lr"]) {
|
|
|
1572
1572
|
margin-right: auto;
|
|
1573
1573
|
margin-left: auto;
|
|
1574
1574
|
}
|
|
1575
|
-
.wp-block-image figcaption {
|
|
1575
|
+
.wp-block-image :where(figcaption) {
|
|
1576
1576
|
margin-top: 0.5em;
|
|
1577
1577
|
margin-bottom: 1em;
|
|
1578
1578
|
}
|
|
@@ -2275,6 +2275,7 @@ button.wp-block-navigation-item__content {
|
|
|
2275
2275
|
color: currentColor;
|
|
2276
2276
|
font-size: inherit;
|
|
2277
2277
|
font-family: inherit;
|
|
2278
|
+
letter-spacing: inherit;
|
|
2278
2279
|
line-height: inherit;
|
|
2279
2280
|
font-style: inherit;
|
|
2280
2281
|
font-weight: inherit;
|
|
@@ -3403,326 +3404,326 @@ ul.wp-block-rss.is-grid li {
|
|
|
3403
3404
|
fill: currentColor;
|
|
3404
3405
|
}
|
|
3405
3406
|
|
|
3406
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link {
|
|
3407
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link {
|
|
3407
3408
|
background-color: #f0f0f0;
|
|
3408
3409
|
color: #444;
|
|
3409
3410
|
}
|
|
3410
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon {
|
|
3411
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-amazon {
|
|
3411
3412
|
background-color: #f90;
|
|
3412
3413
|
color: #fff;
|
|
3413
3414
|
}
|
|
3414
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp {
|
|
3415
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bandcamp {
|
|
3415
3416
|
background-color: #1ea0c3;
|
|
3416
3417
|
color: #fff;
|
|
3417
3418
|
}
|
|
3418
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance {
|
|
3419
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-behance {
|
|
3419
3420
|
background-color: #0757fe;
|
|
3420
3421
|
color: #fff;
|
|
3421
3422
|
}
|
|
3422
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bluesky {
|
|
3423
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bluesky {
|
|
3423
3424
|
background-color: #0a7aff;
|
|
3424
3425
|
color: #fff;
|
|
3425
3426
|
}
|
|
3426
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen {
|
|
3427
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-codepen {
|
|
3427
3428
|
background-color: #1e1f26;
|
|
3428
3429
|
color: #fff;
|
|
3429
3430
|
}
|
|
3430
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart {
|
|
3431
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-deviantart {
|
|
3431
3432
|
background-color: #02e49b;
|
|
3432
3433
|
color: #fff;
|
|
3433
3434
|
}
|
|
3434
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble {
|
|
3435
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dribbble {
|
|
3435
3436
|
background-color: #e94c89;
|
|
3436
3437
|
color: #fff;
|
|
3437
3438
|
}
|
|
3438
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox {
|
|
3439
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dropbox {
|
|
3439
3440
|
background-color: #4280ff;
|
|
3440
3441
|
color: #fff;
|
|
3441
3442
|
}
|
|
3442
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy {
|
|
3443
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-etsy {
|
|
3443
3444
|
background-color: #f45800;
|
|
3444
3445
|
color: #fff;
|
|
3445
3446
|
}
|
|
3446
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook {
|
|
3447
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-facebook {
|
|
3447
3448
|
background-color: #1778f2;
|
|
3448
3449
|
color: #fff;
|
|
3449
3450
|
}
|
|
3450
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx {
|
|
3451
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-fivehundredpx {
|
|
3451
3452
|
background-color: #000;
|
|
3452
3453
|
color: #fff;
|
|
3453
3454
|
}
|
|
3454
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr {
|
|
3455
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-flickr {
|
|
3455
3456
|
background-color: #0461dd;
|
|
3456
3457
|
color: #fff;
|
|
3457
3458
|
}
|
|
3458
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare {
|
|
3459
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-foursquare {
|
|
3459
3460
|
background-color: #e65678;
|
|
3460
3461
|
color: #fff;
|
|
3461
3462
|
}
|
|
3462
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github {
|
|
3463
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-github {
|
|
3463
3464
|
background-color: #24292d;
|
|
3464
3465
|
color: #fff;
|
|
3465
3466
|
}
|
|
3466
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads {
|
|
3467
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-goodreads {
|
|
3467
3468
|
background-color: #eceadd;
|
|
3468
3469
|
color: #382110;
|
|
3469
3470
|
}
|
|
3470
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google {
|
|
3471
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-google {
|
|
3471
3472
|
background-color: #ea4434;
|
|
3472
3473
|
color: #fff;
|
|
3473
3474
|
}
|
|
3474
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-gravatar {
|
|
3475
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-gravatar {
|
|
3475
3476
|
background-color: #1d4fc4;
|
|
3476
3477
|
color: #fff;
|
|
3477
3478
|
}
|
|
3478
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram {
|
|
3479
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-instagram {
|
|
3479
3480
|
background-color: #f00075;
|
|
3480
3481
|
color: #fff;
|
|
3481
3482
|
}
|
|
3482
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm {
|
|
3483
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-lastfm {
|
|
3483
3484
|
background-color: #e21b24;
|
|
3484
3485
|
color: #fff;
|
|
3485
3486
|
}
|
|
3486
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin {
|
|
3487
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-linkedin {
|
|
3487
3488
|
background-color: #0d66c2;
|
|
3488
3489
|
color: #fff;
|
|
3489
3490
|
}
|
|
3490
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon {
|
|
3491
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-mastodon {
|
|
3491
3492
|
background-color: #3288d4;
|
|
3492
3493
|
color: #fff;
|
|
3493
3494
|
}
|
|
3494
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium {
|
|
3495
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-medium {
|
|
3495
3496
|
background-color: #000;
|
|
3496
3497
|
color: #fff;
|
|
3497
3498
|
}
|
|
3498
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup {
|
|
3499
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-meetup {
|
|
3499
3500
|
background-color: #f6405f;
|
|
3500
3501
|
color: #fff;
|
|
3501
3502
|
}
|
|
3502
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-patreon {
|
|
3503
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-patreon {
|
|
3503
3504
|
background-color: #000;
|
|
3504
3505
|
color: #fff;
|
|
3505
3506
|
}
|
|
3506
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest {
|
|
3507
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pinterest {
|
|
3507
3508
|
background-color: #e60122;
|
|
3508
3509
|
color: #fff;
|
|
3509
3510
|
}
|
|
3510
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket {
|
|
3511
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pocket {
|
|
3511
3512
|
background-color: #ef4155;
|
|
3512
3513
|
color: #fff;
|
|
3513
3514
|
}
|
|
3514
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit {
|
|
3515
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-reddit {
|
|
3515
3516
|
background-color: #ff4500;
|
|
3516
3517
|
color: #fff;
|
|
3517
3518
|
}
|
|
3518
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype {
|
|
3519
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-skype {
|
|
3519
3520
|
background-color: #0478d7;
|
|
3520
3521
|
color: #fff;
|
|
3521
3522
|
}
|
|
3522
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat {
|
|
3523
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-snapchat {
|
|
3523
3524
|
background-color: #fefc00;
|
|
3524
3525
|
color: #fff;
|
|
3525
3526
|
stroke: #000;
|
|
3526
3527
|
}
|
|
3527
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud {
|
|
3528
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-soundcloud {
|
|
3528
3529
|
background-color: #ff5600;
|
|
3529
3530
|
color: #fff;
|
|
3530
3531
|
}
|
|
3531
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify {
|
|
3532
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-spotify {
|
|
3532
3533
|
background-color: #1bd760;
|
|
3533
3534
|
color: #fff;
|
|
3534
3535
|
}
|
|
3535
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-telegram {
|
|
3536
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-telegram {
|
|
3536
3537
|
background-color: #2aabee;
|
|
3537
3538
|
color: #fff;
|
|
3538
3539
|
}
|
|
3539
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-threads {
|
|
3540
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-threads {
|
|
3540
3541
|
background-color: #000;
|
|
3541
3542
|
color: #fff;
|
|
3542
3543
|
}
|
|
3543
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tiktok {
|
|
3544
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tiktok {
|
|
3544
3545
|
background-color: #000;
|
|
3545
3546
|
color: #fff;
|
|
3546
3547
|
}
|
|
3547
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr {
|
|
3548
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tumblr {
|
|
3548
3549
|
background-color: #011835;
|
|
3549
3550
|
color: #fff;
|
|
3550
3551
|
}
|
|
3551
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch {
|
|
3552
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitch {
|
|
3552
3553
|
background-color: #6440a4;
|
|
3553
3554
|
color: #fff;
|
|
3554
3555
|
}
|
|
3555
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter {
|
|
3556
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitter {
|
|
3556
3557
|
background-color: #1da1f2;
|
|
3557
3558
|
color: #fff;
|
|
3558
3559
|
}
|
|
3559
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo {
|
|
3560
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vimeo {
|
|
3560
3561
|
background-color: #1eb7ea;
|
|
3561
3562
|
color: #fff;
|
|
3562
3563
|
}
|
|
3563
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk {
|
|
3564
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vk {
|
|
3564
3565
|
background-color: #4680c2;
|
|
3565
3566
|
color: #fff;
|
|
3566
3567
|
}
|
|
3567
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress {
|
|
3568
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-wordpress {
|
|
3568
3569
|
background-color: #3499cd;
|
|
3569
3570
|
color: #fff;
|
|
3570
3571
|
}
|
|
3571
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-whatsapp {
|
|
3572
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-whatsapp {
|
|
3572
3573
|
background-color: #25d366;
|
|
3573
3574
|
color: #fff;
|
|
3574
3575
|
}
|
|
3575
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-x {
|
|
3576
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-x {
|
|
3576
3577
|
background-color: #000;
|
|
3577
3578
|
color: #fff;
|
|
3578
3579
|
}
|
|
3579
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp {
|
|
3580
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-yelp {
|
|
3580
3581
|
background-color: #d32422;
|
|
3581
3582
|
color: #fff;
|
|
3582
3583
|
}
|
|
3583
|
-
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube {
|
|
3584
|
+
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-youtube {
|
|
3584
3585
|
background-color: #f00;
|
|
3585
3586
|
color: #fff;
|
|
3586
3587
|
}
|
|
3587
3588
|
|
|
3588
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link {
|
|
3589
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link {
|
|
3589
3590
|
background: none;
|
|
3590
3591
|
}
|
|
3591
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link svg {
|
|
3592
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link svg {
|
|
3592
3593
|
width: 1.25em;
|
|
3593
3594
|
height: 1.25em;
|
|
3594
3595
|
}
|
|
3595
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-amazon {
|
|
3596
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-amazon {
|
|
3596
3597
|
color: #f90;
|
|
3597
3598
|
}
|
|
3598
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp {
|
|
3599
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bandcamp {
|
|
3599
3600
|
color: #1ea0c3;
|
|
3600
3601
|
}
|
|
3601
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-behance {
|
|
3602
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-behance {
|
|
3602
3603
|
color: #0757fe;
|
|
3603
3604
|
}
|
|
3604
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-bluesky {
|
|
3605
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bluesky {
|
|
3605
3606
|
color: #0a7aff;
|
|
3606
3607
|
}
|
|
3607
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-codepen {
|
|
3608
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-codepen {
|
|
3608
3609
|
color: #1e1f26;
|
|
3609
3610
|
}
|
|
3610
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-deviantart {
|
|
3611
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-deviantart {
|
|
3611
3612
|
color: #02e49b;
|
|
3612
3613
|
}
|
|
3613
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-dribbble {
|
|
3614
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dribbble {
|
|
3614
3615
|
color: #e94c89;
|
|
3615
3616
|
}
|
|
3616
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-dropbox {
|
|
3617
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dropbox {
|
|
3617
3618
|
color: #4280ff;
|
|
3618
3619
|
}
|
|
3619
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-etsy {
|
|
3620
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-etsy {
|
|
3620
3621
|
color: #f45800;
|
|
3621
3622
|
}
|
|
3622
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-facebook {
|
|
3623
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-facebook {
|
|
3623
3624
|
color: #1778f2;
|
|
3624
3625
|
}
|
|
3625
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx {
|
|
3626
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-fivehundredpx {
|
|
3626
3627
|
color: #000;
|
|
3627
3628
|
}
|
|
3628
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-flickr {
|
|
3629
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-flickr {
|
|
3629
3630
|
color: #0461dd;
|
|
3630
3631
|
}
|
|
3631
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-foursquare {
|
|
3632
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-foursquare {
|
|
3632
3633
|
color: #e65678;
|
|
3633
3634
|
}
|
|
3634
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-github {
|
|
3635
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-github {
|
|
3635
3636
|
color: #24292d;
|
|
3636
3637
|
}
|
|
3637
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-goodreads {
|
|
3638
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-goodreads {
|
|
3638
3639
|
color: #382110;
|
|
3639
3640
|
}
|
|
3640
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-google {
|
|
3641
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-google {
|
|
3641
3642
|
color: #ea4434;
|
|
3642
3643
|
}
|
|
3643
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-gravatar {
|
|
3644
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-gravatar {
|
|
3644
3645
|
color: #1d4fc4;
|
|
3645
3646
|
}
|
|
3646
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-instagram {
|
|
3647
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-instagram {
|
|
3647
3648
|
color: #f00075;
|
|
3648
3649
|
}
|
|
3649
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-lastfm {
|
|
3650
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-lastfm {
|
|
3650
3651
|
color: #e21b24;
|
|
3651
3652
|
}
|
|
3652
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-linkedin {
|
|
3653
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-linkedin {
|
|
3653
3654
|
color: #0d66c2;
|
|
3654
3655
|
}
|
|
3655
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-mastodon {
|
|
3656
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-mastodon {
|
|
3656
3657
|
color: #3288d4;
|
|
3657
3658
|
}
|
|
3658
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-medium {
|
|
3659
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-medium {
|
|
3659
3660
|
color: #000;
|
|
3660
3661
|
}
|
|
3661
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-meetup {
|
|
3662
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-meetup {
|
|
3662
3663
|
color: #f6405f;
|
|
3663
3664
|
}
|
|
3664
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-patreon {
|
|
3665
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-patreon {
|
|
3665
3666
|
color: #000;
|
|
3666
3667
|
}
|
|
3667
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-pinterest {
|
|
3668
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pinterest {
|
|
3668
3669
|
color: #e60122;
|
|
3669
3670
|
}
|
|
3670
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-pocket {
|
|
3671
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pocket {
|
|
3671
3672
|
color: #ef4155;
|
|
3672
3673
|
}
|
|
3673
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-reddit {
|
|
3674
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-reddit {
|
|
3674
3675
|
color: #ff4500;
|
|
3675
3676
|
}
|
|
3676
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-skype {
|
|
3677
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-skype {
|
|
3677
3678
|
color: #0478d7;
|
|
3678
3679
|
}
|
|
3679
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-snapchat {
|
|
3680
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-snapchat {
|
|
3680
3681
|
color: #fff;
|
|
3681
3682
|
stroke: #000;
|
|
3682
3683
|
}
|
|
3683
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud {
|
|
3684
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-soundcloud {
|
|
3684
3685
|
color: #ff5600;
|
|
3685
3686
|
}
|
|
3686
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-spotify {
|
|
3687
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-spotify {
|
|
3687
3688
|
color: #1bd760;
|
|
3688
3689
|
}
|
|
3689
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-telegram {
|
|
3690
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-telegram {
|
|
3690
3691
|
color: #2aabee;
|
|
3691
3692
|
}
|
|
3692
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-threads {
|
|
3693
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-threads {
|
|
3693
3694
|
color: #000;
|
|
3694
3695
|
}
|
|
3695
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-tiktok {
|
|
3696
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tiktok {
|
|
3696
3697
|
color: #000;
|
|
3697
3698
|
}
|
|
3698
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-tumblr {
|
|
3699
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tumblr {
|
|
3699
3700
|
color: #011835;
|
|
3700
3701
|
}
|
|
3701
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-twitch {
|
|
3702
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitch {
|
|
3702
3703
|
color: #6440a4;
|
|
3703
3704
|
}
|
|
3704
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-twitter {
|
|
3705
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitter {
|
|
3705
3706
|
color: #1da1f2;
|
|
3706
3707
|
}
|
|
3707
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-vimeo {
|
|
3708
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vimeo {
|
|
3708
3709
|
color: #1eb7ea;
|
|
3709
3710
|
}
|
|
3710
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-vk {
|
|
3711
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vk {
|
|
3711
3712
|
color: #4680c2;
|
|
3712
3713
|
}
|
|
3713
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-whatsapp {
|
|
3714
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-whatsapp {
|
|
3714
3715
|
color: #25d366;
|
|
3715
3716
|
}
|
|
3716
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-wordpress {
|
|
3717
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-wordpress {
|
|
3717
3718
|
color: #3499cd;
|
|
3718
3719
|
}
|
|
3719
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-x {
|
|
3720
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-x {
|
|
3720
3721
|
color: #000;
|
|
3721
3722
|
}
|
|
3722
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-yelp {
|
|
3723
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-yelp {
|
|
3723
3724
|
color: #d32422;
|
|
3724
3725
|
}
|
|
3725
|
-
.wp-block-social-links.is-style-logos-only .wp-social-link-youtube {
|
|
3726
|
+
:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-youtube {
|
|
3726
3727
|
color: #f00;
|
|
3727
3728
|
}
|
|
3728
3729
|
|
|
@@ -3977,7 +3978,7 @@ pre.wp-block-verse {
|
|
|
3977
3978
|
.wp-block-video.aligncenter {
|
|
3978
3979
|
text-align: center;
|
|
3979
3980
|
}
|
|
3980
|
-
.wp-block-video figcaption {
|
|
3981
|
+
.wp-block-video :where(figcaption) {
|
|
3981
3982
|
margin-top: 0.5em;
|
|
3982
3983
|
margin-bottom: 1em;
|
|
3983
3984
|
}
|