blob: 2242bb293ce61f08f4dd2f4217a2f264603f069f (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
---
title: ':-moz-system-metric(windows-default-theme)'
slug: 'Web/CSS/:-moz-system-metric(windows-default-theme)'
tags:
- CSS
- CSS Pseudoklasse
- CSS Referenz
- NeedsMobileBrowserCompatibility
- Non-standard
translation_of: 'Archive/Web/CSS/:-moz-system-metric/windows-default-theme'
---
<div>{{Non-standard_header}}{{CSSRef}}</div>
<h2 id="Übersicht">Übersicht</h2>
<p>Die <code>:-moz-system-metric(windows-default-theme)</code> CSS <a href="/de/docs/Web/CSS/Pseudo-classes">Pseudoklasse</a> matcht ein Element, falls der Benutzer aktuell eines der folgenden Themes in Windows verwendet: Luna, Royale, Zune oder Aero (d. h. Vista Basic, Vista Standard oder Aero Glass). Dies schließt sowohl Windows Classic Themes als auch Drittanbieterthemes aus.</p>
<p>Dieser Selektor ist hauptsächlich für die Verwendung durch Themeentwickler gedacht.</p>
<h2 id="Beispiel">Beispiel</h2>
<h3 id="HTML_Inhalt">HTML Inhalt</h3>
<pre class="brush: html"><p id="defaultThemes">
This paragraph should have a green background with Luna/Royale/Zune/Aero
Windows themes and red with other themes.
</p>
<p id="nonDefaultThemes">
This paragraph should have a green background with Windows Classic or
third-party themes and red with other themes.
</p>
<p id="notSupported">Theme detection is not supported.</p></pre>
<h3 id="CSS_Inhalt">CSS Inhalt</h3>
<pre class="brush: css">#defaultThemes,
#nonDefaultThemes {
background-color: #FFA0A0;
}
#defaultThemes:-moz-system-metric(windows-default-theme) {
background-color: #A0FFA0;
}
#nonDefaultThemes:not(-moz-system-metric(windows-default-theme)) {
background-color: #A0FFA0;
}
#notSupported:-moz-system-metric(windows-default-theme),
#notSupported:not(:-moz-system-metric(windows-default-theme)) {
display: none;
}
</pre>
<p>{{EmbedLiveSample("Beispiel", "100%", 170)}}</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-system-metric.windows-default-theme")}}
|