From fb089f3c146c44c9ffab4274b99d90cfcaaece63 Mon Sep 17 00:00:00 2001
From: samba <samba@autistici.org>
Date: Sun, 19 May 2019 22:12:55 +0200
Subject: [PATCH] [auto] theme: twentynineteen 1.4

---
 .../class-twentynineteen-walker-comment.php   |   9 +-
 wp-content/themes/twentynineteen/header.php   |   3 +-
 wp-content/themes/twentynineteen/image.php    |   2 +-
 .../twentynineteen/inc/color-patterns.php     |  14 +-
 .../twentynineteen/inc/template-tags.php      |  18 +
 wp-content/themes/twentynineteen/print.css    |   3 +-
 wp-content/themes/twentynineteen/print.scss   | 358 +++++++-------
 wp-content/themes/twentynineteen/readme.txt   |  10 +-
 .../twentynineteen/sass/blocks/_blocks.scss   |  86 ++--
 .../sass/mixins/_mixins-master.scss           |   6 +-
 .../navigation/_menu-main-navigation.scss     |   7 +-
 .../sass/site/footer/_site-footer.scss        |  10 +
 .../site/header/_site-featured-image.scss     |   4 +-
 .../sass/site/header/_site-header.scss        |   5 +
 .../sass/site/primary/_comments.scss          |   5 +
 .../sass/typography/_headings.scss            |   7 +
 .../themes/twentynineteen/style-editor.css    |   3 +-
 .../themes/twentynineteen/style-editor.scss   |   3 +-
 .../themes/twentynineteen/style-rtl.css       | 436 +++++++++++++-----
 wp-content/themes/twentynineteen/style.css    | 152 +++---
 wp-content/themes/twentynineteen/style.scss   |   4 +-
 .../content/content-excerpt.php               |   2 +-
 .../template-parts/content/content-single.php |   2 +-
 .../template-parts/content/content.php        |   2 +-
 .../template-parts/header/entry-header.php    |   2 +-
 25 files changed, 693 insertions(+), 460 deletions(-)

diff --git a/wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php b/wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php
index 42fe89fb5..6237a3608 100644
--- a/wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php
+++ b/wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php
@@ -33,10 +33,9 @@ class TwentyNineteen_Walker_Comment extends Walker_Comment {
 				<footer class="comment-meta">
 					<div class="comment-author vcard">
 						<?php
-						$comment_author_link = get_comment_author_link( $comment );
-						$comment_author_url  = get_comment_author_url( $comment );
-						$comment_author      = get_comment_author( $comment );
-						$avatar              = get_avatar( $comment, $args['avatar_size'] );
+						$comment_author_url = get_comment_author_url( $comment );
+						$comment_author     = get_comment_author( $comment );
+						$avatar             = get_avatar( $comment, $args['avatar_size'] );
 						if ( 0 != $args['avatar_size'] ) {
 							if ( empty( $comment_author_url ) ) {
 								echo $avatar;
@@ -71,7 +70,7 @@ class TwentyNineteen_Walker_Comment extends Walker_Comment {
 									),
 								)
 							),
-							'<b class="fn">' . get_comment_author_link( $comment ) . '</b>'
+							'<b class="fn">' . $comment_author . '</b>'
 						);
 
 						if ( ! empty( $comment_author_url ) ) {
diff --git a/wp-content/themes/twentynineteen/header.php b/wp-content/themes/twentynineteen/header.php
index 53827f8ed..b960fd4a9 100644
--- a/wp-content/themes/twentynineteen/header.php
+++ b/wp-content/themes/twentynineteen/header.php
@@ -20,6 +20,7 @@
 </head>
 
 <body <?php body_class(); ?>>
+<?php wp_body_open(); ?>
 <div id="page" class="site">
 	<a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'twentynineteen' ); ?></a>
 
@@ -27,7 +28,7 @@
 
 			<div class="site-branding-container">
 				<?php get_template_part( 'template-parts/header/site', 'branding' ); ?>
-			</div><!-- .layout-wrap -->
+			</div><!-- .site-branding-container -->
 
 			<?php if ( is_singular() && twentynineteen_can_show_post_thumbnail() ) : ?>
 				<div class="site-featured-image">
diff --git a/wp-content/themes/twentynineteen/image.php b/wp-content/themes/twentynineteen/image.php
index c27e26f6b..000983ce7 100644
--- a/wp-content/themes/twentynineteen/image.php
+++ b/wp-content/themes/twentynineteen/image.php
@@ -78,7 +78,7 @@ get_header();
 						<?php twentynineteen_entry_footer(); ?>
 
 					</footer><!-- .entry-footer -->
-				</article><!-- #post-## -->
+				</article><!-- #post-<?php the_ID(); ?> -->
 
 				<?php
 				// Parent post navigation.
diff --git a/wp-content/themes/twentynineteen/inc/color-patterns.php b/wp-content/themes/twentynineteen/inc/color-patterns.php
index be9b5efca..c16c1d6a4 100644
--- a/wp-content/themes/twentynineteen/inc/color-patterns.php
+++ b/wp-content/themes/twentynineteen/inc/color-patterns.php
@@ -132,20 +132,14 @@ function twentynineteen_custom_colors_css() {
 		}
 
 		/*
-		 * Set left border color for:
+		 * Set border color for:
 		 * wp block quote
+		 * :focus
 		 */
 		blockquote,
 		.entry .entry-content blockquote,
 		.entry .entry-content .wp-block-quote:not(.is-large),
-		.entry .entry-content .wp-block-quote:not(.is-style-large) {
-			border-left-color: hsl( ' . $primary_color . ', ' . $saturation . ', ' . $lightness . ' ); /* base: #0073a8; */
-		}
-
-		/*
-		 * Set border color for:
-		 * :focus
-		 */
+		.entry .entry-content .wp-block-quote:not(.is-style-large),
 		input[type="text"]:focus,
 		input[type="email"]:focus,
 		input[type="url"]:focus,
@@ -231,7 +225,7 @@ function twentynineteen_custom_colors_css() {
 
 		.editor-block-list__layout .editor-block-list__block .wp-block-quote:not(.is-large):not(.is-style-large),
 		.editor-styles-wrapper .editor-block-list__layout .wp-block-freeform blockquote {
-			border-left: 2px solid hsl( ' . $primary_color . ', ' . $saturation . ', ' . $lightness . ' ); /* base: #0073a8; */
+			border-color: hsl( ' . $primary_color . ', ' . $saturation . ', ' . $lightness . ' ); /* base: #0073a8; */
 		}
 
 		.editor-block-list__layout .editor-block-list__block .wp-block-pullquote.is-style-solid-color:not(.has-background-color) {
diff --git a/wp-content/themes/twentynineteen/inc/template-tags.php b/wp-content/themes/twentynineteen/inc/template-tags.php
index e99ef8696..6b210bcaa 100644
--- a/wp-content/themes/twentynineteen/inc/template-tags.php
+++ b/wp-content/themes/twentynineteen/inc/template-tags.php
@@ -238,3 +238,21 @@ if ( ! function_exists( 'twentynineteen_the_posts_navigation' ) ) :
 		);
 	}
 endif;
