Sitemaps: Remove some extra space from WP_Sitemaps_Stylesheet::get_stylesheet_css().

Follow-up to [48414].

See #50449.

git-svn-id: https://develop.svn.wordpress.org/trunk@48425 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2020-07-10 16:10:07 +00:00
parent 5e160ea4a9
commit a7a91ba8dc

View File

@ -86,7 +86,9 @@ class WP_Sitemaps_Stylesheet {
<html {$lang}> <html {$lang}>
<head> <head>
<title>{$title}</title> <title>{$title}</title>
<style>{$css}</style> <style>
{$css}
</style>
</head> </head>
<body> <body>
<div id="sitemap__header"> <div id="sitemap__header">
@ -192,7 +194,9 @@ XSL;
<html {$lang}> <html {$lang}>
<head> <head>
<title>{$title}</title> <title>{$title}</title>
<style>{$css}</style> <style>
{$css}
</style>
</head> </head>
<body> <body>
<div id="sitemap__header"> <div id="sitemap__header">
@ -265,8 +269,8 @@ XSL;
#sitemap__table tr td.loc { #sitemap__table tr td.loc {
/* /*
* URLs should always be LTR. * URLs should always be LTR.
* see https://core.trac.wordpress.org/ticket/16834 and * See https://core.trac.wordpress.org/ticket/16834
* https://core.trac.wordpress.org/ticket/49949 * and https://core.trac.wordpress.org/ticket/49949
*/ */
direction: ltr; direction: ltr;
} }
@ -287,6 +291,7 @@ XSL;
a:hover { a:hover {
text-decoration: none; text-decoration: none;
} }
EOF; EOF;
/** /**