diff options
author | Alexey Pyltsyn <lex61rus@gmail.com> | 2021-10-27 02:31:24 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-27 02:31:24 +0300 |
commit | 980fe00a74a9ad013b945755415ace2e5429c3c2 (patch) | |
tree | a1c6bb4b302e69bfa53eab13e44500eba55d1696 /files/ru/web/css/_colon_focus-within | |
parent | 374a039b97a11ee7306539d16aaab27fed66b398 (diff) | |
download | translated-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.html | 6 |
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">/* Выделяет <div> когда один из его потомков находится в фокусе */ +<pre class="brush: css no-line-numbers">/* Выделяет <div> когда один из его потомков находится в фокусе */ div:focus-within { background: cyan; }</pre> @@ -24,7 +24,7 @@ div:focus-within { <h3 id="HTML">HTML</h3> -<pre class="brush: html notranslate"><p>Try typing into this form.</p> +<pre class="brush: html"><p>Try typing into this form.</p> <form> <label for="given_name">Given Name:</label> @@ -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; |