From a065e04d529da1d847b5062a12c46d916408bf32 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 21:46:22 -0500 Subject: update based on https://github.com/mdn/yari/issues/2028 --- .../index.html | 65 ---------------------- 1 file changed, 65 deletions(-) delete mode 100644 files/de/web/css/_colon_-moz-system-metric(windows-default-theme)/index.html (limited to 'files/de/web/css/_colon_-moz-system-metric(windows-default-theme)/index.html') diff --git a/files/de/web/css/_colon_-moz-system-metric(windows-default-theme)/index.html b/files/de/web/css/_colon_-moz-system-metric(windows-default-theme)/index.html deleted file mode 100644 index 2242bb293c..0000000000 --- a/files/de/web/css/_colon_-moz-system-metric(windows-default-theme)/index.html +++ /dev/null @@ -1,65 +0,0 @@ ---- -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' ---- -
{{Non-standard_header}}{{CSSRef}}
- -

Übersicht

- -

Die :-moz-system-metric(windows-default-theme) CSS Pseudoklasse 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.

- -

Dieser Selektor ist hauptsächlich für die Verwendung durch Themeentwickler gedacht.

- -

Beispiel

- -

HTML Inhalt

- -
<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>
- -

CSS Inhalt

- -
#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;
-}
-
- -

{{EmbedLiveSample("Beispiel", "100%", 170)}}

- -

Spezifikationen

- -

Nicht Teil einer Spezifikation.

- -

Browser Kompatibilität

- -{{Compat("css.selectors.-moz-system-metric.windows-default-theme")}} -- cgit v1.2.3-54-g00ecf