aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/css/_doublecolon_slotted
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/_doublecolon_slotted
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/_doublecolon_slotted')
-rw-r--r--files/ru/web/css/_doublecolon_slotted/index.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/files/ru/web/css/_doublecolon_slotted/index.html b/files/ru/web/css/_doublecolon_slotted/index.html
index 0edc300055..b98d03c2f0 100644
--- a/files/ru/web/css/_doublecolon_slotted/index.html
+++ b/files/ru/web/css/_doublecolon_slotted/index.html
@@ -9,7 +9,7 @@ translation_of: 'Web/CSS/::slotted'
<p>Это работает только при использовании внутри CSS, помещённого в <a href="/en-US/docs/Web/Web_Components/Using_shadow_DOM">shadow DOM</a>. Обратите также внимание, что этот селектор не будет выбирать текстовый узел, помещённый в слот; он нацелен только на фактические элементы.</p>
-<pre class="brush: css no-line-numbers notranslate">/* Выбирает любой элемент, помещённый в слот */
+<pre class="brush: css no-line-numbers">/* Выбирает любой элемент, помещённый в слот */
::slotted(*) {
  font-weight: bold;
}
@@ -30,7 +30,7 @@ translation_of: 'Web/CSS/::slotted'
<p>В этом демо мы использовали простой шаблон с тремя слотами:</p>
-<pre class="brush: html notranslate">&lt;template id="person-template"&gt;
+<pre class="brush: html">&lt;template id="person-template"&gt;
&lt;div&gt;
&lt;h2&gt;Personal ID Card&lt;/h2&gt;
&lt;slot name="person-name"&gt;NAME MISSING&lt;/slot&gt;
@@ -43,7 +43,7 @@ translation_of: 'Web/CSS/::slotted'
<p>Пользовательский элемент — <code>&lt;person-details&gt;</code> — определяется следующим образом:</p>
-<pre class="brush: js notranslate">customElements.define('person-details',
+<pre class="brush: js">customElements.define('person-details',
class extends HTMLElement {
constructor() {
super();
@@ -68,7 +68,7 @@ translation_of: 'Web/CSS/::slotted'
<p>Элемент выглядит следующим образом при вставке на страницу:</p>
-<pre class="brush: html notranslate">&lt;person-details&gt;
+<pre class="brush: html">&lt;person-details&gt;
&lt;p slot="person-name"&gt;Dr. Shazaam&lt;/p&gt;
&lt;span slot="person-age"&gt;Immortal&lt;/span&gt;
&lt;span slot="person-occupation"&gt;Superhero&lt;/span&gt;