aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/css/_colon_focus-within
diff options
context:
space:
mode:
authorAlexey Pyltsyn <lex61rus@gmail.com>2021-10-27 02:31:24 +0300
committerGitHub <noreply@github.com>2021-10-27 02:31:24 +0300
commit980fe00a74a9ad013b945755415ace2e5429c3c2 (patch)
treea1c6bb4b302e69bfa53eab13e44500eba55d1696 /files/ru/web/css/_colon_focus-within
parent374a039b97a11ee7306539d16aaab27fed66b398 (diff)
downloadtranslated-content-980fe00a74a9ad013b945755415ace2e5429c3c2.tar.gz
translated-content-980fe00a74a9ad013b945755415ace2e5429c3c2.tar.bz2
translated-content-980fe00a74a9ad013b945755415ace2e5429c3c2.zip
[RU] Remove notranslate (#2874)
Diffstat (limited to 'files/ru/web/css/_colon_focus-within')
-rw-r--r--files/ru/web/css/_colon_focus-within/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/files/ru/web/css/_colon_focus-within/index.html b/files/ru/web/css/_colon_focus-within/index.html
index 1a8c179fab..a60adff99c 100644
--- a/files/ru/web/css/_colon_focus-within/index.html
+++ b/files/ru/web/css/_colon_focus-within/index.html
@@ -7,7 +7,7 @@ translation_of: 'Web/CSS/:focus-within'
<p><a href="/en-US/docs/Web/CSS">CSS</a> <a href="/en-US/docs/Web/CSS/Pseudo-classes">Псевдо-класс</a> <strong><code>:focus-within</code></strong> соответствует элементу, который либо сам находится в фокусе, либо содержит элемент, который находится в фокусе. Другими словами, он представляет элементу, который соответствует псевдоклассу {{CSSxRef(":focus")}} либо имеет потомка, который соответствует <code>:focus</code>. (Включая потомков в <a href="/en-US/docs/Web/Web_Components/Shadow_DOM">shadow trees</a>.)</p>
-<pre class="brush: css no-line-numbers notranslate">/* Выделяет &lt;div&gt; когда один из его потомков находится в фокусе */
+<pre class="brush: css no-line-numbers">/* Выделяет &lt;div&gt; когда один из его потомков находится в фокусе */
div:focus-within {
background: cyan;
}</pre>
@@ -24,7 +24,7 @@ div:focus-within {
<h3 id="HTML">HTML</h3>
-<pre class="brush: html notranslate">&lt;p&gt;Try typing into this form.&lt;/p&gt;
+<pre class="brush: html">&lt;p&gt;Try typing into this form.&lt;/p&gt;
&lt;form&gt;
&lt;label for="given_name"&gt;Given Name:&lt;/label&gt;
@@ -36,7 +36,7 @@ div:focus-within {
<h3 id="CSS">CSS</h3>
-<pre class="brush: css highlight[7] notranslate">form {
+<pre class="brush: css highlight[7]">form {
border: 1px solid;
color: gray;
padding: 4px;