aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/css/_colon_-moz-window-inactive/index.html
blob: 88a73ced90f739ff69ac1ee98de5754f0ea28c5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
title: ':-moz-window-inactive'
slug: 'Web/CSS/:-moz-window-inactive'
tags:
  - CSS
  - CSS Referenz
  - 'CSS:Mozilla Erweiterungen'
  - NeedsBrowserCompatibility
  - NeedsLiveSample
  - NeedsMobileBrowserCompatibility
  - Non-standard
translation_of: 'Web/CSS/:-moz-window-inactive'
---
<div>{{CSSRef}}</div>

<h2 id="Übersicht">Übersicht</h2>

<p>Die <code>:-moz-window-inactive</code> <a href="/de/docs/Web/CSS">CSS</a> <a href="/de/docs/Web/CSS/Pseudo-classes">Pseudoklasse</a> matcht jedes Element während es sich in einem inaktivem Fenster befindet.</p>

<div class="note"><strong>Hinweis:</strong> Vor der Einführung dieser Pseudoklasse konnten andere Stile für Hintergrundfenster durch das Setzen eines Attributs (<code>active="true"</code>) für das Toplevel XUL Chromefenster erreicht werden. Dieses Attribut wird nicht mehr verwendet.</div>

<p><code>:-moz-window-inactive</code> funktioniert auch in Inhalten von HTML Dokumenten.</p>

<h2 id="Beispiel">Beispiel</h2>

<p>Dieses Beispiel verändert die Darstellung des Hintergrunds einer Box in Abhängigkeit davon, ob das Fenster aktiv ist oder nicht.</p>

<pre class="brush: html">&lt;style type="text/css"&gt;
#mybox {
  background: linear-gradient(to bottom, blue, cyan);
}

#mybox:-moz-window-inactive {
  background: cyan;
}
&lt;/style&gt;

&lt;div id="mybox" style="width:200px; height:200px;"&gt;
  &lt;p&gt;Dies ist eine Box!&lt;/p&gt;
&lt;/div&gt;
</pre>

<p>Dieses Beispiel kann <a href="/samples/cssref/moz-window-inactive.html">als Livebeispiel betrachtet</a> werden.</p>

<h2 id="Spezifikationen">Spezifikationen</h2>

<p>Nicht Teil einer Spezifikation.</p>

<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2>

{{Compat("css.selectors.-moz-window-inactive")}}