diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 21:46:22 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 21:46:22 -0500 |
commit | a065e04d529da1d847b5062a12c46d916408bf32 (patch) | |
tree | fe0f8bcec1ff39a3c499a2708222dcf15224ff70 /files/de/web/css/_colon_-moz-system-metric(windows-default-theme)/index.html | |
parent | 218934fa2ed1c702a6d3923d2aa2cc6b43c48684 (diff) | |
download | translated-content-a065e04d529da1d847b5062a12c46d916408bf32.tar.gz translated-content-a065e04d529da1d847b5062a12c46d916408bf32.tar.bz2 translated-content-a065e04d529da1d847b5062a12c46d916408bf32.zip |
update based on https://github.com/mdn/yari/issues/2028
Diffstat (limited to 'files/de/web/css/_colon_-moz-system-metric(windows-default-theme)/index.html')
-rw-r--r-- | files/de/web/css/_colon_-moz-system-metric(windows-default-theme)/index.html | 65 |
1 files changed, 0 insertions, 65 deletions
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' ---- -<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")}} |