+
+if ( ! function_exists( 'wp_body_open' ) ) :
+	/**
+	 * Fire the wp_body_open action.
+	 *
+	 * Added for backwards compatibility to support pre 5.2.0 WordPress versions.
+	 *
+	 * @since Twenty Nineteen 1.4
+	 */
+	function wp_body_open() {
+		/**
+		 * Triggered after the opening <body> tag.
+		 *
+		 * @since Twenty Nineteen 1.4
+		 */
+		do_action( 'wp_body_open' );
+	}
+endif;
diff --git a/wp-content/themes/twentynineteen/print.css b/wp-content/themes/twentynineteen/print.css
index a614a66e4..ffc481cba 100644
--- a/wp-content/themes/twentynineteen/print.css
+++ b/wp-content/themes/twentynineteen/print.css
@@ -1,4 +1,3 @@
-@charset "UTF-8";
 /*
 Theme Name: Twenty Nineteen
 
@@ -9,7 +8,7 @@ Andreas Hecht in https://www.jotform.com/blog/css-perfect-print-stylesheet-98272
 >>> TABLE OF CONTENTS:
 ----------------------------------------------------------------
 # Margins
-# Typography÷
+# Typography
 # Page breaks
 # Links
 # Visibility
diff --git a/wp-content/themes/twentynineteen/print.scss b/wp-content/themes/twentynineteen/print.scss
index bca05d6dc..47976da65 100644
--- a/wp-content/themes/twentynineteen/print.scss
+++ b/wp-content/themes/twentynineteen/print.scss
@@ -9,7 +9,7 @@ Andreas Hecht in https://www.jotform.com/blog/css-perfect-print-stylesheet-98272
 >>> TABLE OF CONTENTS:
 ----------------------------------------------------------------
 # Margins
-# Typography÷
+# Typography
 # Page breaks
 # Links
 # Visibility
@@ -17,182 +17,182 @@ Andreas Hecht in https://www.jotform.com/blog/css-perfect-print-stylesheet-98272
 
 @media print {
 
-  /* Margins */
-
-  @page {
-    margin: 2cm;
-  }
-
-  .entry {
-    margin-top: 1em;
-  }
-
-  .entry .entry-header, .site-footer .site-info {
-    margin: 0;
-  }
-
-  /* Fonts */
-
-  body {
-    font: 13pt Georgia, "Times New Roman", Times, serif;
-    line-height: 1.3;
-    background: #fff !important;
-    color: #000;
-  }
-
-  h1 {
-    font-size: 24pt;
-  }
-
-  h2, 
-  h3, 
-  h4, 
-  .has-regular-font-size, 
-  .has-large-font-size, 
-  h2.author-title, 
-  p.author-bio, 
-  .comments-title, h3 {
-    font-size: 14pt;
-    margin-top: 25px;
-  }
-
-  /* Page breaks */
-
-  a {
-    page-break-inside: avoid
-  }
-
-  blockquote {
-    page-break-inside: avoid;
-  }
-
-  h1, 
-  h2, 
-  h3, 
-  h4, 
-  h5, 
-  h6 {
-    page-break-after: avoid;
-    page-break-inside: avoid
-  }
-
-  img {
-    page-break-inside: avoid;
-    page-break-after: avoid;
-  }
-
-  table, pre {
-    page-break-inside: avoid;
-  }
-
-  ul, ol, dl {
-    page-break-before: avoid;
-  }
-
-  /* Links */
-
-  a:link, a:visited, a {
-    background: transparent;
-    font-weight: bold;
-    text-decoration: underline;
-    text-align: left;
-  }
-
-  a {
-    page-break-inside: avoid;
-  }
-
-  a[href^=http]:after {
-    content: " < " attr(href) "> ";
-  }
-
-  a:after > img {
-    content: "";
-  }
-
-  article a[href^="#"]:after {
-    content: "";
-  }
-
-  a:not(:local-link):after {
-    content: " < " attr(href) "> ";
-  }
-
-  /* Visibility */
-  .main-navigation,
-  .site-title + .main-navigation,
-  .social-navigation,
-  .site-branding-container:before, 
-  .entry .entry-title:before, 
-  .entry-footer, 
-  .author-description:before, 
-  .post-navigation,
-  .widget-area,
-  .comment-form-flex,
-  .comment-reply,
-  .comment .comment-metadata .edit-link {
-    display: none;
-  }
-
-  .entry .entry-content .wp-block-button .wp-block-button__link,
-  .entry .entry-content .button {
-    color: #000;
-    background: none;
-  }
-
-  /* Site Header (With Featured Image) */
-  .site-header.featured-image {
-    min-height: 0;
-    
-    .main-navigation a, 
-    .main-navigation a + svg, 
-    .social-navigation a, 
-    .site-title a, 
-    .site-featured-image a,
-    .site-branding .site-title, 
-    .site-branding .site-description, 
-    .main-navigation a:after, 
-    .main-navigation .main-menu > li.menu-item-has-children:after, 
-    .main-navigation li, 
-    .social-navigation li, 
-    .entry-meta, 
-    .entry-title,
-    &#masthead .site-title a {
-      color: #000;
-      text-shadow: none;
-    }
-
-    .site-featured-image .entry-header,
-    .site-branding-container {
-      margin-top: 0;
-      margin-bottom: 0;
-    }
-
-    .site-featured-image .post-thumbnail img {
-      position: relative;
-      height: initial;
-      width: initial;
-      object-fit: none;
-      min-width: 0;
-      min-height: 0;
-      max-width: 100%;
-      margin-top: 1rem;
-    }
-  }
-  
-  /* Remove image filters from featured image */
-  .image-filters-enabled {
-
-    *:after {
-      display: none !important;
-    }
-
-    .site-header.featured-image .site-featured-image:before {
-      display: none;
-    }
-
-    .site-header.featured-image .site-featured-image .post-thumbnail img {
-      filter: none;
-    }
-  }
+	/* Margins */
+
+	@page {
+		margin: 2cm;
+	}
+
+	.entry {
+		margin-top: 1em;
+	}
+
+	.entry .entry-header, .site-footer .site-info {
+		margin: 0;
+	}
+
+	/* Fonts */
+
+	body {
+		font: 13pt Georgia, "Times New Roman", Times, serif;
+		line-height: 1.3;
+		background: #fff !important;
+		color: #000;
+	}
+
+	h1 {
+		font-size: 24pt;
+	}
+
+	h2,
+	h3,
+	h4,
+	.has-regular-font-size, 
+	.has-large-font-size, 
+	h2.author-title, 
+	p.author-bio, 
+	.comments-title, h3 {
+		font-size: 14pt;
+		margin-top: 25px;
+	}
+
+	/* Page breaks */
+
+	a {
+		page-break-inside: avoid
+	}
+
+	blockquote {
+		page-break-inside: avoid;
+	}
+
+	h1,
+	h2,
+	h3,
+	h4,
+	h5,
+	h6 {
+		page-break-after: avoid;
+		page-break-inside: avoid
+	}
+
+	img {
+		page-break-inside: avoid;
+		page-break-after: avoid;
+	}
+
+	table, pre {
+		page-break-inside: avoid;
+	}
+
+	ul, ol, dl {
+		page-break-before: avoid;
+	}
+
+	/* Links */
+
+	a:link, a:visited, a {
+		background: transparent;
+		font-weight: bold;
+		text-decoration: underline;
+		text-align: left;
+	}
+
+	a {
+		page-break-inside: avoid;
+	}
+
+	a[href^=http]:after {
+		content: " < " attr(href) "> ";
+	}
+
+	a:after > img {
+		content: "";
+	}
+
+	article a[href^="#"]:after {
+		content: "";
+	}
+
+	a:not(:local-link):after {
+		content: " < " attr(href) "> ";
+	}
+
+	/* Visibility */
+	.main-navigation,
+	.site-title + .main-navigation,
+	.social-navigation,
+	.site-branding-container:before,
+	.entry .entry-title:before,
+	.entry-footer,
+	.author-description:before,
+	.post-navigation,
+	.widget-area,
+	.comment-form-flex,
+	.comment-reply,
+	.comment .comment-metadata .edit-link {
+		display: none;
+	}
+
+	.entry .entry-content .wp-block-button .wp-block-button__link,
+	.entry .entry-content .button {
+		color: #000;
+		background: none;
+	}
+
+	/* Site Header (With Featured Image) */
+	.site-header.featured-image {
+		min-height: 0;
+
+		.main-navigation a,
+		.main-navigation a + svg,
+		.social-navigation a,
+		.site-title a,
+		.site-featured-image a,
+		.site-branding .site-title,
+		.site-branding .site-description,
+		.main-navigation a:after,
+		.main-navigation .main-menu > li.menu-item-has-children:after,
+		.main-navigation li,
+		.social-navigation li,
+		.entry-meta,
+		.entry-title,
+		&#masthead .site-title a {
+			color: #000;
+			text-shadow: none;
+		}
+
+		.site-featured-image .entry-header,
+		.site-branding-container {
+			margin-top: 0;
+			margin-bottom: 0;
+		}
+
+		.site-featured-image .post-thumbnail img {
+			position: relative;
+			height: initial;
+			width: initial;
+			object-fit: none;
+			min-width: 0;
+			min-height: 0;
+			max-width: 100%;
+			margin-top: 1rem;
+		}
+	}
+
+	/* Remove image filters from featured image */
+	.image-filters-enabled {
+
+		*:after {
+			display: none !important;
+		}
+
+		.site-header.featured-image .site-featured-image:before {
+			display: none;
+		}
+
+		.site-header.featured-image .site-featured-image .post-thumbnail img {
+			filter: none;
+		}
+	}
 }
\ No newline at end of file
diff --git a/wp-content/themes/twentynineteen/readme.txt b/wp-content/themes/twentynineteen/readme.txt
index 6aa606df9..ab446a9a4 100644
--- a/wp-content/themes/twentynineteen/readme.txt
+++ b/wp-content/themes/twentynineteen/readme.txt
@@ -1,9 +1,10 @@
 === Twenty Nineteen ===
-Contributors: the WordPress team
+Contributors: wordpressdotorg
 Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready
 Requires at least: 4.9.6
 Tested up to: WordPress 5.0
-Stable tag: 1.3
+Requires PHP: 5.2.4
+Stable tag: 1.4
 License: GPLv2 or later
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 
@@ -14,6 +15,11 @@ Our 2019 default theme is designed to show off the power of the block editor. It
 
 == Changelog ==
 
+= 1.4 =
+* Released: May 7, 2019
+
+https://codex.wordpress.org/Twenty_Nineteen_Theme_Changelog#Version_1.4
+
 = 1.3 =
 * Released: February 21, 2019
 
diff --git a/wp-content/themes/twentynineteen/sass/blocks/_blocks.scss b/wp-content/themes/twentynineteen/sass/blocks/_blocks.scss
index 4dd493ace..034a16378 100644
--- a/wp-content/themes/twentynineteen/sass/blocks/_blocks.scss
+++ b/wp-content/themes/twentynineteen/sass/blocks/_blocks.scss
@@ -452,7 +452,8 @@
 
 		&:not(.is-large),
 		&:not(.is-style-large) {
-			border-left: 2px solid $color__link;
+			border-width: 2px;
+			border-color: $color__link;
 			padding-top: 0;
 			padding-bottom: 0;
 		}
@@ -512,7 +513,7 @@
 		}
 
 		.aligncenter {
-			
+
 			@include postContentMaxWidth();
 
 			@include media(tablet) {
@@ -733,46 +734,29 @@
 		code {
 			font-size: $font__size-md;
 			white-space: pre-wrap;
-    	                word-break: break-word;
+			word-break: break-word;
 		}
 	}
 
 	//! Columns
 	.wp-block-columns {
 
-		&.alignfull {
-			padding-left: $size__spacing-unit;
-			padding-right: $size__spacing-unit;
-		}
-
-		@include media(mobile) {
-			flex-wrap: nowrap;
-		}
-
-		@include media(tablet) {
-			.wp-block-column > * {
-
-				&:first-child {
-					margin-top: 0;
-				}
+		.wp-block-column > * {
 
-				&:last-child {
-					margin-bottom: 0;
-				}
+			&:first-child {
+				margin-top: 0;
 			}
 
-			&[class*='has-'] > * {
-				margin-right: $size__spacing-unit;
-
-				&:last-child {
-					margin-right: 0;
-				}
+			&:last-child {
+				margin-bottom: 0;
 			}
+		}
+
+		@include media(tablet) {
+			flex-wrap: nowrap;
 
-			&.alignfull,
-			&.alignfull .wp-block-column {
-				padding-left: calc(2 * #{$size__spacing-unit});
-				padding-right: calc(2 * #{$size__spacing-unit});
+			.wp-block-column:not(:first-child) {
+				margin-left: 32px;
 			}
 		}
 	}
@@ -837,14 +821,14 @@
 		// Use white text against these backgrounds by default.
 		color: $color__background-body;
 
-		p,
-		h1,
-		h2,
-		h3,
-		h4,
-		h5,
-		h6,
-		a {
+		> p,
+		> h1,
+		> h2,
+		> h3,
+		> h4,
+		> h5,
+		> h6,
+		> a {
 			color: $color__background-body;
 		}
 	}
@@ -853,14 +837,14 @@
 		color: $color__text-main;
 
 		// Use dark gray text against this background by default.
-		p,
-		h1,
-		h2,
-		h3,
-		h4,
-		h5,
-		h6,
-		a {
+		> p,
+		> h1,
+		> h2,
+		> h3,
+		> h4,
+		> h5,
+		> h6,
+		> a {
 			color: $color__text-main;
 		}
 	}
@@ -893,25 +877,25 @@
 	//! Custom foreground colors
 	.has-primary-color,
 	.wp-block-pullquote.is-style-solid-color blockquote.has-primary-color,
-	.wp-block-pullquote.is-style-solid-color blockquote.has-primary-color p {
+	.wp-block-pullquote.is-style-solid-color blockquote.has-primary-color > p {
 		color: $color__link;
 	}
 
 	.has-secondary-color,
 	.wp-block-pullquote.is-style-solid-color blockquote.has-secondary-color,
-	.wp-block-pullquote.is-style-solid-color blockquote.has-secondary-color p {
+	.wp-block-pullquote.is-style-solid-color blockquote.has-secondary-color > p {
 		color: $color__border-link-hover;
 	}
 
 	.has-dark-gray-color,
 	.wp-block-pullquote.is-style-solid-color blockquote.has-dark-gray-color,
-	.wp-block-pullquote.is-style-solid-color blockquote.has-dark-gray-color p {
+	.wp-block-pullquote.is-style-solid-color blockquote.has-dark-gray-color > p {
 		color: $color__text-main;
 	}
 
 	.has-light-gray-color,
 	.wp-block-pullquote.is-style-solid-color blockquote.has-light-gray-color,
-	.wp-block-pullquote.is-style-solid-color blockquote.has-light-gray-color p {
+	.wp-block-pullquote.is-style-solid-color blockquote.has-light-gray-color > p {
 		color: $color__text-light;
 	}
 
diff --git a/wp-content/themes/twentynineteen/sass/mixins/_mixins-master.scss b/wp-content/themes/twentynineteen/sass/mixins/_mixins-master.scss
index 71ca4f689..16065f94b 100644
--- a/wp-content/themes/twentynineteen/sass/mixins/_mixins-master.scss
+++ b/wp-content/themes/twentynineteen/sass/mixins/_mixins-master.scss
@@ -82,9 +82,9 @@
 
 @mixin box-shadow( $size ) {
 	box-shadow:
-		0 0 0 $size $color__text-light inset,         	// Original border.
-		0 0 0 ($size + 1px) $color__text-light inset, 	// Antialiasing, inner edge.
-		0 0 1px 0 rgba( $color__text-light, 0.7 );  	// Antialiasing, outer edge.
+		0 0 0 $size $color__text-light inset,           // Original border.
+		0 0 0 ($size + 1px) $color__text-light inset,   // Antialiasing, inner edge.
+		0 0 1px 0 rgba( $color__text-light, 0.7 );      // Antialiasing, outer edge.
 }
 
 /* Calculates maximum width for post content */
diff --git a/wp-content/themes/twentynineteen/sass/navigation/_menu-main-navigation.scss b/wp-content/themes/twentynineteen/sass/navigation/_menu-main-navigation.scss
index 61d943a77..4bbd9cff5 100644
--- a/wp-content/themes/twentynineteen/sass/navigation/_menu-main-navigation.scss
+++ b/wp-content/themes/twentynineteen/sass/navigation/_menu-main-navigation.scss
@@ -26,8 +26,9 @@
 		background: transparent;
 		color: inherit;
 		cursor: pointer;
-		transition: background 250ms ease-in-out,
-		            transform 150ms ease;
+		transition:
+			background 250ms ease-in-out,
+			transform 150ms ease;
 		-webkit-appearance: none;
 		-moz-appearance: none;
 
@@ -447,7 +448,7 @@
 			position: fixed;
 			z-index: 100000; /* Make sure appears above mobile admin bar */
 			width: 100vw;
-			height:  100vh;
+			height: 100vh;
 			max-width: 100vw;
 			transform: translateX(+100%);
 			animation: slide_in_right 0.3s forwards;
diff --git a/wp-content/themes/twentynineteen/sass/site/footer/_site-footer.scss b/wp-content/themes/twentynineteen/sass/site/footer/_site-footer.scss
index 1f0f37894..4e1379461 100644
--- a/wp-content/themes/twentynineteen/sass/site/footer/_site-footer.scss
+++ b/wp-content/themes/twentynineteen/sass/site/footer/_site-footer.scss
@@ -15,7 +15,12 @@
 		display: flex;
 		flex-wrap: wrap;
 		.widget {
+			-webkit-hyphens: auto;
+			-moz-hyphens: auto;
+			-ms-hyphens: auto;
+			hyphens: auto;
 			width: 100%;
+			word-wrap: break-word;
 			@include media(desktop) {
 				margin-right: calc(3 * #{$size__spacing-unit});
 				width: calc(50% - (3 * #{$size__spacing-unit}));
@@ -25,6 +30,11 @@
 
 	.site-info {
 		color: $color__text-light;
+		-webkit-hyphens: auto;
+		-moz-hyphens: auto;
+		-ms-hyphens: auto;
+		hyphens: auto;
+		word-wrap: break-word;
 
 		a {
 			color: inherit;
diff --git a/wp-content/themes/twentynineteen/sass/site/header/_site-featured-image.scss b/wp-content/themes/twentynineteen/sass/site/header/_site-featured-image.scss
index 125994384..5e67aa242 100644
--- a/wp-content/themes/twentynineteen/sass/site/header/_site-featured-image.scss
+++ b/wp-content/themes/twentynineteen/sass/site/header/_site-featured-image.scss
@@ -242,7 +242,7 @@
 		mix-blend-mode: multiply;
 		opacity: .7;
 
-	  	/* When image filters are active, a blue overlay is added. */
+		/* When image filters are active, a blue overlay is added. */
 		.image-filters-enabled & {
 			background: $color__link;
 			opacity: .8;
@@ -256,7 +256,7 @@
 	}
 
 	/* Fourth layer: overlay. */
-  	.image-filters-enabled & .site-branding-container:after {
+	.image-filters-enabled & .site-branding-container:after {
 		background: rgba(0, 0, 0, 0.35);
 		mix-blend-mode: overlay;
 		opacity: 0.5;
diff --git a/wp-content/themes/twentynineteen/sass/site/header/_site-header.scss b/wp-content/themes/twentynineteen/sass/site/header/_site-header.scss
index 22ab10349..3f723ba9e 100644
--- a/wp-content/themes/twentynineteen/sass/site/header/_site-header.scss
+++ b/wp-content/themes/twentynineteen/sass/site/header/_site-header.scss
@@ -30,7 +30,12 @@
 .site-branding {
 
 	color: $color__text-light;
+	-webkit-hyphens: auto;
+	-moz-hyphens: auto;
+	-ms-hyphens: auto;
+	hyphens: auto;
 	position: relative;
+	word-wrap: break-word;
 
 	@include media(tablet) {
 		margin: 0 $size__site-margins;
diff --git a/wp-content/themes/twentynineteen/sass/site/primary/_comments.scss b/wp-content/themes/twentynineteen/sass/site/primary/_comments.scss
index 411db4494..ec9fb12b9 100644
--- a/wp-content/themes/twentynineteen/sass/site/primary/_comments.scss
+++ b/wp-content/themes/twentynineteen/sass/site/primary/_comments.scss
@@ -7,7 +7,12 @@
 }
 
 .comments-area {
+	-webkit-hyphens: auto;
+	-moz-hyphens: auto;
+	-ms-hyphens: auto;
+	hyphens: auto;
 	margin: calc(2 * #{$size__spacing-unit}) $size__spacing-unit;
+	word-wrap: break-word;
 	@include postContentMaxWidth();
 
 	@include media(tablet) {
diff --git a/wp-content/themes/twentynineteen/sass/typography/_headings.scss b/wp-content/themes/twentynineteen/sass/typography/_headings.scss
index b0f737f9d..21ea2e447 100644
--- a/wp-content/themes/twentynineteen/sass/typography/_headings.scss
+++ b/wp-content/themes/twentynineteen/sass/typography/_headings.scss
@@ -145,13 +145,20 @@ h6 {
 .error-404 .page-title,
 .comments-title,
 blockquote {
+	-webkit-hyphens: auto;
+	-moz-hyphens: auto;
+	-ms-hyphens: auto;
 	hyphens: auto;
 	word-break: break-word;
+	word-wrap: break-word;
 }
 
 /* Do not hyphenate entry title on tablet view and bigger. */
 .entry-title {
 	@include media(tablet) {
+		-webkit-hyphens: none;
+		-moz-hyphens: none;
+		-ms-hyphens: none;
 		hyphens: none;
 	}
 }
diff --git a/wp-content/themes/twentynineteen/style-editor.css b/wp-content/themes/twentynineteen/style-editor.css
index 56c511bc1..51a0f4e7a 100644
--- a/wp-content/themes/twentynineteen/style-editor.css
+++ b/wp-content/themes/twentynineteen/style-editor.css
@@ -940,7 +940,8 @@ figcaption,
 
 /** === Blockquote === */
 .wp-block-quote:not(.is-large):not(.is-style-large) {
-  border-left: 2px solid #0073aa;
+  border-width: 2px;
+  border-color: #0073aa;
 }
 
 .wp-block-quote.is-large, .wp-block-quote.is-style-large {
diff --git a/wp-content/themes/twentynineteen/style-editor.scss b/wp-content/themes/twentynineteen/style-editor.scss
index 9047a82b7..43ce4a94b 100644
--- a/wp-content/themes/twentynineteen/style-editor.scss
+++ b/wp-content/themes/twentynineteen/style-editor.scss
@@ -391,7 +391,8 @@ figcaption,
 .wp-block-quote {
 
 	&:not(.is-large):not(.is-style-large) {
-		border-left: 2px solid $color__link;
+		border-width: 2px;
+		border-color: $color__link;
 	}
 
 	&.is-large,
diff --git a/wp-content/themes/twentynineteen/style-rtl.css b/wp-content/themes/twentynineteen/style-rtl.css
index 756b19793..a626c385b 100644
--- a/wp-content/themes/twentynineteen/style-rtl.css
+++ b/wp-content/themes/twentynineteen/style-rtl.css
@@ -1,12 +1,12 @@
 @charset "UTF-8";
 /*
 Theme Name: Twenty Nineteen
-Theme URI: https://github.com/WordPress/twentynineteen
+Theme URI: https://wordpress.org/themes/twentynineteen/
 Author: the WordPress team
 Author URI: https://wordpress.org/
 Description: Our 2019 default theme is designed to show off the power of the block editor. It features custom styles for all the default blocks, and is built so that what you see in the editor looks like what you'll see on your website. Twenty Nineteen is designed to be adaptable to a wide range of websites, whether you’re running a photo blog, launching a new business, or supporting a non-profit. Featuring ample whitespace and modern sans-serif headlines paired with classic serif body text, it's built to be beautiful on all screen sizes.
 Requires at least: WordPress 4.9.6
-Version: 1.3
+Version: 1.4
 License: GNU General Public License v2 or later
 License URI: LICENSE
 Text Domain: twentynineteen
@@ -1232,61 +1232,235 @@ input:lang(zh-CN)[type="submit"], .comment-navigation .nav-previous:lang(zh-CN),
   font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", "Microsoft YaHei New", STHeiti Light, sans-serif;
 }
 
-body:lang(bn-BD, hi-IN, mr, ne-NP), button:lang(bn-BD, hi-IN, mr, ne-NP),
-input:lang(bn-BD, hi-IN, mr, ne-NP),
-select:lang(bn-BD, hi-IN, mr, ne-NP),
-optgroup:lang(bn-BD, hi-IN, mr, ne-NP),
-textarea:lang(bn-BD, hi-IN, mr, ne-NP), .author-description .author-link:lang(bn-BD, hi-IN, mr, ne-NP),
-.comment-metadata:lang(bn-BD, hi-IN, mr, ne-NP),
-.comment-reply-link:lang(bn-BD, hi-IN, mr, ne-NP),
-.comments-title:lang(bn-BD, hi-IN, mr, ne-NP),
-.comment-author .fn:lang(bn-BD, hi-IN, mr, ne-NP),
-.discussion-meta-info:lang(bn-BD, hi-IN, mr, ne-NP),
-.entry-meta:lang(bn-BD, hi-IN, mr, ne-NP),
-.entry-footer:lang(bn-BD, hi-IN, mr, ne-NP),
-.main-navigation:lang(bn-BD, hi-IN, mr, ne-NP),
-.no-comments:lang(bn-BD, hi-IN, mr, ne-NP),
-.not-found .page-title:lang(bn-BD, hi-IN, mr, ne-NP),
-.error-404 .page-title:lang(bn-BD, hi-IN, mr, ne-NP),
-.post-navigation .post-title:lang(bn-BD, hi-IN, mr, ne-NP),
-.page-links:lang(bn-BD, hi-IN, mr, ne-NP),
-.page-description:lang(bn-BD, hi-IN, mr, ne-NP),
-.pagination .nav-links:lang(bn-BD, hi-IN, mr, ne-NP),
-.sticky-post:lang(bn-BD, hi-IN, mr, ne-NP),
-.site-title:lang(bn-BD, hi-IN, mr, ne-NP),
-.site-info:lang(bn-BD, hi-IN, mr, ne-NP),
-#cancel-comment-reply-link:lang(bn-BD, hi-IN, mr, ne-NP),
-h1:lang(bn-BD, hi-IN, mr, ne-NP),
-h2:lang(bn-BD, hi-IN, mr, ne-NP),
-h3:lang(bn-BD, hi-IN, mr, ne-NP),
-h4:lang(bn-BD, hi-IN, mr, ne-NP),
-h5:lang(bn-BD, hi-IN, mr, ne-NP),
-h6:lang(bn-BD, hi-IN, mr, ne-NP), .page-title:lang(bn-BD, hi-IN, mr, ne-NP), blockquote cite:lang(bn-BD, hi-IN, mr, ne-NP), table:lang(bn-BD, hi-IN, mr, ne-NP), .button:lang(bn-BD, hi-IN, mr, ne-NP),
-input:lang(bn-BD, hi-IN, mr, ne-NP)[type="button"],
-input:lang(bn-BD, hi-IN, mr, ne-NP)[type="reset"],
-input:lang(bn-BD, hi-IN, mr, ne-NP)[type="submit"], .comment-navigation .nav-previous:lang(bn-BD, hi-IN, mr, ne-NP),
-.comment-navigation .nav-next:lang(bn-BD, hi-IN, mr, ne-NP), .comment-list .pingback .comment-body:lang(bn-BD, hi-IN, mr, ne-NP),
-.comment-list .trackback .comment-body:lang(bn-BD, hi-IN, mr, ne-NP), .comment-list .pingback .comment-body .comment-edit-link:lang(bn-BD, hi-IN, mr, ne-NP),
-.comment-list .trackback .comment-body .comment-edit-link:lang(bn-BD, hi-IN, mr, ne-NP), .comment-form .comment-notes:lang(bn-BD, hi-IN, mr, ne-NP),
-.comment-form label:lang(bn-BD, hi-IN, mr, ne-NP), .widget_archive ul li:lang(bn-BD, hi-IN, mr, ne-NP),
-.widget_categories ul li:lang(bn-BD, hi-IN, mr, ne-NP),
-.widget_meta ul li:lang(bn-BD, hi-IN, mr, ne-NP),
-.widget_nav_menu ul li:lang(bn-BD, hi-IN, mr, ne-NP),
-.widget_pages ul li:lang(bn-BD, hi-IN, mr, ne-NP),
-.widget_recent_comments ul li:lang(bn-BD, hi-IN, mr, ne-NP),
-.widget_recent_entries ul li:lang(bn-BD, hi-IN, mr, ne-NP),
-.widget_rss ul li:lang(bn-BD, hi-IN, mr, ne-NP), .widget_tag_cloud .tagcloud:lang(bn-BD, hi-IN, mr, ne-NP), .entry .entry-content .wp-block-button .wp-block-button__link:lang(bn-BD, hi-IN, mr, ne-NP), .entry .entry-content .wp-block-archives li:lang(bn-BD, hi-IN, mr, ne-NP),
-.entry .entry-content .wp-block-categories li:lang(bn-BD, hi-IN, mr, ne-NP),
-.entry .entry-content .wp-block-latest-posts li:lang(bn-BD, hi-IN, mr, ne-NP), .entry .entry-content .wp-block-verse:lang(bn-BD, hi-IN, mr, ne-NP), .entry .entry-content .has-drop-cap:lang(bn-BD, hi-IN, mr, ne-NP):not(:focus):first-letter, .entry .entry-content .wp-block-pullquote cite:lang(bn-BD, hi-IN, mr, ne-NP), .entry .entry-content .wp-block-cover-image .wp-block-cover-image-text:lang(bn-BD, hi-IN, mr, ne-NP),
-.entry .entry-content .wp-block-cover-image .wp-block-cover-text:lang(bn-BD, hi-IN, mr, ne-NP),
-.entry .entry-content .wp-block-cover-image h2:lang(bn-BD, hi-IN, mr, ne-NP),
-.entry .entry-content .wp-block-cover .wp-block-cover-image-text:lang(bn-BD, hi-IN, mr, ne-NP),
-.entry .entry-content .wp-block-cover .wp-block-cover-text:lang(bn-BD, hi-IN, mr, ne-NP),
-.entry .entry-content .wp-block-cover h2:lang(bn-BD, hi-IN, mr, ne-NP), .entry .entry-content .wp-block-audio figcaption:lang(bn-BD, hi-IN, mr, ne-NP),
-.entry .entry-content .wp-block-video figcaption:lang(bn-BD, hi-IN, mr, ne-NP),
-.entry .entry-content .wp-block-image figcaption:lang(bn-BD, hi-IN, mr, ne-NP),
-.entry .entry-content .wp-block-gallery .blocks-gallery-image figcaption:lang(bn-BD, hi-IN, mr, ne-NP),
-.entry .entry-content .wp-block-gallery .blocks-gallery-item figcaption:lang(bn-BD, hi-IN, mr, ne-NP), .entry .entry-content .wp-block-file:lang(bn-BD, hi-IN, mr, ne-NP), .entry .entry-content .wp-block-file .wp-block-file__button:lang(bn-BD, hi-IN, mr, ne-NP), .entry .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-meta:lang(bn-BD, hi-IN, mr, ne-NP), .wp-caption-text:lang(bn-BD, hi-IN, mr, ne-NP), .gallery-caption:lang(bn-BD, hi-IN, mr, ne-NP) {
+body:lang(bn-BD), button:lang(bn-BD),
+input:lang(bn-BD),
+select:lang(bn-BD),
+optgroup:lang(bn-BD),
+textarea:lang(bn-BD), .author-description .author-link:lang(bn-BD),
+.comment-metadata:lang(bn-BD),
+.comment-reply-link:lang(bn-BD),
+.comments-title:lang(bn-BD),
+.comment-author .fn:lang(bn-BD),
+.discussion-meta-info:lang(bn-BD),
+.entry-meta:lang(bn-BD),
+.entry-footer:lang(bn-BD),
+.main-navigation:lang(bn-BD),
+.no-comments:lang(bn-BD),
+.not-found .page-title:lang(bn-BD),
+.error-404 .page-title:lang(bn-BD),
+.post-navigation .post-title:lang(bn-BD),
+.page-links:lang(bn-BD),
+.page-description:lang(bn-BD),
+.pagination .nav-links:lang(bn-BD),
+.sticky-post:lang(bn-BD),
+.site-title:lang(bn-BD),
+.site-info:lang(bn-BD),
+#cancel-comment-reply-link:lang(bn-BD),
+h1:lang(bn-BD),
+h2:lang(bn-BD),
+h3:lang(bn-BD),
+h4:lang(bn-BD),
+h5:lang(bn-BD),
+h6:lang(bn-BD), .page-title:lang(bn-BD), blockquote cite:lang(bn-BD), table:lang(bn-BD), .button:lang(bn-BD),
+input:lang(bn-BD)[type="button"],
+input:lang(bn-BD)[type="reset"],
+input:lang(bn-BD)[type="submit"], .comment-navigation .nav-previous:lang(bn-BD),
+.comment-navigation .nav-next:lang(bn-BD), .comment-list .pingback .comment-body:lang(bn-BD),
+.comment-list .trackback .comment-body:lang(bn-BD), .comment-list .pingback .comment-body .comment-edit-link:lang(bn-BD),
+.comment-list .trackback .comment-body .comment-edit-link:lang(bn-BD), .comment-form .comment-notes:lang(bn-BD),
+.comment-form label:lang(bn-BD), .widget_archive ul li:lang(bn-BD),
+.widget_categories ul li:lang(bn-BD),
+.widget_meta ul li:lang(bn-BD),
+.widget_nav_menu ul li:lang(bn-BD),
+.widget_pages ul li:lang(bn-BD),
+.widget_recent_comments ul li:lang(bn-BD),
+.widget_recent_entries ul li:lang(bn-BD),
+.widget_rss ul li:lang(bn-BD), .widget_tag_cloud .tagcloud:lang(bn-BD), .entry .entry-content .wp-block-button .wp-block-button__link:lang(bn-BD), .entry .entry-content .wp-block-archives li:lang(bn-BD),
+.entry .entry-content .wp-block-categories li:lang(bn-BD),
+.entry .entry-content .wp-block-latest-posts li:lang(bn-BD), .entry .entry-content .wp-block-verse:lang(bn-BD), .entry .entry-content .has-drop-cap:lang(bn-BD):not(:focus):first-letter, .entry .entry-content .wp-block-pullquote cite:lang(bn-BD), .entry .entry-content .wp-block-cover-image .wp-block-cover-image-text:lang(bn-BD),
+.entry .entry-content .wp-block-cover-image .wp-block-cover-text:lang(bn-BD),
+.entry .entry-content .wp-block-cover-image h2:lang(bn-BD),
+.entry .entry-content .wp-block-cover .wp-block-cover-image-text:lang(bn-BD),
+.entry .entry-content .wp-block-cover .wp-block-cover-text:lang(bn-BD),
+.entry .entry-content .wp-block-cover h2:lang(bn-BD), .entry .entry-content .wp-block-audio figcaption:lang(bn-BD),
+.entry .entry-content .wp-block-video figcaption:lang(bn-BD),
+.entry .entry-content .wp-block-image figcaption:lang(bn-BD),
+.entry .entry-content .wp-block-gallery .blocks-gallery-image figcaption:lang(bn-BD),
+.entry .entry-content .wp-block-gallery .blocks-gallery-item figcaption:lang(bn-BD), .entry .entry-content .wp-block-file:lang(bn-BD), .entry .entry-content .wp-block-file .wp-block-file__button:lang(bn-BD), .entry .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-meta:lang(bn-BD), .wp-caption-text:lang(bn-BD), .gallery-caption:lang(bn-BD) {
+  font-family: Arial, sans-serif;
+}
+
+body:lang(hi-IN), button:lang(hi-IN),
+input:lang(hi-IN),
+select:lang(hi-IN),
+optgroup:lang(hi-IN),
+textarea:lang(hi-IN), .author-description .author-link:lang(hi-IN),
+.comment-metadata:lang(hi-IN),
+.comment-reply-link:lang(hi-IN),
+.comments-title:lang(hi-IN),
+.comment-author .fn:lang(hi-IN),
+.discussion-meta-info:lang(hi-IN),
+.entry-meta:lang(hi-IN),
+.entry-footer:lang(hi-IN),
+.main-navigation:lang(hi-IN),
+.no-comments:lang(hi-IN),
+.not-found .page-title:lang(hi-IN),
+.error-404 .page-title:lang(hi-IN),
+.post-navigation .post-title:lang(hi-IN),
+.page-links:lang(hi-IN),
+.page-description:lang(hi-IN),
+.pagination .nav-links:lang(hi-IN),
+.sticky-post:lang(hi-IN),
+.site-title:lang(hi-IN),
+.site-info:lang(hi-IN),
+#cancel-comment-reply-link:lang(hi-IN),
+h1:lang(hi-IN),
+h2:lang(hi-IN),
+h3:lang(hi-IN),
+h4:lang(hi-IN),
+h5:lang(hi-IN),
+h6:lang(hi-IN), .page-title:lang(hi-IN), blockquote cite:lang(hi-IN), table:lang(hi-IN), .button:lang(hi-IN),
+input:lang(hi-IN)[type="button"],
+input:lang(hi-IN)[type="reset"],
+input:lang(hi-IN)[type="submit"], .comment-navigation .nav-previous:lang(hi-IN),
+.comment-navigation .nav-next:lang(hi-IN), .comment-list .pingback .comment-body:lang(hi-IN),
+.comment-list .trackback .comment-body:lang(hi-IN), .comment-list .pingback .comment-body .comment-edit-link:lang(hi-IN),
+.comment-list .trackback .comment-body .comment-edit-link:lang(hi-IN), .comment-form .comment-notes:lang(hi-IN),
+.comment-form label:lang(hi-IN), .widget_archive ul li:lang(hi-IN),
+.widget_categories ul li:lang(hi-IN),
+.widget_meta ul li:lang(hi-IN),
+.widget_nav_menu ul li:lang(hi-IN),
+.widget_pages ul li:lang(hi-IN),
+.widget_recent_comments ul li:lang(hi-IN),
+.widget_recent_entries ul li:lang(hi-IN),
+.widget_rss ul li:lang(hi-IN), .widget_tag_cloud .tagcloud:lang(hi-IN), .entry .entry-content .wp-block-button .wp-block-button__link:lang(hi-IN), .entry .entry-content .wp-block-archives li:lang(hi-IN),
+.entry .entry-content .wp-block-categories li:lang(hi-IN),
+.entry .entry-content .wp-block-latest-posts li:lang(hi-IN), .entry .entry-content .wp-block-verse:lang(hi-IN), .entry .entry-content .has-drop-cap:lang(hi-IN):not(:focus):first-letter, .entry .entry-content .wp-block-pullquote cite:lang(hi-IN), .entry .entry-content .wp-block-cover-image .wp-block-cover-image-text:lang(hi-IN),
+.entry .entry-content .wp-block-cover-image .wp-block-cover-text:lang(hi-IN),
+.entry .entry-content .wp-block-cover-image h2:lang(hi-IN),
+.entry .entry-content .wp-block-cover .wp-block-cover-image-text:lang(hi-IN),
+.entry .entry-content .wp-block-cover .wp-block-cover-text:lang(hi-IN),
+.entry .entry-content .wp-block-cover h2:lang(hi-IN), .entry .entry-content .wp-block-audio figcaption:lang(hi-IN),
+.entry .entry-content .wp-block-video figcaption:lang(hi-IN),
+.entry .entry-content .wp-block-image figcaption:lang(hi-IN),
+.entry .entry-content .wp-block-gallery .blocks-gallery-image figcaption:lang(hi-IN),
+.entry .entry-content .wp-block-gallery .blocks-gallery-item figcaption:lang(hi-IN), .entry .entry-content .wp-block-file:lang(hi-IN), .entry .entry-content .wp-block-file .wp-block-file__button:lang(hi-IN), .entry .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-meta:lang(hi-IN), .wp-caption-text:lang(hi-IN), .gallery-caption:lang(hi-IN) {
+  font-family: Arial, sans-serif;
+}
+
+body:lang(mr), button:lang(mr),
+input:lang(mr),
+select:lang(mr),
+optgroup:lang(mr),
+textarea:lang(mr), .author-description .author-link:lang(mr),
+.comment-metadata:lang(mr),
+.comment-reply-link:lang(mr),
+.comments-title:lang(mr),
+.comment-author .fn:lang(mr),
+.discussion-meta-info:lang(mr),
+.entry-meta:lang(mr),
+.entry-footer:lang(mr),
+.main-navigation:lang(mr),
+.no-comments:lang(mr),
+.not-found .page-title:lang(mr),
+.error-404 .page-title:lang(mr),
+.post-navigation .post-title:lang(mr),
+.page-links:lang(mr),
+.page-description:lang(mr),
+.pagination .nav-links:lang(mr),
+.sticky-post:lang(mr),
+.site-title:lang(mr),
+.site-info:lang(mr),
+#cancel-comment-reply-link:lang(mr),
+h1:lang(mr),
+h2:lang(mr),
+h3:lang(mr),
+h4:lang(mr),
+h5:lang(mr),
+h6:lang(mr), .page-title:lang(mr), blockquote cite:lang(mr), table:lang(mr), .button:lang(mr),
+input:lang(mr)[type="button"],
+input:lang(mr)[type="reset"],
+input:lang(mr)[type="submit"], .comment-navigation .nav-previous:lang(mr),
+.comment-navigation .nav-next:lang(mr), .comment-list .pingback .comment-body:lang(mr),
+.comment-list .trackback .comment-body:lang(mr), .comment-list .pingback .comment-body .comment-edit-link:lang(mr),
+.comment-list .trackback .comment-body .comment-edit-link:lang(mr), .comment-form .comment-notes:lang(mr),
+.comment-form label:lang(mr), .widget_archive ul li:lang(mr),
+.widget_categories ul li:lang(mr),
+.widget_meta ul li:lang(mr),
+.widget_nav_menu ul li:lang(mr),
+.widget_pages ul li:lang(mr),
+.widget_recent_comments ul li:lang(mr),
+.widget_recent_entries ul li:lang(mr),
+.widget_rss ul li:lang(mr), .widget_tag_cloud .tagcloud:lang(mr), .entry .entry-content .wp-block-button .wp-block-button__link:lang(mr), .entry .entry-content .wp-block-archives li:lang(mr),
+.entry .entry-content .wp-block-categories li:lang(mr),
+.entry .entry-content .wp-block-latest-posts li:lang(mr), .entry .entry-content .wp-block-verse:lang(mr), .entry .entry-content .has-drop-cap:lang(mr):not(:focus):first-letter, .entry .entry-content .wp-block-pullquote cite:lang(mr), .entry .entry-content .wp-block-cover-image .wp-block-cover-image-text:lang(mr),
+.entry .entry-content .wp-block-cover-image .wp-block-cover-text:lang(mr),
+.entry .entry-content .wp-block-cover-image h2:lang(mr),
+.entry .entry-content .wp-block-cover .wp-block-cover-image-text:lang(mr),
+.entry .entry-content .wp-block-cover .wp-block-cover-text:lang(mr),
+.entry .entry-content .wp-block-cover h2:lang(mr), .entry .entry-content .wp-block-audio figcaption:lang(mr),
+.entry .entry-content .wp-block-video figcaption:lang(mr),
+.entry .entry-content .wp-block-image figcaption:lang(mr),
+.entry .entry-content .wp-block-gallery .blocks-gallery-image figcaption:lang(mr),
+.entry .entry-content .wp-block-gallery .blocks-gallery-item figcaption:lang(mr), .entry .entry-content .wp-block-file:lang(mr), .entry .entry-content .wp-block-file .wp-block-file__button:lang(mr), .entry .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-meta:lang(mr), .wp-caption-text:lang(mr), .gallery-caption:lang(mr) {
+  font-family: Arial, sans-serif;
+}
+
+body:lang(ne-NP), button:lang(ne-NP),
+input:lang(ne-NP),
+select:lang(ne-NP),
+optgroup:lang(ne-NP),
+textarea:lang(ne-NP), .author-description .author-link:lang(ne-NP),
+.comment-metadata:lang(ne-NP),
+.comment-reply-link:lang(ne-NP),
+.comments-title:lang(ne-NP),
+.comment-author .fn:lang(ne-NP),
+.discussion-meta-info:lang(ne-NP),
+.entry-meta:lang(ne-NP),
+.entry-footer:lang(ne-NP),
+.main-navigation:lang(ne-NP),
+.no-comments:lang(ne-NP),
+.not-found .page-title:lang(ne-NP),
+.error-404 .page-title:lang(ne-NP),
+.post-navigation .post-title:lang(ne-NP),
+.page-links:lang(ne-NP),
+.page-description:lang(ne-NP),
+.pagination .nav-links:lang(ne-NP),
+.sticky-post:lang(ne-NP),
+.site-title:lang(ne-NP),
+.site-info:lang(ne-NP),
+#cancel-comment-reply-link:lang(ne-NP),
+h1:lang(ne-NP),
+h2:lang(ne-NP),
+h3:lang(ne-NP),
+h4:lang(ne-NP),
+h5:lang(ne-NP),
+h6:lang(ne-NP), .page-title:lang(ne-NP), blockquote cite:lang(ne-NP), table:lang(ne-NP), .button:lang(ne-NP),
+input:lang(ne-NP)[type="button"],
+input:lang(ne-NP)[type="reset"],
+input:lang(ne-NP)[type="submit"], .comment-navigation .nav-previous:lang(ne-NP),
+.comment-navigation .nav-next:lang(ne-NP), .comment-list .pingback .comment-body:lang(ne-NP),
+.comment-list .trackback .comment-body:lang(ne-NP), .comment-list .pingback .comment-body .comment-edit-link:lang(ne-NP),
+.comment-list .trackback .comment-body .comment-edit-link:lang(ne-NP), .comment-form .comment-notes:lang(ne-NP),
+.comment-form label:lang(ne-NP), .widget_archive ul li:lang(ne-NP),
+.widget_categories ul li:lang(ne-NP),
+.widget_meta ul li:lang(ne-NP),
+.widget_nav_menu ul li:lang(ne-NP),
+.widget_pages ul li:lang(ne-NP),
+.widget_recent_comments ul li:lang(ne-NP),
+.widget_recent_entries ul li:lang(ne-NP),
+.widget_rss ul li:lang(ne-NP), .widget_tag_cloud .tagcloud:lang(ne-NP), .entry .entry-content .wp-block-button .wp-block-button__link:lang(ne-NP), .entry .entry-content .wp-block-archives li:lang(ne-NP),
+.entry .entry-content .wp-block-categories li:lang(ne-NP),
+.entry .entry-content .wp-block-latest-posts li:lang(ne-NP), .entry .entry-content .wp-block-verse:lang(ne-NP), .entry .entry-content .has-drop-cap:lang(ne-NP):not(:focus):first-letter, .entry .entry-content .wp-block-pullquote cite:lang(ne-NP), .entry .entry-content .wp-block-cover-image .wp-block-cover-image-text:lang(ne-NP),
+.entry .entry-content .wp-block-cover-image .wp-block-cover-text:lang(ne-NP),
+.entry .entry-content .wp-block-cover-image h2:lang(ne-NP),
+.entry .entry-content .wp-block-cover .wp-block-cover-image-text:lang(ne-NP),
+.entry .entry-content .wp-block-cover .wp-block-cover-text:lang(ne-NP),
+.entry .entry-content .wp-block-cover h2:lang(ne-NP), .entry .entry-content .wp-block-audio figcaption:lang(ne-NP),
+.entry .entry-content .wp-block-video figcaption:lang(ne-NP),
+.entry .entry-content .wp-block-image figcaption:lang(ne-NP),
+.entry .entry-content .wp-block-gallery .blocks-gallery-image figcaption:lang(ne-NP),
+.entry .entry-content .wp-block-gallery .blocks-gallery-item figcaption:lang(ne-NP), .entry .entry-content .wp-block-file:lang(ne-NP), .entry .entry-content .wp-block-file .wp-block-file__button:lang(ne-NP), .entry .entry-content .wp-block-latest-comments .wp-block-latest-comments__comment-meta:lang(ne-NP), .wp-caption-text:lang(ne-NP), .gallery-caption:lang(ne-NP) {
   font-family: Arial, sans-serif;
 }
 
@@ -2213,13 +2387,20 @@ h6 {
 .error-404 .page-title,
 .comments-title,
 blockquote {
+  -webkit-hyphens: auto;
+  -moz-hyphens: auto;
+  -ms-hyphens: auto;
   hyphens: auto;
   word-break: break-word;
+  word-wrap: break-word;
 }
 
 /* Do not hyphenate entry title on tablet view and bigger. */
 @media only screen and (min-width: 768px) {
   .entry-title {
+    -webkit-hyphens: none;
+    -moz-hyphens: none;
+    -ms-hyphens: none;
     hyphens: none;
   }
 }
@@ -3554,7 +3735,12 @@ body.page .main-navigation {
 
 .site-branding {
   color: #767676;
+  -webkit-hyphens: auto;
+  -moz-hyphens: auto;
+  -ms-hyphens: auto;
+  hyphens: auto;
   position: relative;
+  word-wrap: break-word;
 }
 
 @media only screen and (min-width: 768px) {
@@ -4334,7 +4520,12 @@ body.page .main-navigation {
 }
 
 .comments-area {
+  -webkit-hyphens: auto;
+  -moz-hyphens: auto;
+  -ms-hyphens: auto;
+  hyphens: auto;
   margin: calc(2 * 1rem) 1rem;
+  word-wrap: break-word;
   /* Add extra margin when the comments section is located immediately after the
 	 * post itself (this happens on pages).
 	 */
@@ -4849,7 +5040,12 @@ body.page .main-navigation {
 }
 
 #colophon .widget-column .widget {
+  -webkit-hyphens: auto;
+  -moz-hyphens: auto;
+  -ms-hyphens: auto;
+  hyphens: auto;
   width: 100%;
+  word-wrap: break-word;
 }
 
 @media only screen and (min-width: 1168px) {
@@ -4861,6 +5057,11 @@ body.page .main-navigation {
 
 #colophon .site-info {
   color: #767676;
+  -webkit-hyphens: auto;
+  -moz-hyphens: auto;
+  -ms-hyphens: auto;
+  hyphens: auto;
+  word-wrap: break-word;
 }
 
 #colophon .site-info a {
@@ -5477,7 +5678,8 @@ body.page .main-navigation {
 }
 
 .entry .entry-content .wp-block-quote:not(.is-large), .entry .entry-content .wp-block-quote:not(.is-style-large) {
-  border-right: 2px solid #0073aa;
+  border-width: 2px;
+  border-color: #0073aa;
   padding-top: 0;
   padding-bottom: 0;
 }
@@ -5827,34 +6029,20 @@ body.page .main-navigation {
   word-break: break-word;
 }
 
-.entry .entry-content .wp-block-columns.alignfull {
-  padding-right: 1rem;
-  padding-left: 1rem;
+.entry .entry-content .wp-block-columns .wp-block-column > *:first-child {
+  margin-top: 0;
 }
 
-@media only screen and (min-width: 600px) {
-  .entry .entry-content .wp-block-columns {
-    flex-wrap: nowrap;
-  }
+.entry .entry-content .wp-block-columns .wp-block-column > *:last-child {
+  margin-bottom: 0;
 }
 
 @media only screen and (min-width: 768px) {
-  .entry .entry-content .wp-block-columns .wp-block-column > *:first-child {
-    margin-top: 0;
-  }
-  .entry .entry-content .wp-block-columns .wp-block-column > *:last-child {
-    margin-bottom: 0;
-  }
-  .entry .entry-content .wp-block-columns[class*='has-'] > * {
-    margin-left: 1rem;
-  }
-  .entry .entry-content .wp-block-columns[class*='has-'] > *:last-child {
-    margin-left: 0;
+  .entry .entry-content .wp-block-columns {
+    flex-wrap: nowrap;
   }
-  .entry .entry-content .wp-block-columns.alignfull,
-  .entry .entry-content .wp-block-columns.alignfull .wp-block-column {
-    padding-right: calc(2 * 1rem);
-    padding-left: calc(2 * 1rem);
+  .entry .entry-content .wp-block-columns .wp-block-column:not(:first-child) {
+    margin-right: 32px;
   }
 }
 
@@ -5900,38 +6088,38 @@ body.page .main-navigation {
   color: #fff;
 }
 
-.entry .entry-content .has-primary-background-color p,
-.entry .entry-content .has-primary-background-color h1,
-.entry .entry-content .has-primary-background-color h2,
-.entry .entry-content .has-primary-background-color h3,
-.entry .entry-content .has-primary-background-color h4,
-.entry .entry-content .has-primary-background-color h5,
-.entry .entry-content .has-primary-background-color h6,
-.entry .entry-content .has-primary-background-color a,
-.entry .entry-content .has-secondary-background-color p,
-.entry .entry-content .has-secondary-background-color h1,
-.entry .entry-content .has-secondary-background-color h2,
-.entry .entry-content .has-secondary-background-color h3,
-.entry .entry-content .has-secondary-background-color h4,
-.entry .entry-content .has-secondary-background-color h5,
-.entry .entry-content .has-secondary-background-color h6,
-.entry .entry-content .has-secondary-background-color a,
-.entry .entry-content .has-dark-gray-background-color p,
-.entry .entry-content .has-dark-gray-background-color h1,
-.entry .entry-content .has-dark-gray-background-color h2,
-.entry .entry-content .has-dark-gray-background-color h3,
-.entry .entry-content .has-dark-gray-background-color h4,
-.entry .entry-content .has-dark-gray-background-color h5,
-.entry .entry-content .has-dark-gray-background-color h6,
-.entry .entry-content .has-dark-gray-background-color a,
-.entry .entry-content .has-light-gray-background-color p,
-.entry .entry-content .has-light-gray-background-color h1,
-.entry .entry-content .has-light-gray-background-color h2,
-.entry .entry-content .has-light-gray-background-color h3,
-.entry .entry-content .has-light-gray-background-color h4,
-.entry .entry-content .has-light-gray-background-color h5,
-.entry .entry-content .has-light-gray-background-color h6,
-.entry .entry-content .has-light-gray-background-color a {
+.entry .entry-content .has-primary-background-color > p,
+.entry .entry-content .has-primary-background-color > h1,
+.entry .entry-content .has-primary-background-color > h2,
+.entry .entry-content .has-primary-background-color > h3,
+.entry .entry-content .has-primary-background-color > h4,
+.entry .entry-content .has-primary-background-color > h5,
+.entry .entry-content .has-primary-background-color > h6,
+.entry .entry-content .has-primary-background-color > a,
+.entry .entry-content .has-secondary-background-color > p,
+.entry .entry-content .has-secondary-background-color > h1,
+.entry .entry-content .has-secondary-background-color > h2,
+.entry .entry-content .has-secondary-background-color > h3,
+.entry .entry-content .has-secondary-background-color > h4,
+.entry .entry-content .has-secondary-background-color > h5,
+.entry .entry-content .has-secondary-background-color > h6,
+.entry .entry-content .has-secondary-background-color > a,
+.entry .entry-content .has-dark-gray-background-color > p,
+.entry .entry-content .has-dark-gray-background-color > h1,
+.entry .entry-content .has-dark-gray-background-color > h2,
+.entry .entry-content .has-dark-gray-background-color > h3,
+.entry .entry-content .has-dark-gray-background-color > h4,
+.entry .entry-content .has-dark-gray-background-color > h5,
+.entry .entry-content .has-dark-gray-background-color > h6,
+.entry .entry-content .has-dark-gray-background-color > a,
+.entry .entry-content .has-light-gray-background-color > p,
+.entry .entry-content .has-light-gray-background-color > h1,
+.entry .entry-content .has-light-gray-background-color > h2,
+.entry .entry-content .has-light-gray-background-color > h3,
+.entry .entry-content .has-light-gray-background-color > h4,
+.entry .entry-content .has-light-gray-background-color > h5,
+.entry .entry-content .has-light-gray-background-color > h6,
+.entry .entry-content .has-light-gray-background-color > a {
   color: #fff;
 }
 
@@ -5939,14 +6127,14 @@ body.page .main-navigation {
   color: #111;
 }
 
-.entry .entry-content .has-white-background-color p,
-.entry .entry-content .has-white-background-color h1,
-.entry .entry-content .has-white-background-color h2,
-.entry .entry-content .has-white-background-color h3,
-.entry .entry-content .has-white-background-color h4,
-.entry .entry-content .has-white-background-color h5,
-.entry .entry-content .has-white-background-color h6,
-.entry .entry-content .has-white-background-color a {
+.entry .entry-content .has-white-background-color > p,
+.entry .entry-content .has-white-background-color > h1,
+.entry .entry-content .has-white-background-color > h2,
+.entry .entry-content .has-white-background-color > h3,
+.entry .entry-content .has-white-background-color > h4,
+.entry .entry-content .has-white-background-color > h5,
+.entry .entry-content .has-white-background-color > h6,
+.entry .entry-content .has-white-background-color > a {
   color: #111;
 }
 
@@ -5977,25 +6165,25 @@ body.page .main-navigation {
 
 .entry .entry-content .has-primary-color,
 .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-primary-color,
-.entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-primary-color p {
+.entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-primary-color > p {
   color: #0073aa;
 }
 
 .entry .entry-content .has-secondary-color,
 .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-secondary-color,
-.entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-secondary-color p {
+.entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-secondary-color > p {
   color: #005177;
 }
 
 .entry .entry-content .has-dark-gray-color,
 .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-dark-gray-color,
-.entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-dark-gray-color p {
+.entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-dark-gray-color > p {
   color: #111;
 }
 
 .entry .entry-content .has-light-gray-color,
 .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-light-gray-color,
-.entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-light-gray-color p {
+.entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-light-gray-color > p {
   color: #767676;
 }
 
diff --git a/wp-content/themes/twentynineteen/style.css b/wp-content/themes/twentynineteen/style.css
index d415a7ba7..ccf9014fa 100644
--- a/wp-content/themes/twentynineteen/style.css
+++ b/wp-content/themes/twentynineteen/style.css
@@ -1,12 +1,12 @@
 @charset "UTF-8";
 /*
 Theme Name: Twenty Nineteen
-Theme URI: https://github.com/WordPress/twentynineteen
+Theme URI: https://wordpress.org/themes/twentynineteen/
 Author: the WordPress team
 Author URI: https://wordpress.org/
 Description: Our 2019 default theme is designed to show off the power of the block editor. It features custom styles for all the default blocks, and is built so that what you see in the editor looks like what you'll see on your website. Twenty Nineteen is designed to be adaptable to a wide range of websites, whether you’re running a photo blog, launching a new business, or supporting a non-profit. Featuring ample whitespace and modern sans-serif headlines paired with classic serif body text, it's built to be beautiful on all screen sizes.
 Requires at least: WordPress 4.9.6
-Version: 1.3
+Version: 1.4
 License: GNU General Public License v2 or later
 License URI: LICENSE
 Text Domain: twentynineteen
@@ -2387,13 +2387,20 @@ h6 {
 .error-404 .page-title,
 .comments-title,
 blockquote {
+  -webkit-hyphens: auto;
+  -moz-hyphens: auto;
+  -ms-hyphens: auto;
   hyphens: auto;
   word-break: break-word;
+  word-wrap: break-word;
 }
 
 /* Do not hyphenate entry title on tablet view and bigger. */
 @media only screen and (min-width: 768px) {
   .entry-title {
+    -webkit-hyphens: none;
+    -moz-hyphens: none;
+    -ms-hyphens: none;
     hyphens: none;
   }
 }
@@ -3734,7 +3741,12 @@ body.page .main-navigation {
 
 .site-branding {
   color: #767676;
+  -webkit-hyphens: auto;
+  -moz-hyphens: auto;
+  -ms-hyphens: auto;
+  hyphens: auto;
   position: relative;
+  word-wrap: break-word;
 }
 
 @media only screen and (min-width: 768px) {
@@ -4514,7 +4526,12 @@ body.page .main-navigation {
 }
 
 .comments-area {
+  -webkit-hyphens: auto;
+  -moz-hyphens: auto;
+  -ms-hyphens: auto;
+  hyphens: auto;
   margin: calc(2 * 1rem) 1rem;
+  word-wrap: break-word;
   /* Add extra margin when the comments section is located immediately after the
 	 * post itself (this happens on pages).
 	 */
@@ -5029,7 +5046,12 @@ body.page .main-navigation {
 }
 
 #colophon .widget-column .widget {
+  -webkit-hyphens: auto;
+  -moz-hyphens: auto;
+  -ms-hyphens: auto;
+  hyphens: auto;
   width: 100%;
+  word-wrap: break-word;
 }
 
 @media only screen and (min-width: 1168px) {
@@ -5041,6 +5063,11 @@ body.page .main-navigation {
 
 #colophon .site-info {
   color: #767676;
+  -webkit-hyphens: auto;
+  -moz-hyphens: auto;
+  -ms-hyphens: auto;
+  hyphens: auto;
+  word-wrap: break-word;
 }
 
 #colophon .site-info a {
@@ -5663,7 +5690,8 @@ body.page .main-navigation {
 }
 
 .entry .entry-content .wp-block-quote:not(.is-large), .entry .entry-content .wp-block-quote:not(.is-style-large) {
-  border-left: 2px solid #0073aa;
+  border-width: 2px;
+  border-color: #0073aa;
   padding-top: 0;
   padding-bottom: 0;
 }
@@ -6013,34 +6041,20 @@ body.page .main-navigation {
   word-break: break-word;
 }
 
-.entry .entry-content .wp-block-columns.alignfull {
-  padding-left: 1rem;
-  padding-right: 1rem;
+.entry .entry-content .wp-block-columns .wp-block-column > *:first-child {
+  margin-top: 0;
 }
 
-@media only screen and (min-width: 600px) {
-  .entry .entry-content .wp-block-columns {
-    flex-wrap: nowrap;
-  }
+.entry .entry-content .wp-block-columns .wp-block-column > *:last-child {
+  margin-bottom: 0;
 }
 
 @media only screen and (min-width: 768px) {
-  .entry .entry-content .wp-block-columns .wp-block-column > *:first-child {
-    margin-top: 0;
-  }
-  .entry .entry-content .wp-block-columns .wp-block-column > *:last-child {
-    margin-bottom: 0;
-  }
-  .entry .entry-content .wp-block-columns[class*='has-'] > * {
-    margin-right: 1rem;
-  }
-  .entry .entry-content .wp-block-columns[class*='has-'] > *:last-child {
-    margin-right: 0;
+  .entry .entry-content .wp-block-columns {
+    flex-wrap: nowrap;
   }
-  .entry .entry-content .wp-block-columns.alignfull,
-  .entry .entry-content .wp-block-columns.alignfull .wp-block-column {
-    padding-left: calc(2 * 1rem);
-    padding-right: calc(2 * 1rem);
+  .entry .entry-content .wp-block-columns .wp-block-column:not(:first-child) {
+    margin-left: 32px;
   }
 }
 
@@ -6086,38 +6100,38 @@ body.page .main-navigation {
   color: #fff;
 }
 
-.entry .entry-content .has-primary-background-color p,
-.entry .entry-content .has-primary-background-color h1,
-.entry .entry-content .has-primary-background-color h2,
-.entry .entry-content .has-primary-background-color h3,
-.entry .entry-content .has-primary-background-color h4,
-.entry .entry-content .has-primary-background-color h5,
-.entry .entry-content .has-primary-background-color h6,
-.entry .entry-content .has-primary-background-color a,
-.entry .entry-content .has-secondary-background-color p,
-.entry .entry-content .has-secondary-background-color h1,
-.entry .entry-content .has-secondary-background-color h2,
-.entry .entry-content .has-secondary-background-color h3,
-.entry .entry-content .has-secondary-background-color h4,
-.entry .entry-content .has-secondary-background-color h5,
-.entry .entry-content .has-secondary-background-color h6,
-.entry .entry-content .has-secondary-background-color a,
-.entry .entry-content .has-dark-gray-background-color p,
-.entry .entry-content .has-dark-gray-background-color h1,
-.entry .entry-content .has-dark-gray-background-color h2,
-.entry .entry-content .has-dark-gray-background-color h3,
-.entry .entry-content .has-dark-gray-background-color h4,
-.entry .entry-content .has-dark-gray-background-color h5,
-.entry .entry-content .has-dark-gray-background-color h6,
-.entry .entry-content .has-dark-gray-background-color a,
-.entry .entry-content .has-light-gray-background-color p,
-.entry .entry-content .has-light-gray-background-color h1,
-.entry .entry-content .has-light-gray-background-color h2,
-.entry .entry-content .has-light-gray-background-color h3,
-.entry .entry-content .has-light-gray-background-color h4,
-.entry .entry-content .has-light-gray-background-color h5,
-.entry .entry-content .has-light-gray-background-color h6,
-.entry .entry-content .has-light-gray-background-color a {
+.entry .entry-content .has-primary-background-color > p,
+.entry .entry-content .has-primary-background-color > h1,
+.entry .entry-content .has-primary-background-color > h2,
+.entry .entry-content .has-primary-background-color > h3,
+.entry .entry-content .has-primary-background-color > h4,
+.entry .entry-content .has-primary-background-color > h5,
+.entry .entry-content .has-primary-background-color > h6,
+.entry .entry-content .has-primary-background-color > a,
+.entry .entry-content .has-secondary-background-color > p,
+.entry .entry-content .has-secondary-background-color > h1,
+.entry .entry-content .has-secondary-background-color > h2,
+.entry .entry-content .has-secondary-background-color > h3,
+.entry .entry-content .has-secondary-background-color > h4,
+.entry .entry-content .has-secondary-background-color > h5,
+.entry .entry-content .has-secondary-background-color > h6,
+.entry .entry-content .has-secondary-background-color > a,
+.entry .entry-content .has-dark-gray-background-color > p,
+.entry .entry-content .has-dark-gray-background-color > h1,
+.entry .entry-content .has-dark-gray-background-color > h2,
+.entry .entry-content .has-dark-gray-background-color > h3,
+.entry .entry-content .has-dark-gray-background-color > h4,
+.entry .entry-content .has-dark-gray-background-color > h5,
+.entry .entry-content .has-dark-gray-background-color > h6,
+.entry .entry-content .has-dark-gray-background-color > a,
+.entry .entry-content .has-light-gray-background-color > p,
+.entry .entry-content .has-light-gray-background-color > h1,
+.entry .entry-content .has-light-gray-background-color > h2,
+.entry .entry-content .has-light-gray-background-color > h3,
+.entry .entry-content .has-light-gray-background-color > h4,
+.entry .entry-content .has-light-gray-background-color > h5,
+.entry .entry-content .has-light-gray-background-color > h6,
+.entry .entry-content .has-light-gray-background-color > a {
   color: #fff;
 }
 
@@ -6125,14 +6139,14 @@ body.page .main-navigation {
   color: #111;
 }
 
-.entry .entry-content .has-white-background-color p,
-.entry .entry-content .has-white-background-color h1,
-.entry .entry-content .has-white-background-color h2,
-.entry .entry-content .has-white-background-color h3,
-.entry .entry-content .has-white-background-color h4,
-.entry .entry-content .has-white-background-color h5,
-.entry .entry-content .has-white-background-color h6,
-.entry .entry-content .has-white-background-color a {
+.entry .entry-content .has-white-background-color > p,
+.entry .entry-content .has-white-background-color > h1,
+.entry .entry-content .has-white-background-color > h2,
+.entry .entry-content .has-white-background-color > h3,
+.entry .entry-content .has-white-background-color > h4,
+.entry .entry-content .has-white-background-color > h5,
+.entry .entry-content .has-white-background-color > h6,
+.entry .entry-content .has-white-background-color > a {
   color: #111;
 }
 
@@ -6163,25 +6177,25 @@ body.page .main-navigation {
 
 .entry .entry-content .has-primary-color,
 .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-primary-color,
-.entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-primary-color p {
+.entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-primary-color > p {
   color: #0073aa;
 }
 
 .entry .entry-content .has-secondary-color,
 .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-secondary-color,
-.entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-secondary-color p {
+.entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-secondary-color > p {
   color: #005177;
 }
 
 .entry .entry-content .has-dark-gray-color,
 .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-dark-gray-color,
-.entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-dark-gray-color p {
+.entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-dark-gray-color > p {
   color: #111;
 }
 
 .entry .entry-content .has-light-gray-color,
 .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-light-gray-color,
-.entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-light-gray-color p {
+.entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-light-gray-color > p {
   color: #767676;
 }
 
diff --git a/wp-content/themes/twentynineteen/style.scss b/wp-content/themes/twentynineteen/style.scss
index 944872a0e..cdb1b56a9 100644
--- a/wp-content/themes/twentynineteen/style.scss
+++ b/wp-content/themes/twentynineteen/style.scss
@@ -1,11 +1,11 @@
 /*
 Theme Name: Twenty Nineteen
-Theme URI: https://github.com/WordPress/twentynineteen
+Theme URI: https://wordpress.org/themes/twentynineteen/
 Author: the WordPress team
 Author URI: https://wordpress.org/
 Description: Our 2019 default theme is designed to show off the power of the block editor. It features custom styles for all the default blocks, and is built so that what you see in the editor looks like what you'll see on your website. Twenty Nineteen is designed to be adaptable to a wide range of websites, whether you’re running a photo blog, launching a new business, or supporting a non-profit. Featuring ample whitespace and modern sans-serif headlines paired with classic serif body text, it's built to be beautiful on all screen sizes.
 Requires at least: WordPress 4.9.6
-Version: 1.3
+Version: 1.4
 License: GNU General Public License v2 or later
 License URI: LICENSE
 Text Domain: twentynineteen
diff --git a/wp-content/themes/twentynineteen/template-parts/content/content-excerpt.php b/wp-content/themes/twentynineteen/template-parts/content/content-excerpt.php
index 98b0761eb..a76edb02e 100644
--- a/wp-content/themes/twentynineteen/template-parts/content/content-excerpt.php
+++ b/wp-content/themes/twentynineteen/template-parts/content/content-excerpt.php
@@ -30,4 +30,4 @@
 	<footer class="entry-footer">
 		<?php twentynineteen_entry_footer(); ?>
 	</footer><!-- .entry-footer -->
-</article><!-- #post-${ID} -->
+</article><!-- #post-<?php the_ID(); ?> -->
diff --git a/wp-content/themes/twentynineteen/template-parts/content/content-single.php b/wp-content/themes/twentynineteen/template-parts/content/content-single.php
index 720a25353..2e654dbcf 100644
--- a/wp-content/themes/twentynineteen/template-parts/content/content-single.php
+++ b/wp-content/themes/twentynineteen/template-parts/content/content-single.php
@@ -52,4 +52,4 @@
 		<?php get_template_part( 'template-parts/post/author', 'bio' ); ?>
 	<?php endif; ?>
 
-</article><!-- #post-${ID} -->
+</article><!-- #post-<?php the_ID(); ?> -->
diff --git a/wp-content/themes/twentynineteen/template-parts/content/content.php b/wp-content/themes/twentynineteen/template-parts/content/content.php
index 85ec63287..befcbda7f 100644
--- a/wp-content/themes/twentynineteen/template-parts/content/content.php
+++ b/wp-content/themes/twentynineteen/template-parts/content/content.php
@@ -56,4 +56,4 @@
 	<footer class="entry-footer">
 		<?php twentynineteen_entry_footer(); ?>
 	</footer><!-- .entry-footer -->
-</article><!-- #post-${ID} -->
+</article><!-- #post-<?php the_ID(); ?> -->
diff --git a/wp-content/themes/twentynineteen/template-parts/header/entry-header.php b/wp-content/themes/twentynineteen/template-parts/header/entry-header.php
index 9a72cbfdc..b23ad31d7 100644
--- a/wp-content/themes/twentynineteen/template-parts/header/entry-header.php
+++ b/wp-content/themes/twentynineteen/template-parts/header/entry-header.php
@@ -42,5 +42,5 @@ $discussion = ! is_page() && twentynineteen_can_show_post_thumbnail() ? twentyni
 			'</span>'
 		);
 	?>
-</div><!-- .meta-info -->
+</div><!-- .entry-meta -->
 <?php endif; ?>
-- 
GitLab