Danke!! Wenn ich mal wieder einen klaue, muss ich halt genau lesen.
Beiträge von Boersenfeger
-
-
Ich habe nun nochmal alles ganz in Ruhe zusammen getippt und nach einem Neustart funktioniert es nun mit dem Shadow Script und Shadow CSS.
Was ich noch nicht weiß; wann muss ein CSS via Shadow verwirklicht werden?
-
Die Lösung aus #79 bewirkt hier in der userChromeShadow.css nichts, der Code von FuchsFan aus #93 in der userChrome.css läßt die Tabs zusammengestaucht oberhalb der Menüleiste landen. Diese werden hier mit einem eigenen css unter die Menü-Leiste verfrachtet. Wenn ich dann den dafür zuständigen Code ebenfalls in die userChrome.css packe, ist es nicht mehr gestaucht aber immer noch oberhalb der Menü-Leiste.
Die Lösung von 2002Andreas aus #94 im Code für die Tab-Gestaltung hingegen funktioniert hier
und lässt auch den AddonManager unbehelligt.
Dann lasse ich es zunächst so. Vielen Dank und Euch eine schöne Woche!
-
Tja und hier ist die negative Wirkung des "Slot" - Codes:
Schade... da ich noch völlig jungfräulich mit der Shadow-Geschichte bin... ist irgendwo beschrieben, wie ichs angehen muss?
Bisher habe ich eine userChromeShadow.uc.js mit diesem Inhalt im chrome-Ordner gespeichert:
Code
Alles anzeigen// userChromeShadow.uc.js by aborix // 28.07.2022 FF104+ Fix: using PathUtils.join (Sören Hentzschel) (async function() { if (location != 'chrome://browser/content/browser.xhtml') return; try { let path = PathUtils.join(PathUtils.profileDir, 'chrome', 'userChromeShadow.css'); let cssIn = await IOUtils.readUTF8(path); let sss = Cc['@mozilla.org/content/style-sheet-service;1'].getService(Ci.nsIStyleSheetService); let uri = makeURI('data:text/css;charset=UTF=8,' + encodeURIComponent(cssIn)); sss.loadAndRegisterSheet(uri, sss.AUTHOR_SHEET); } catch(e) { console.log("UserChromeShadow-Error: " + e.name + ': ' + e.message ); }; })();
Desweiteren liegt im chrome-Ordner eine userChromeShadow.css mit diesem Inhalt
Code/*Tabs in Tableiste mittig*/ #tabbrowser-tabs:not([overflow="true"]) { --ug_tabs_position: center; } scrollbox[smoothscroll="true"] { justify-content: center !important ; }
Es funktioniert aber nicht.
Was muss ich ändern bzw am Code ergänzen?
-
Deswegen war ja auch meine dringende Empfehlung, meinen Code eben nicht einfach so in die userChrome.css zu schreiben, sondern das näher zu spezifizieren, wofür eine andere Methode erforderlich ist.
Ich nutze die userChrome.css nicht für das Eintragen von CSS-Code, siehe #46. Hier wird jeder CSS-Code im Unterordner CSS vom Chromeordner abgelegt und via UserCSSloader in den Fuchs gespritzt, möglich, dass dies irgendwann nicht mehr geht, dann werde ich mich mit der Shadow-Geschichte beschäftigen müssen.
-
Sören Hentzschel Vielen Dank für die (ggf. kurzfristig wirkende Lösung) und auch für den Hinweis auf die Latenz!
Damit ist mein Anliegen fürs Erste erledigt. Warten wir ab, was sich da noch tut.
Ich danke auch FuchsFan und 2002Andreas für die lösungsorientierte Mitwirkung! -
Ich wäre auch verbunden, wenn die Nebendiskussion über "Shadow-Dingens" woanders weitergeführt würde, auch das Design von Scrollbuttons ist für mich nicht relevant. Danke!
-
Meine Meinung, mit Kritik sollte immer sparsam umgegangen werden, erst recht, wenn man keine Lösung anbieten kann.
Danke für dein Verständnis
!
// Ich finde sowieso, dass Animositäten (komischerweise meist in letzter Zeit von Mitleser und auch von .DeJaVu ins Feld geführt werden) nicht zielführend sind. Ich bin in solchen Dingen einfach zu blöd. Da hilft es auch nicht, immer wieder darauf rumzureiten, ich solle mich in meiner Freizeit damit beschäftigen. Wer keine Lösung anbieten kann oder will, sollte vielleicht einfach sein M.... halten. Danke!
Sören Hentzschel Ich hatte weiter unten auch den ganzen CSS Code gepostet, der sich mit den Tabs beschäftigt. Ein Script konnte ich durch Testdurchgänge ausschließen ebenso weitere CSS-Codes
Es scheint ja so zu sein, dass mein Code (und der anderer Nutzer) bis 130 funktionierte. Die Frage ist bisher unbeantwortet, ob man das heilen kann?
Wenn das nicht mehr möglich ist, dann ist es eben so.
Und vielleicht nochmal als Info an alle: Ich habe keinen einzigen Code selbst entworfen sondern hier und da (vor allem bei Endor ) abgeschrieben und mit der Hilfe von Einigen für mich weiter angepasst. Ich nutze eine Vielzahl von CSS die mittels UserCSSLoader.uc.js geladen werden. Die userChrome.js sieht dementsprechend so aus:
-
Ich wollte mich gerade melden und mitteilen, das dein Code hier nix verändert...
Hoffen wir auf die Gelehrten.
-
Moin, habe mal wieder ein CSS-Problem:
Seit gestern funktioniert nachfolgender CSS bei mir im Nightly nicht mehr:
CSS/* Tabs in Tableiste mittig */ #tabbrowser-tabs:not([overflow="true"]) { --ug_tabs_position: center; } scrollbox[smoothscroll="true"] { display: flex !important; justify-content: center !important ; }
Bisher wurden verbleibende Tabs immer in der Mitte gruppiert. Wenn also nur noch ein Tab aufgerufen ist, steht dieser genau mittig. Jetzt "klebt" er oder auch noch andere an der linken Seite.
Hier ists noch richtig im 129.0.2
und so sieht es im Nightly aus
Was könnte da in die Suppe spucken?
Hier auch nochmal der ganze Code für diesen Bereich, falls da irgendwas rumspinnt:
CSS
Alles anzeigen/* Tabs rund und farbig */ /* Angaben für die TAB-Leiste */ /* TAB bei bei angewähltem TAB (aktiv): */ /* Hintergrundfarbe, Rahmen,*/ /* Schriftfarbe. */ .tabbrowser-tab:is([visuallyselected], [multiselected]) > .tab-stack > .tab-background { background: red !important; border-radius: 18px !important; margin-top: 2px !important; border: none !important; color: black ! important; margin-bottom: 0 !important; } .tab-background { outline: none !important; } /* Schliessen-Button nur wenn angewählt */ tab:not([selected]) .tab-close-button {display: none !important; } /* Schriftgröße Tabs */ .tab-text { font-size: 17px !important; } /* Damit wird der Tabtext am Ende schleichend ausgeblendet */ .tab-label-container[textoverflow][labeldirection=ltr]:not([pinned]), .tab-label-container[textoverflow]:not([labeldirection]):not([pinned]):-locale-dir(ltr) { direction: ltr; mask-image: linear-gradient(to left, transparent, black 1em) !important; } /* Doppelte Schliessung ausblenden */ #TabsToolbar > .titlebar-buttonbox-container { display:none !important; } .tabbrowser-tab[visuallyselected] .tab-label { font-weight: bold !important; } #TabsToolbar .tabbrowser-tab:not([selected]) { border-radius: 16px !important; height: 22px ! important; margin-top: 5px !important; padding: 0 !important; color: black ! important; } /* Tab-Icon etwas größer, * links weniger, unten etwas mehr Abstand zum TAB-Rand */ #TabsToolbar .tab-icon-image { height: 20px !important; width: 20px !important; margin-left: -2px !important; margin-bottom: 2px !important; } /* Tab-Schließen-Button: * Rechts weniger Abstand zum TAB-Rand, etwas größer, * Textfarbe (Kreuz) * Hintergrundfarbe, an den Eckenradius des Buttons angepasst */ #TabsToolbar .tab-close-button { margin-right: -8px !important; font-weight: bold !important; color: black !important; } #TabsToolbar .tab-close-button .toolbarbutton-icon { height: 20px !important; width: 20px !important; background-color: red !important; border-radius: 12px !important; } /* Aktiver Tab breiter */ .tabbrowser-tab:not([pinned]):not([selected]) { min-width: 200px !important; flex-grow: 0 !important; } .tabbrowser-tab:not([pinned])[selected] { min-width: 200px !important; flex-grow: 0 !important; } *|*:root { --tab-toolbar-navbar-overlap: 0 !important; } /* Lautsprechersymbol größer */ .tab-icon-overlay { transform: scale(1.8) !important; } image.tab-icon-overlay { margin-top: 3px !important; } /* Lautsprechersymbol violett bei Sound */ .tab-icon-overlay[soundplaying] { fill: blueviolet !important; margin-left: 5px !important; } /* Lautsprechersymbol gelb bei Stumm */ .tab-icon-overlay[muted] { fill: yellow !important; margin-left: 5px !important; } /* Tab Beschriftung mittig */ .tab-content { display: flex !important; margin-top: 2px !important; justify-content: center !important; align-items: center !important; } #TabsToolbar .tabbrowser-tab[selected] .tab-content { margin-top: 2px !important; } .tabbrowser-tab { min-height: 40px !important; max-height: 40px !important; } .tab-label-container { margin: auto !important; } .tabbrowser-tab > .tab-stack > .tab-content > .tab-close-button { flex-shrink: 0 !important; padding: 0 !important; width: 16px !important; } #TabsToolbar .toolbarbutton-1 { min-height: 34px !important; margin-top: 2px !important; margin-bottom: 2px !important; } #TabsToolbar .tabbrowser-tab:not([selected]) { min-height: 34px !important; border: 1px solid #B2B2B2 !important; } #TabsToolbar .toolbarbutton-1 > image { padding: 2px 4px !important; } /* Rahmen um die Tableiste durchsichtig */ #TabsToolbar { border: 0.2px solid transparent !important; } #TabsToolbar:hover { border: 0.2px solid transparent !important; } /* Tabs in Tableiste mittig */ #tabbrowser-tabs:not([overflow="true"]) { --ug_tabs_position: center; } scrollbox[smoothscroll="true"] { display: flex !important; justify-content: center !important ; } /* progress-bar page loading in the tab header */ .tabbrowser-tab:not([usercontextid]) > .tab-stack > .tab-background > .tab-context-line { opacity: 0; background-color: #00ff00; height: 6px; margin-inline: 8px; margin-top: 2px; border-radius: 90px; } .tabbrowser-tab:is([busy], [progress]) > .tab-stack > .tab-background > .tab-context-line { opacity: 1; transform-origin: left center; animation: 2s ease-in-out scale; } .tabbrowser-tab[bursting] > .tab-stack > .tab-background > .tab-context-line { transition: opacity 2s ease-out; } @keyframes scale { 0% {transform: scaleX(0);} 100% {transform: scaleX(1);} }
Der betroffene Code steht zwischen Zeile 174 bis 192
Für hilfreiche Hinweise sage ich schon mal Dankeschön! -
Diskothek im WDR Retro mit Guildo Horn
Musik von vor 50 Jahren... dieses Mal aber mit Ulf Pohlmeier, da der Meister noch im Urlaub ist.
*Nobbi* Vielen Dank für den obigen Link, durch den ich diese Reihe auf WDR 4 fand...
-
Moin, das ist sicher ganz prima, aber hast du das Script installiert und hast die festgestellten Mängel nach dem Anpassen des CSS durchgetestet?
Es geht erstmal nicht um die Kosmetik des CSS, sondern um die Funktions-Fehler.
-
Moin, im Wetterfuchs (siehe beigefügtes Script sowie die CSS-Datei) funktioniert so einiges nicht mehr:
Endor und ich haben mal eine Fehlerliste erstellt: Wer mag, kann ja mal schauen... Beide Dateien sind auf meine Bedürfnisse (Adressen etc) geändert, es wäre schön, wenn Änderungen auf der Basis der beiden Dateien gepostet würden.
Hier mal die Fehlerliste, die wir bisher festgestellt haben:
Doppelklick funktioniert, Mittelklick funktioniert, dort kann ich den Cookie-Dialog bestätigen, Rechtsklick funktioniert, dort ist das Fenster zu klein für die komplette Anzeige.-DE Wetterdaten funktioniert alles außer der UV Index. Das Fenster ist wieder zu klein, ab Bayern abwärts ist Schluss. PS: Kein Cookiedialog mehr
-DE Wetterkarten funktioniert alles außer Regenradar aktuell und die Regenradarprognose. (Hier die gestern schon beschriebenen Fehlermeldungen)
-EU Wetter funktioniert alles außer die Regenradarprognose, da wird die angesteuerte Webseite nicht gefunden (Cookiedialog von meteoradar.co.uk kann bestätigt werden, dann 404 page not found error. Wahrscheinlich wurde das Ziel intern verlegt!?)
-Welt Wetter , da erhalte ich 503 Service UnavailableNo server is available to handle this request.
- Regionales Wetter, da funktioniert Regenradar aktuell nicht, Fehlermeldung; Error 1016Ray ID: 8b3900b5b8ba9b1c • 2024-08-15 11:56:41 UTC
Origin DNS error
Die Regenradarprognose funktioniert, allerdings dauert es einen kleinen Moment bis die Webseite aufgebaut ist, außerdem muss man den Cookie-Dialog bestätigen.
CSS
Alles anzeigen// ==UserScript== // @name wetterfuchsbutton.uc.js // @compatibility Firefox 33. - 90+ // @include main // @region Braunschweig // @version 1.0.20190512 // ==/UserScript== var wetterfuchs = { urlobj: { MO_Doppelklick: {url:"https://www.msn.com/de-de/wetter/heute/Braunschweig,Deutschland/we-city-52.26,10.52",width:800,height:1000}, MO_Rechtsklick: {url:"http://www.wetter.net/1370/Braunschweig",width:820,height:440}, MO_Mittelklick: {url:"https://www.daswetter.com/wetter_Brunswick-Europa-Deutschland-Niedersachsen--1-487558.html",width:800,height:638}, DED_WetterAktuell: {url:"https://www.wetterkontor.de/de/deutschland_aktuell.asp?id=0&page=0&sort=0",width:640,height:880}, DED_Vorhersage: {url:"https://www.wetterkontor.de/de/wetter/deutschland.asp",width:670,height:780}, DED_Pollenbelastung: {url:"https://www.wetterkontor.de/de/bio/pollenflug-erle.asp",width:478,height:590}, DED_UVIndexVorhersage: {url:"https://www.wetterkontor.de/de/bio/uv-index.asp",width:478,height:590}, DE_WetterAktuell: {url:"https://www.dwd.de/DWD/wetter/aktuell/deutschland/bilder/wx_deutschland.jpg",width:780,height:520}, DE_Vorhersage: {url:"https://www.dwd.de/DWD/wetter/wv_allg/deutschland/film/vhs_deutschland.jpg",width:780,height:485}, DE_Unwetterwarnung: {url:"http://www.unwetterzentrale.de/images/map/deutschland_index.png",width:572,height:572}, DE_RegenradarAktuell: {url:"https://www.niederschlagsradar.de/image.ashx",width:568,height:530}, DE_RegenradarPrognose: {url:"https://www.niederschlagsradar.de/images.aspx?srt=loopvorhersage&jaar=-3®io=homepage&tijdid=&m=&d=&uhr=&mi=",width:568,height:530}, EU_AktuellVorhersage: {url:"https://www.wetterkontor.de/de/wetter/europa/",width:680,height:690}, EU_Unwetterwarnung: {url:"http://www.unwetterzentrale.de/images/map/europe_index.png",width:572,height:572}, EU_RegenradarAktuell: {url:"http://www.meteox.de/images.aspx?jaar=-3&voor=&soort=loop-bliksem&c=&n=&tijdid=20128241541",width:570,height:570}, EU_RegenradarPrognose: {url:"https://www.niederschlagsradar.de/niederschlagsprognose.aspx?type=1&continent=europa",width:553,height:645}, WE_WetterAktuell: {url:"http://www.meteocentrale.ch/de/wetter/weltwetter.html#sytl",width:575,height:360}, RE_AktuellVorhersage: {url:"https://www.wetterkontor.de/de/wetter/deutschland/niedersachsen-bremen.asp",width:675,height:640}, RE_Unwetterwarnung: {url:"https://www.wetterkontor.de/warnungen/wetterwarnungen-niedersachsen-bremen.asp",width:850,height:480}, RE_RegenradarAktuell: {url:"https://www.niederschlagsradar.de/image.ashx?type=regioloop®io=mgd&j=&m=&d=&mi=&uhr=&bliksem=0&voor=&srt=loop1stunde&tijdid=2021212177",width:568,height:530}, RE_RegenradarPrognose: {url:"https://www.wetteronline.de/regenradar/niedersachsen?mode=interactive&wrx=52.29,10.48&wrm=9",width:850,height:850}, }, wfthrobber: "https://raw.github.com/ardiman/userChrome.js/master/wetterfuchsbutton/loading51.gif", // alternativ z.B. wfthrobber: "chrome://global/skin/media/throbber.png" createBtn: function() { try { CustomizableUI.createWidget({ id: 'wetterfuchs-toolbarbutton', type: 'custom', onBuild: function(aDocument) { var toolbaritem = aDocument.createElementNS('http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul','toolbarbutton'); var attributes = { id: 'wetterfuchs-toolbarbutton', class: 'chromeclass-toolbar-additional', type: 'menu', removable: 'true', label: 'Wetterfuchs', tooltiptext: 'Lokale und globale Wetter Infos', oncontextmenu: "return false", ondblclick: "if (event.button === 0) { wetterfuchs.openPanel(\'MO_Doppelklick\',event,\'b\')}", onclick: "if (event.button === 1) {wetterfuchs.openPanel(\'MO_Mittelklick\',event,\'b\')};if (event.button === 2) {wetterfuchs.openPanel(\'MO_Rechtsklick\',event,\'b\')}", style: 'list-style-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAD+0lEQVQ4jb3Tf0zUZRwH8LdgEngngitiMVBXcxH4h+lmETndkqVIOYemrewH4ipJmCjmmDLJRmrKBkPgMNYSMYNN3cQ1YoG4ovjpwQEnX+644ziP7/fbHd9z4SnH8+4PxXIWtLX13j7bsz17Xtvz+TwP8H9lfXx02NT62HJd3JHlurgHe9GhYX9/appkx+k31m0JKtEBzzdlLLz08+6FlxcAz9VtCi7JjtNv/NfQ60sXJQJA/VocutVx6I77+9fGbl/fNeG7nu53X355zNu89W5DSkA+AGyIj1o1I1i1KtQglyzn2MUk/+TNYgq1nEIuohg9TuHK56Qtg2PfxftdJ2L4zStzK6azHgOwoDNRf9Q/kEPeqiJ/MwiqZaRSQsqFpOswhSNL0PEeJ9pXsDVBd1IH3ZMA5jyiFSwOWt//2eIfTF+lyt3XjrCvrZjjN0vJsQpSOUbezCQdH5D2N0nrBk6aYun5+nHF+KmusXDJ/JRHwI7UrS9WH05TW1quUZLMorOjlacNp9j/ay7p2kmquyhGd5HOHeTwNgrLq0J0hfPGhyE9BUA0gICHwIq8vNy2tva7DoeDZrOZNTU1rK6uZl1dPc+fr+HF2uOUBw9SKPtJ18fk8FZOGqPYsy34l1Ig9iEwBogs+uLzVpPJRIvFIoxGIxsaGihJEm02G212O43dfaysrKC9L4/05JDOHRTmeKHVzOaVJH1tInRPTHmBGe9v3/NTc/P40NAQrVYrJUni4ODgPcxm4/DwMB0OBzs6Onm2qpAj/bmcdKZTmBbRtD2o80pw4MZ9gB4AkJaWFnHhwoU7qqrS6XSKkZGRB5DL5aIsy1QUhaqq0uVycWBggF1d7aLlx+OcuB4hpMwQaz6w5P4rAVJSUhJ6e3vpdrupKAplWaYkSTSZTJRlmZqm0ev10uv1UtM0jo+P0+fzcXBIFj1nEiekzBDnt0vnffKgfytXrlxWX1/v93g8dLvdtFqt7O7uFhaLhXa7nYqiUNM0appGVVXp8/mE3+/nrdvjrMrY214FJJUBkX8dSkRycvKpsrIy58VLl+5cbW6m0WgUHo+HsizT1NtLVVWpaRodIyNUVDdv+3x0jI6y8I017SeAp7OBuQBmTYEBAGL1ev27EWFhB/ZnZTkbm5rYb77BltZWGsrLRWPTVfaZB1h7tpKGL/ewsqTo992bNnXs0wfvBRD0T19vdjgQFQmkLwkPN2x+aVnbO3ExA6uB2p0vPGX7KOEZxzrgXE402rbMw7nVwOZS4NnpwKkEA4hZByRnAm/lA2tP6HHgaAgOngTW1ABJZ4AV9282awbrz2QBwQVAaCowpxiIMQCLUoE5ecD8t+/17D8l8H7NmD8Aw0h46qvM+RMAAAAASUVORK5CYII=)' }; for (var a in attributes) toolbaritem.setAttribute(a, attributes[a]); appendMenupopup(toolbaritem); return toolbaritem; } }); addCss(); } catch(e) { }; function appendMenupopup(toolbaritem) { let mymenu = document.createXULElement('menupopup'); mymenu.id = 'wetterfuchsmenu'; toolbaritem.appendChild(mymenu); function appendMenu(label, id, Items) { let menu = document.createXULElement('menu'); menu.setAttribute('label', label); mymenu.appendChild(menu); let menupopup = document.createXULElement('menupopup'); menupopup.id = id; menu.appendChild(menupopup); for (let item of Items) { let menuitem = document.createXULElement('menuitem'); menuitem.setAttribute('label', item[0]); menuitem.setAttribute('oncommand', item[1]); menupopup.appendChild(menuitem); }; }; appendMenu("DE Wetterdaten", "wetterfuchsdatamenu", [ ["Wetter aktuell", "wetterfuchs.openPanel(\'DED_WetterAktuell\',event,\'p\')"], ["Vorhersage", "wetterfuchs.openPanel(\'DED_Vorhersage\',event,\'p\')"], ["Pollenbelastung", "wetterfuchs.openPanel(\'DED_Pollenbelastung\',event,\'p\')"], ["UV-Index", "wetterfuchs.openPanel(\'DED_UVIndexVorhersage\',event,\'p\')"] ]); appendMenu("DE Wetterkarten", "wetterfuchsDEmapsmenu", [ ["Wetter aktuell", "wetterfuchs.openPanel(\'DE_WetterAktuell\',event,\'p\')"], ["Vorhersage", "wetterfuchs.openPanel(\'DE_Vorhersage\',event,\'p\')"], ["Unwetterwarnung", "wetterfuchs.openPanel(\'DE_Unwetterwarnung\',event,\'p\')"], ["Regenradar aktuell", "wetterfuchs.openPanel(\'DE_RegenradarAktuell\',event,\'p\')"], ["Regenradarprognose", "wetterfuchs.openPanel(\'DE_RegenradarPrognose\',event,\'p\')"] ]); appendMenu("EU Wetter", "wetterfuchsEUmapsmenu", [ ["Aktuell und Vorhersage", "wetterfuchs.openPanel(\'EU_AktuellVorhersage\',event,\'p\')"], ["Unwetterwarnung", "wetterfuchs.openPanel(\'EU_Unwetterwarnung\',event,\'p\')"], ["Regenradar aktuell", "wetterfuchs.openPanel(\'EU_RegenradarAktuell\',event,\'p\')"], ["Regenradarprognose", "wetterfuchs.openPanel(\'EU_RegenradarPrognose\',event,\'p\')"] ]); appendMenu("Welt Wetter", "wetterfuchsWEmapsmenu", [ ["Aktuell und Vorhersage", "wetterfuchs.openPanel(\'WE_WetterAktuell\',event,\'p\')"] ]); appendMenu("Regionales Wetter", "wetterfuchsRegiomapsmenu", [ ["Aktuell und Vorhersage", "wetterfuchs.openPanel(\'RE_AktuellVorhersage\',event,\'p\')"], ["Unwetterwarnung", "wetterfuchs.openPanel(\'RE_Unwetterwarnung\',event,\'p\')"], ["Regenradar aktuell", "wetterfuchs.openPanel(\'RE_RegenradarAktuell\',event,\'p\')"], ["Regenradarprognose", "wetterfuchs.openPanel(\'RE_RegenradarPrognose\',event,\'p\')"] ]); }; function addCss() { /* var css = '@-moz-document domain(daswetter.com), \ domain(dwd.de), \ domain(meteocentrale.ch), \ domain(niederschlagsradar.de), \ domain(www.meteox.de), \ domain(msn.com), \ domain(wetter.faz.net), \ domain(wetter.de), \ domain(wetter.net), \ domain(wetterkontor.de), \ domain(wetteronline.de) { \ scrollbar {display: none !important;} \ }'; */ if (Services.appinfo.version.split('.')[0] <= 56) { css += '@-moz-document url(AppConstants.BROWSER_CHROME_URL) { \ #wetterfuchs-toolbarbutton .toolbarbutton-icon {max-width: none !important} \ }'; }; var cssUri = Services.io.newURI('data:text/css,' + encodeURIComponent(css), null, null); var SSS = Cc['@mozilla.org/content/style-sheet-service;1'].getService(Ci.nsIStyleSheetService); SSS.loadAndRegisterSheet(cssUri, SSS.AGENT_SHEET); }; }, init: function() { this.createBtn(); let panel = document.createXULElement('panel'); panel.id = "wetterfuchs-panel"; panel.setAttribute('noautohide', "false"); panel.setAttribute('type', "arrow"); panel.setAttribute('onpopuphiding', "wetterfuchs.clearPanel()"); panel.setAttribute('onmousedown', "if (event.button == 1) wetterfuchs.openUrlFromPanel()"); document.getElementById('mainPopupSet').appendChild(panel); let vbox = document.createXULElement('vbox'); panel.appendChild(vbox); let browser = document.createXULElement('browser'); browser.id = "wetterfuchs-iframe"; browser.setAttribute('type', 'content'); browser.setAttribute('flex', '1'); browser.setAttribute('remote', 'true'); browser.setAttribute('src', this.wfthrobber); vbox.appendChild(browser); }, myEventhandler: function (e,toDo) { switch (toDo) { case "p": e.preventDefault(); break; case "s": e.stopPropagation(); break; case "b": e.preventDefault(); e.stopPropagation(); break; } }, clearPanel: function() { var myiframe = document.getElementById("wetterfuchs-iframe"); myiframe.parentNode.width = 146; myiframe.parentNode.height = 146; myiframe.setAttribute("src",this.wfthrobber); }, openUrlFromPanel: function() { openWebLinkIn(document.getElementById("wetterfuchs-iframe").getAttribute("src"), "tab"); document.getElementById("wetterfuchs-panel").hidePopup(); }, openPanel: function(bezeichner,e,toDo) { this.myEventhandler(e,toDo); var mymenu = document.getElementById("wetterfuchsmenu"); if (mymenu.state === "open" && e.button !== 0) return; mymenu.hidePopup(); var myiframe = document.getElementById("wetterfuchs-iframe"); myiframe.parentNode.style.width = this.urlobj[bezeichner]["width"]+'px'; myiframe.parentNode.style.height = this.urlobj[bezeichner]["height"]+'px'; myiframe.setAttribute("src",this.urlobj[bezeichner]["url"]); var mypanel = document.getElementById("wetterfuchs-panel"); mypanel.openPopup(document.getElementById("wetterfuchs-toolbarbutton")); }, }; if (location == AppConstants.BROWSER_CHROME_URL) wetterfuchs.init();
CSS
Alles anzeigen/* AGENT_SHEET */ @namespace url(http://www.w3.org/1999/xhtml); /* Vorhersage klick auf Fahnen */ @-moz-document url-prefix("https://www.wetterkontor.de/de/wetter/schweden/"), url-prefix("https://www.wetterkontor.de/de/wetter/norwegen/"), url-prefix("https://www.wetterkontor.de/de/wetter/finnland/"), url-prefix("https://www.wetterkontor.de/de/wetter/daenemark/"), url-prefix("https://www.wetterkontor.de/de/wetter/niederlande/"), url-prefix("https://www.wetterkontor.de/de/wetter/belgien/"), url-prefix("https://www.wetterkontor.de/de/wetter/grossbritannien/"), url-prefix("https://www.wetterkontor.de/de/wetter/irland/"), url-prefix("https://www.wetterkontor.de/de/wetter/island/"), url-prefix("https://www.wetterkontor.de/de/wetter/griechenland/"), url-prefix("https://www.wetterkontor.de/de/wetter/luxemburg/"), url-prefix("https://www.wetterkontor.de/de/wetter/frankreich/"), url-prefix("https://www.wetterkontor.de/de/wetter/spanien/"), url-prefix("https://www.wetterkontor.de/de/wetter/oesterreich/"), url-prefix("https://www.wetterkontor.de/de/wetter/schweiz/"), url-prefix("https://www.wetterkontor.de/de/wetter/italien/"), url-prefix("https://www.wetterkontor.de/de/wetter/tschechische-republik/"), url-prefix("https://www.wetterkontor.de/de/wetter/slowakei/"), url-prefix("https://www.wetterkontor.de/de/wetter/slowenien/"), url-prefix("https://www.wetterkontor.de/de/wetter/polen/"), url-prefix("https://www.wetterkontor.de/de/wetter/russische-foederation/"), url-prefix("https://www.wetterkontor.de/de/wetter/estland/"), url-prefix("https://www.wetterkontor.de/de/wetter/lettland/"), url-prefix("https://www.wetterkontor.de/de/wetter/litauen/"), url-prefix("https://www.wetterkontor.de/de/wetter/ukraine/"), url-prefix("https://www.wetterkontor.de/de/wetter/ungarn/"), url-prefix("https://www.wetterkontor.de/de/wetter/rumaenien/"), url-prefix("https://www.wetterkontor.de/de/wetter/bulgarien/"), url-prefix("https://www.wetterkontor.de/de/wetter/tuerkei/"), url-prefix("https://www.wetterkontor.de/de/wetter/griechenland/"), url-prefix("https://www.wetterkontor.de/de/wetter/serbien/"), url-prefix("https://www.wetterkontor.de/de/wetter/kroatien/"), url-prefix("https://www.wetterkontor.de/de/wetter/bosnien-herzegowina/"), url-prefix("https://www.wetterkontor.de/de/wetter/montenegro/"), url-prefix("https://www.wetterkontor.de/de/wetter/mazedonien/"), url-prefix("https://www.wetterkontor.de/de/wetter/albanien/"), url-prefix("https://www.wetterkontor.de/de/wetter/portugal/") { @-moz-document url-prefix("https://www.wetterkontor.de"){ #sp_message_container_733771 {display: none !important;} } html{scrollbar-width: none !important;} #header, H2, HR, P, #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(3) > DIV:first-child > UL > LI:last-child, .uk-breadcrumb, .uk-width-large-2-5.uk-width-medium-1-3, .uk-panel.uk-panel-box.uk-margin, .uk-grid.uk-grid-small.uk-grid-divider, #wkFooter2, .cc_banner.cc_container.cc_container--open, #sp_message_container_421683, #shr-admin-badge, .cc-window, div.uk-grid-small > div:nth-child(1) > div:nth-child(1), div.uk-grid-small > div:nth-child(2), div.uk-grid:nth-child(3), div.uk-panel:nth-child(14), div.uk-panel:nth-child(13){display: none !important;} .cc-window.cc-banner.cc-type-info.cc-theme-block.cc-top.cc-color-override-530831885, #page_margins > DIV > DIV > DIV:first-child > DIV:first-child > DIV, #page_margins > DIV > DIV > DIV:last-child, #page_margins > DIV > DIV > DIV:first-child > DIV:last-child, #content > DIV > DIV:first-child > UL:nth-child(3), #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(3) > DIV:first-child > UL > LI:first-child > A, #content > DIV > DIV:first-child > ARTICLE > H2:nth-child(8), #content > DIV > DIV:first-child > ARTICLE > H2:nth-child(10), #content > DIV > DIV:first-child > ARTICLE > DIV:last-child, #content > DIV > DIV:first-child > UL:nth-child(8) > LI > A, #content > DIV > DIV:first-child > DIV:nth-child(8) > A, .uk-panel, #sp_message_container_421683,, .uk-width-small-1-2.uk-width-medium-1-2, .uk-panel.uk-panel-box{display: none !important;} #page{box-shadow: none!important; border: none !important;} #content {height: 670px !important;} HTML, #start, .uk-grid {background: #FFFFFF !important;} #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(3) > UL:last-child {margin-top: 100px !important; margin-bottom: -45px !important;} H1{margin-left: 210px !important;} } @-moz-document url-prefix("https://www.wetterkontor.de/de/klima/") { html{scrollbar-width: none !important;} #header, H2, HR, P, #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(3) > DIV:first-child > UL > LI:last-child, .uk-breadcrumb, .uk-width-large-2-5.uk-width-medium-1-3, .uk-panel.uk-panel-box.uk-margin, .uk-grid.uk-grid-small.uk-grid-divider, #wkFooter2, .cc_banner.cc_container.cc_container--open, #sp_message_container_421683, #shr-admin-badge, .cc-window, div.uk-grid-small > div:nth-child(1) > div:nth-child(1), div.uk-grid-small > div:nth-child(2), div.uk-grid:nth-child(3), div.uk-panel:nth-child(14){display: none !important;} .cc-window.cc-banner.cc-type-info.cc-theme-block.cc-top.cc-color-override-530831885, #page_margins > DIV > DIV > DIV:first-child > DIV:first-child > DIV, #page_margins > DIV > DIV > DIV:last-child, #page_margins > DIV > DIV > DIV:first-child > DIV:last-child, #content > DIV > DIV:first-child > UL:nth-child(3), #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(3) > DIV:first-child > UL > LI:first-child > A, #content > DIV > DIV:first-child > ARTICLE > H2:nth-child(8), #content > DIV > DIV:first-child > ARTICLE > H2:nth-child(10), #content > DIV > DIV:first-child > ARTICLE > DIV:last-child, #content > DIV > DIV:first-child > UL:nth-child(8) > LI > A, #content > DIV > DIV:first-child > DIV:nth-child(8) > A, .uk-panel, #sp_message_container_421683,, .uk-width-small-1-2.uk-width-medium-1-2, .uk-panel.uk-panel-box{display: none !important;} #page{box-shadow: none!important; border: none !important;} #content {height: 670px !important;} HTML, #start, .uk-grid {background: #FFFFFF !important;} #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(3) > UL:last-child {margin-top: 100px !important; margin-bottom: -45px !important;} H1{margin-left: 210px !important;} } @-moz-document url-prefix("https://www.wetterkontor.de/"){ .icon-bar {display: none !important;} } @-moz-document domain("www.wetterkontor.de"){ #sp_message_container_888316 {display: none !important;} @-moz-document url-prefix("https://www.wetterkontor.de/de/wetter/deutschland/rueckblick.asp"){ html{scrollbar-width: none !important;} #header, H2, HR, P, .uk-breadcrumb, .uk-width-large-2-5.uk-width-medium-1-3, .uk-panel.uk-panel-box.uk-margin, .uk-grid.uk-grid-small.uk-grid-divider, #wkFooter2, .cc_banner.cc_container.cc_container--open, #sp_message_container_421683, #shr-admin-badge, div.uk-grid-small > div:nth-child(1) > div:nth-child(1), div.uk-grid-small > div:nth-child(2), div.uk-grid:nth-child(3), div.uk-panel:nth-child(14),div.uk-margin:nth-child(17), ins.adsbygoogle:nth-child(4), .cc-window.cc-banner.cc-type-info.cc-theme-block.cc-top.cc-color-override-530831885, #page_margins > DIV > DIV > DIV:first-child > DIV:first-child > DIV, #page_margins > DIV > DIV > DIV:last-child, #page_margins > DIV > DIV > DIV:first-child > DIV:last-child, #content > DIV > DIV:first-child > UL:nth-child(3), #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(3) > DIV:first-child > UL > LI:last-child, #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(3) > DIV:first-child > UL > LI:first-child > A, #content > DIV > DIV:first-child > ARTICLE > H2:nth-child(8), #content > DIV > DIV:first-child > ARTICLE > H2:nth-child(10), #content > DIV > DIV:first-child > ARTICLE > DIV:last-child, #content > DIV > DIV:first-child > UL:nth-child(8) > LI > A, #content > DIV > DIV:first-child > DIV:nth-child(8) > A, .uk-panel, #sp_message_container_421683, .uk-width-small-1-2.uk-width-medium-1-2, .uk-panel.uk-panel-box, #content > DIV > DIV:first-child > DIV:first-child > UL > LI:last-child, .uk-width-large-2-5.uk-width-medium-1-3.uk-hidden-small, .uk-text-right, .uk-width-large-2-5.uk-width-medium-1-2, #content > DIV > DIV:first-child > DIV:nth-child(21), #content > DIV > DIV:first-child > DIV:nth-child(10), .banner728x90, #content > DIV > DIV:first-child > DIV:nth-child(8), div.uk-panel:nth-child(6), #tage5bis8, .uk-width-large-1-6.uk-hidden-small.uk-hidden-medium, .uk-grid.uk-margin.uk-hidden-small.uk-hidden-medium, #tabelle > p:nth-child(5){display: none !important;} #page{box-shadow: none!important; border: none !important;} #content {height: 670px !important;} HTML, #start, .uk-grid {background: #FFFFFF !important;} #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(3) > UL:last-child {margin-top: 100px !important; margin-bottom: -45px !important;} H1{margin-left: 210px !important;} body {margin-top: 25px !important;} #content > article:nth-child(1) > h1:nth-child(2){margin-left: 15px !important;} } @-moz-document url("https://www.wetterkontor.de/de/wetter/deutschland/") { html{scrollbar-width: none !important;} #header, H1,H2, HR, P, #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(3) > DIV:first-child > UL > LI:last-child, .uk-breadcrumb, .uk-width-large-2-5.uk-width-medium-1-3, .uk-panel.uk-panel-box.uk-margin, #sp_message_container_421683, .uk-grid.uk-grid-small.uk-grid-divider, #wkFooter2, .uk-list, .cc_banner.cc_container.cc_container--open {display: none !important;} #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(3) > DIV:first-child > UL > LI:first-child > A, #content > DIV > DIV:first-child > H1, #shr-admin-badge, #content > DIV > DIV:first-child > ARTICLE > H2:nth-child(8), #content > DIV > DIV:first-child > ARTICLE > H2:nth-child(10), #content > DIV > DIV:first-child > ARTICLE > DIV:last-child, #sp_message_container_421683, .cc-window.cc-banner.cc-type-info.cc-theme-block.cc-top.cc-color-override-530831885, #page_margins > DIV > DIV > DIV:first-child > DIV:first-child > DIV, #page_margins > DIV > DIV > DIV:last-child, #page_margins > DIV > DIV > DIV:first-child > DIV:last-child, .uk-width-small-1-2.uk-width-medium-1-2, .uk-text-right.uk-text-small.uk-text-muted, .uk-form-row, .uk-panel.uk-panel-box{display: none !important;} #page_margins { margin-top: -115px !important;} #page{box-shadow: none!important; border: none !important;} HTML, #start, .uk-grid {background: #FFFFFF !important;} #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(3) > UL:last-child {margin-top: 100px !important; margin-bottom: -45px !important;} #wkRCol > TABLE > TBODY > TR > TD:first-child > DIV > DIV:nth-child(8), #wkRCol > TABLE > TBODY > TR > TD:first-child > DIV > DIV:nth-child(9) { width: 0px !important;} } @-moz-document url-prefix("https://www.wetterkontor.de/wetter-vorhersage/deutschland/muenchen"){ html{scrollbar-width: none !important;} #header, H1,H2, HR, P, #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(3) > DIV:first-child > UL > LI:last-child, .uk-breadcrumb, .uk-width-large-2-5.uk-width-medium-1-3, .uk-panel.uk-panel-box.uk-margin, .uk-grid.uk-grid-small.uk-grid-divider, #wkFooter2, .uk-list, .cc_banner.cc_container.cc_container--open, #sp_message_container_421683 {display: none !important;} #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(3) > DIV:first-child > UL > LI:first-child > A, #content > DIV > DIV:first-child > H1, #shr-admin-badge, #sp_message_container_421683, #content > DIV > DIV:first-child > ARTICLE > H2:nth-child(8), #content > DIV > DIV:first-child > ARTICLE > H2:nth-child(10), #content > DIV > DIV:first-child > ARTICLE > DIV:last-child, .uk-width-small-1-2.uk-width-medium-1-2, .uk-text-right.uk-text-small.uk-text-muted, .uk-form-row, .uk-panel.uk-panel-box{display: none !important;} } @-moz-document url-prefix("https://www.wetterkontor.de/wetter-vorhersage/deutschland/(*)"){ html{scrollbar-width: none !important;} #page {margin-top: -10px !important;} .breadcrumb {margin-top: 5px !important;} #header > DIV:first-child, #header > DIV:last-child, #wkFooter2, #content > DIV > DIV:last-child > DIV:nth-child(14), #shr-admin-badge, .cc-window.cc-banner.cc-type-info.cc-theme-block.cc-top.cc-color-override-530831885, #page_margins > DIV > DIV > DIV:first-child > DIV:first-child > DIV, #page_margins > DIV > DIV > DIV:last-child, #sp_message_container_421683, #page_margins > DIV > DIV > DIV:first-child > DIV:last-child {display: none !important;} } @-moz-document url("https://www.wetterkontor.de/de/wetter/deutschland/bayern.asp"), url("https://www.wetterkontor.de/de/wetter/deutschland/schleswigholstein-hamburg.asp"), url("https://www.wetterkontor.de/de/wetter/deutschland/badenwuerttemberg.asp"), url("https://www.wetterkontor.de/de/wetter/deutschland/brandenburg-berlin.asp"), url("https://www.wetterkontor.de/de/wetter/deutschland/niedersachsen.asp"), url("https://www.wetterkontor.de/de/wetter/deutschland/niedersachsen-bremen.asp"), url("https://www.wetterkontor.de/de/wetter/deutschland/hessen.asp"), url("https://www.wetterkontor.de/de/wetter/deutschland/mecklenburgvorpommern.asp"), url("https://www.wetterkontor.de/de/wetter/deutschland/nordrheinwestfalen.asp"), url("https://www.wetterkontor.de/de/wetter/deutschland/rheinlandpfalz-saarland.asp"), url("https://www.wetterkontor.de/de/wetter/deutschland/sachsen.asp"), url("https://www.wetterkontor.de/de/wetter/deutschland/sachsenanhalt.asp"), url("https://www.wetterkontor.de/de/wetter/deutschland/thueringen.asp"){ html{scrollbar-width: none !important;} #header, H1,H2, HR, P, #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(3) > DIV:first-child > UL > LI:last-child, .cc-window.cc-banner.cc-type-info.cc-theme-block.cc-top.cc-color-override-530831885, #page_margins > DIV > DIV > DIV:first-child > DIV:first-child > DIV, #page_margins > DIV > DIV > DIV:last-child, #sp_message_container_421683, #page_margins > DIV > DIV > DIV:first-child > DIV:last-child, .uk-breadcrumb, .uk-width-large-2-5.uk-width-medium-1-3, .uk-panel.uk-panel-box.uk-margin, .uk-grid.uk-grid-small.uk-grid-divider, #wkFooter2, .cc_banner.cc_container.cc_container--open, #bnr, #maine0d59d447b, .mir_info.mir_info-outside {display: none !important;} #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(3) > DIV:first-child > UL > LI:first-child > A, #content > DIV > DIV:first-child > H1, #sp_message_container_421683, #content > DIV > DIV:first-child > ARTICLE > H2:nth-child(8), #content > DIV > DIV:first-child > ARTICLE > H2:nth-child(10), #content > DIV > DIV:first-child > ARTICLE > DIV:last-child, .uk-width-small-1-2.uk-width-medium-1-2, #shr-admin-badge, .uk-text-right.uk-text-small.uk-text-muted, .uk-form-row, .uk-panel.uk-panel-box{display: none !important;} #page_margins { margin-top: -100px !important;} #page{box-shadow: none!important; border: none !important;} HTML, #start, .uk-grid {background: #FFFFFF !important;} #content > DIV > DIV:first-child > DIV:nth-child(3) > UL:last-child > LI:first-child {margin-top: 100px !important; margin-bottom: -50px !important;} #content > DIV > DIV:first-child > DIV:nth-child(3) > UL:last-child > LI:last-child {margin-top: 100px !important; margin-bottom: -50px !important;} } @-moz-document url-prefix("https://www.wetterkontor.de/de/wetter/deutschland/wetter-vorhersage-ort.asp"){ html{scrollbar-width: none !important;} #header, H1, H2, HR, P, #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(3) > DIV:first-child > UL > LI:last-child, .uk-breadcrumb, .uk-width-large-2-5.uk-width-medium-1-3, #sp_message_container_421683,, .uk-panel.uk-panel-box.uk-margin, #sp_message_container_421683, .uk-grid.uk-grid-small.uk-grid-divider, #wkFooter2, .cc_banner.cc_container.cc_container--open {display: none !important;} #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(3) > DIV:first-child > UL > LI:first-child > A, #content > DIV > DIV:first-child > H1, #shr-admin-badge, #content > DIV > DIV:first-child > ARTICLE > DIV:last-child, #content > DIV > DIV:first-child > DIV:nth-child(6) > DIV > UL, #content > DIV > DIV:first-child > DIV:first-child, #content > DIV > DIV:first-child > DIV:nth-child(20), #content > DIV > DIV:first-child > P:nth-child(27), #content > DIV > DIV:first-child > P:last-child, #content > DIV > DIV:first-child > DIV:nth-child(14) > DIV, #content > DIV > DIV:first-child > DIV:nth-child(23) > P:last-child > A, .uk-subnav.uk-subnav-pill, .uk-subnav.uk-subnav-line, .uk-width-small-1-2.uk-width-medium-1-2, .uk-form-row {display: none !important;} #content > DIV > DIV:first-child > UL:nth-child(9) > LI:nth-child(2), #content > DIV > DIV:first-child > UL:nth-child(9) > LI:first-child, #content > DIV > DIV:first-child > UL:nth-child(9) > LI:nth-child(3), #content > DIV > DIV:first-child > UL:nth-child(9) > LI:last-child, #content > DIV > DIV:first-child > UL:nth-child(17) > LI:first-child, #content > DIV > DIV:first-child > UL:nth-child(17) > LI:nth-child(2), #content > DIV > DIV:first-child > UL:nth-child(17) > LI:nth-child(3), #content > DIV > DIV:first-child > UL:nth-child(17) > LI:last-child {max-width: 150px !important; margin-left: 15px !important; margin-right: -15px !important;} #warnungen > H2{margin-left: 10px !important;} #content > DIV > DIV:first-child > DIV:nth-child(23) > DIV > DIV:last-child{min-width: 200px !important;} #content > DIV > DIV:first-child > H2:nth-child(5){ margin-left: 70px !important; margin-top: -25px !important;} #content > DIV > DIV:first-child > H2:nth-child(8){ margin-left: 130px !important;} #content > DIV > DIV:first-child > H2:nth-child(16){ margin-left: 220px !important;} #content > DIV > DIV:first-child > DIV:nth-child(23) > P:nth-child(2) > SPAN { margin-left: 12px !important;} #content > DIV > DIV:first-child > DIV:nth-child(23) > H3 { margin-left: 12px !important; margin-right: -10px !important;} #content > DIV > DIV:first-child > DIV:nth-child(23) > DIV > DIV:first-child {width: 360px !important; margin-left: 10px !important; margin-right: -30px !important;} #content > DIV > DIV:first-child > DIV:nth-child(23) > DIV > DIV:first-child > DL {width: 500px !important; margin-left: 10px !important;} #content > DIV > DIV:first-child > DIV:nth-child(23) > DIV > DIV:nth-child(2), #content > DIV > DIV:first-child > DIV:nth-child(23) > DIV > DIV:last-child {max-width: 110px !important; } } @-moz-document url-prefix("https://www.wetterkontor.de/de/aktuelle-werte-deutschland-gefuehlte-temperatur.asp"), url-prefix("https://www.wetterkontor.de/de/aktuelle-werte-deutschland-feuchte.asp"), url-prefix("https://www.wetterkontor.de/de/aktuelle-werte-deutschland-sichtweite.asp"), url-prefix("https://www.wetterkontor.de/de/aktuelle-werte-deutschland-druck.asp"), url-prefix("https://www.wetterkontor.de/de/aktuelle-werte-deutschland-wind.asp"), url-prefix("https://www.wetterkontor.de/de/aktuelle-werte-deutschland-wetter.asp"), url-prefix("https://www.wetterkontor.de/de/aktuelle-werte-deutschland-niederschlag.asp"), url-prefix("https://www.wetterkontor.de/de/aktuelle-werte-deutschland-temperatur.asp"), url-prefix("https://www.wetterkontor.de/de/aktuelle-werte-deutschland-sonnenscheindauer.asp"){ html{scrollbar-width: none !important;} /*Text unten unsichtbar*/ .uk-article { font-size: 0px;} /*Textbox über dem Datum wieder lesbar*/ .uk-panel.uk-panel-box { color: black; font-size: 13px;} DIV[data-uk-tooltip=""]{ font-size: 12px!important; color: black!important;} div.uk-grid-small > div:nth-child(2), .cc-window.cc-banner.cc-type-info.cc-theme-block.cc-top.cc-color-override-530831885, #page_margins > DIV > DIV > DIV:first-child > DIV:last-child, .uk-align-medium-right, div.uk-h3, div.uk-margin:nth-child(12), .uk-width-large-3-5 > article:nth-child(1) > h4:nth-child(10), .uk-width-large-3-5 > article:nth-child(1) > h4:nth-child(14), .uk-width-large-3-5 > article:nth-child(1) > h4:nth-child(11), div.uk-grid-small > div:nth-child(1) > div:nth-child(1) > div:nth-child(1), .uk-width-large-3-5 > article:nth-child(1) > hr:nth-child(8), .uk-width-large-3-5 > article:nth-child(1) > hr:nth-child(9), .uk-width-large-3-5 > article:nth-child(1) > h3:nth-child(9), .uk-width-large-3-5 > article:nth-child(1) > h3:nth-child(10), .uk-width-large-3-5 > article:nth-child(1) > h4:nth-child(13), .uk-width-large-3-5 > article:nth-child(1) > h4:nth-child(15), .uk-width-large-3-5 > article:nth-child(1) > h4:nth-child(16), .uk-width-large-3-5 > article:nth-child(1) > h4:nth-child(17), .uk-width-large-3-5 > article:nth-child(1) > h4:nth-child(18), .uk-width-large-3-5 > article:nth-child(1) > h4:nth-child(19), .uk-width-large-3-5 > article:nth-child(1) > h4:nth-child(20), .uk-width-large-3-5 > article:nth-child(1) > h4:nth-child(21), .uk-width-large-3-5 > article:nth-child(1) > h4:nth-child(23), .uk-width-large-3-5 > article:nth-child(1) > a:nth-child(n+1), #header, H1, H2, P, .uk-breadcrumb, .uk-width-large-2-5.uk-width-medium-1-3, #wkFooter2, #content > DIV > DIV:first-child > DIV:nth-child(5), .uk-text-right.uk-text-small.uk-text-muted, #sp_message_container_421683, #content > DIV > DIV:first-child > ARTICLE > UL > LI:last-child, #content > DIV > DIV:first-child > ARTICLE > UL > LI:first-child > A, .uk-panel.uk-panel-box.uk-margin, .message-container, .message-overlay, .message, #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(3) > DIV:first-child > UL > LI:first-child > A, #shr-admin-badge, .cc_banner.cc_container.cc_container--open, #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(4) > HR {display: none !important;} #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(4) > UL:last-child > LI:first-child {margin-top: -30px !important;} #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(4) > UL:last-child > LI:last-child {margin-top: -30px !important;} #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(4) > UL:first-child > LI:nth-child(7) {margin-left: 215px !important;} #shr-admin-badge, #content > DIV > DIV:first-child > ARTICLE > UL > LI:first-child, #content > DIV > DIV:first-child > ARTICLE > UL > LI:last-child {display: none !important;} .uk-panel.uk-panel-box {max-height: 42px !important; margin-top: -8px !important;} .uk-h4.wk-header-margins {margin-bottom: 2px !important; margin-top: 3px !important;} LI{margin-top: 3px !important;} #page{box-shadow: none!important; border: none !important;} HTML, #start, .uk-grid {background: #FFFFFF !important;} } @-moz-document url-prefix("https://www.wetterkontor.de/de/radar/radar-ost.asp"), url-prefix("https://www.wetterkontor.de/de/radar/radar-suedost.asp"), url-prefix("https://www.wetterkontor.de/de/radar/radar-nordost.asp"), url-prefix("https://www.wetterkontor.de/de/radar/radar-suedwest.asp"), url-prefix("https://www.wetterkontor.de/de/radar/radar-west.asp"), url-prefix("https://www.wetterkontor.de/de/radar/radar-nordwest.asp"){ html{scrollbar-width: none !important;} #header, H1, H2, P, .uk-breadcrumb, .uk-width-large-2-5.uk-width-medium-1-3, #wkFooter2, .uk-text-right.uk-text-small.uk-text-muted, .uk-width-small-1-2.uk-width-medium-1-3.uk-row-first, #content > DIV > DIV:first-child > DIV:nth-child(3) > DIV > DIV:first-child > UL > LI > A , #content > DIV > DIV:first-child > DIV:nth-child(3) > DIV > DIV:first-child > UL, .cc-window.cc-banner.cc-type-info.cc-theme-block.cc-top.cc-color-override-530831885, #page_margins > DIV > DIV > DIV:first-child > DIV:first-child > DIV, #page_margins > DIV > DIV > DIV:last-child, #sp_message_container_421683, #page_margins > DIV > DIV > DIV:first-child > DIV:last-child, #shr-admin-badge, .cc_banner.cc_container.cc_container--open {display: none !important;} #r1 {margin-left: 50px !important;} #content > DIV > DIV:first-child > DIV:nth-child(3){width: 500px !important; margin-left: 55px !important;} #content > DIV > DIV:first-child > DIV:nth-child(3) > DIV {width: 490px !important; margin-left: 5px !important; background: transparent !important; } .uk-subnav.uk-subnav-pill.uk-align-medium-right {min-width: 380px !important;} #page{box-shadow: none!important; border: none !important;} HTML, #start, .uk-grid {background: #FFFFFF !important;} } @-moz-document url-prefix("https://www.wetterkontor.de/de/radar.asp"){ html{scrollbar-width: none !important;} #header, H1, H2, P, #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(3) > DIV:first-child > UL > LI:last-child, .uk-breadcrumb, .uk-width-large-2-5.uk-width-medium-1-3, #wkFooter2, #content > DIV > DIV:first-child > DIV:nth-child(5), .uk-text-right.uk-text-small.uk-text-muted, #shr-admin-badge, .uk-panel.uk-panel-box.uk-margin, #sp_message_container_421683, #tage5bis8, .uk-width-large-1-6.uk-hidden-small.uk-hidden-medium, div.uk-grid:nth-child(3), #page_margins > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1), div.uk-panel:nth-child(14), .cc_banner.cc_container.cc_container--open {display: none !important;} #page{box-shadow: none!important; border: none !important;} HTML, #start, .uk-grid {background: #FFFFFF !important;} } @-moz-document url-prefix("https://www.wetterkontor.de/de/bio/uv-index.asp"){ html{scrollbar-width: none !important;} #page{border: none !important; box-shadow: none !important; } HTML, #start, .uk-grid, body {background: #FFFFFF !important;} #header, H1, H2, P, #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(3) > DIV:first-child > UL > LI:last-child, .uk-breadcrumb, .uk-width-large-2-5.uk-width-medium-1-3, #wkFooter2, #content > DIV > DIV:first-child > DIV:nth-child(5), .cc-window.cc-banner.cc-type-info.cc-theme-block.cc-top.cc-color-override-530831885, #page_margins > DIV > DIV > DIV:first-child > DIV:first-child > DIV, #page_margins > DIV > DIV > DIV:last-child, #sp_message_container_421683, #page_margins > DIV > DIV > DIV:first-child > DIV:last-child, .uk-text-right.uk-text-small.uk-text-muted,#shr-admin-badge, .uk-panel.uk-panel-box.uk-margin, .uk-width-large-2-5.uk-width-medium-1-2, H5, .cc_banner.cc_container.cc_container--open, #start > IMG {display: none !important;} } @-moz-document url-prefix("https://www.wetterkontor.de/de/bio/pollenflug-hasel.asp"), url-prefix("https://www.wetterkontor.de/de/bio/pollenflug-erle.asp"), url-prefix("https://www.wetterkontor.de/de/bio/pollenflug-birke.asp"), url-prefix("https://www.wetterkontor.de/de/bio/pollenflug-graeser.asp"), url-prefix("https://www.wetterkontor.de/de/bio/pollenflug-ambrosia.asp"), url-prefix("https://www.wetterkontor.de/de/bio/pollenflug-beifuss.asp"), url-prefix("https://www.wetterkontor.de/de/bio/pollenflug-roggen.asp"), url-prefix("https://www.wetterkontor.de/de/bio/pollenflug-esche.asp"){ html{scrollbar-width: none !important; } #header, H1, H2, P, #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(3) > DIV:first-child > UL > LI:last-child, .uk-breadcrumb, .uk-width-large-2-5.uk-width-medium-1-3, #wkFooter2, #content > DIV > DIV:first-child > DIV:nth-child(5), .uk-text-right.uk-text-small.uk-text-muted, .uk-panel.uk-panel-box.uk-margin, .uk-width-large-2-5.uk-width-medium-1-2, H5, TABLE, .uk-panel.uk-panel-box.uk-panel-box-primary, #start > IMG, .cc-window.cc-banner.cc-type-info.cc-theme-block.cc-top.cc-color-override-530831885, #page_margins > DIV > DIV > DIV:first-child > DIV:first-child > DIV, #page_margins > DIV > DIV > DIV:last-child, #sp_message_container_421683, #page_margins > DIV > DIV > DIV:first-child > DIV:last-child, .cc_banner.cc_container.cc_container--open {display: none !important;} #page{box-shadow: none!important; border: none !important;} HTML, #start, .uk-grid {background: #FFFFFF !important;} } @-moz-document url-prefix("https://www.wetterkontor.de/warnungen/wetterwarnungen-bayern.asp"), url-prefix("https://www.wetterkontor.de/warnungen/wetterwarnungen-badenwuerttemberg.asp"), url-prefix("https://www.wetterkontor.de/warnungen/wetterwarnungen-brandenburg-berlin.asp"), url-prefix("https://www.wetterkontor.de/warnungen/wetterwarnungen-hessen.asp"), url-prefix("https://www.wetterkontor.de/warnungen/wetterwarnungen-mecklenburgvorpommern.asp"), url-prefix("https://www.wetterkontor.de/warnungen/wetterwarnungen-niedersachsen-bremen.asp"), url-prefix("https://www.wetterkontor.de/warnungen/wetterwarnungen-nordrheinwestfalen.asp"), url-prefix("https://www.wetterkontor.de/warnungen/wetterwarnungen-rheinlandpfalz-saarland.asp"), url-prefix("https://www.wetterkontor.de/warnungen/wetterwarnungen-sachsen.asp"), url-prefix("https://www.wetterkontor.de/warnungen/wetterwarnungen-sachsenanhalt.asp"), url-prefix("https://www.wetterkontor.de/warnungen/wetterwarnungen-schleswigholstein-hamburg.asp"), url-prefix("https://www.wetterkontor.de/warnungen/wetterwarnungen-thueringen.asp"){ html{scrollbar-width: none !important;} #header,H1, .uk-width-large-2-5.uk-width-medium-1-3.uk-hidden-small, .uk-text-right, #content > DIV > DIV:first-child > P:nth-child(6), #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(3) > DIV:first-child > UL > LI:last-child, .uk-breadcrumb, .cc-window.cc-banner.cc-type-info.cc-theme-block.cc-top.cc-color-override-530831885, #page_margins > DIV > DIV > DIV:first-child > DIV:first-child > DIV, #page_margins > DIV > DIV > DIV:last-child, #sp_message_container_421683, #page_margins > DIV > DIV > DIV:first-child > DIV:last-child, #wkFooter2, #content > DIV > DIV:first-child > DIV:nth-child(5), .uk-panel.uk-panel-box.uk-margin, .banner728x90, .uk-width-large-1-6.uk-hidden-small.uk-hidden-medium, .uk-width-1-1.uk-hidden-small.uk-text-center, #content > DIV > DIV:first-child > P:nth-child(3), #content > DIV > DIV:first-child > P:nth-child(2), #page_margins > DIV > DIV > DIV:first-child > DIV:last-child > DIV, .cc_banner.cc_container.cc_container--open {display: none !important;} #page{box-shadow: none!important; border: none !important;} HTML, #start, .uk-grid {background: #FFFFFF !important;} DIV[class="warnungen_box uk-panel uk-panel-box uk-panel-box-primary"]{margin-top: -300px !important;} #karte {margin-left: -100px !important;} } @-moz-document url-prefix("https://www.wetterkontor.de/warnungen/warnung.asp"){ html{scrollbar-width: none !important;} .cc-window.cc-banner.cc-type-info.cc-theme-block.cc-top.cc-color-override-530831885, #page_margins > DIV > DIV > DIV:first-child > DIV:first-child > DIV, #page_margins > DIV > DIV > DIV:last-child, #sp_message_container_421683, #page_margins > DIV > DIV > DIV:first-child > DIV:last-child, #header, .uk-width-large-2-5.uk-width-medium-1-3.uk-hidden-small, .uk-text-right, .uk-breadcrumb, #wkFooter2, #content > DIV > DIV:first-child > DIV:nth-child(7), .mir_container.mir_ad-800, div.uk-grid-small > div:nth-child(2), div.uk-grid:nth-child(3), .banner728x90, #shr-admin-badge, #content > DIV > DIV:first-child > DIV:nth-child(8), #content > DIV > DIV:first-child > DIV:nth-child(9), .cc_banner.cc_container.cc_container--open {display: none !important;} body {margin-left: 20px !important;} #content {height: 700px !important; width: 1200px !important;} #page{box-shadow: none!important; border: none !important;} .uk-grid.uk-grid-width-medium-1-2 {margin-left: 0px !important;} HTML, #start, .uk-grid {background: #FFFFFF !important; } #karte {margin-left: -110px !important; margin-top: 80px !important;} } @-moz-document url("https://www.wetterkontor.de/warnungen/"){ html{scrollbar-width: none !important;} #header, .uk-width-large-2-5.uk-width-medium-1-3.uk-hidden-small, .uk-text-right, #content > DIV > DIV:first-child > DIV:first-child > UL > LI:nth-child(3), .cc-window.cc-banner.cc-type-info.cc-theme-block.cc-top.cc-color-override-530831885, #page_margins > DIV > DIV > DIV:first-child > DIV:first-child > DIV, #page_margins > DIV > DIV > DIV:last-child, #sp_message_container_421683, #page_margins > DIV > DIV > DIV:first-child > DIV:last-child, .uk-breadcrumb, #wkFooter2, #content > DIV > DIV:first-child > DIV:nth-child(10), .banner728x90, #shr-admin-badge, #content > DIV > DIV:first-child > DIV:nth-child(8), div.uk-grid-small:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1), div.uk-grid-small:nth-child(1) > div:nth-child(2), div.uk-grid:nth-child(3), .cc_banner.cc_container.cc_container--open {display: none !important;} body {margin-left: 25px !important;} #content {height: 700px !important; width: 1200px !important;} #page{box-shadow: none!important; border: none !important;} .uk-grid.uk-grid-width-medium-1-2 {margin-left: 0px !important;} HTML, #start, .uk-grid {background: #FFFFFF !important; } } @-moz-document url-prefix("https://www.wetterkontor.de/wetter-warnungen/"){ html{scrollbar-width: none !important;} .cc-window.cc-banner.cc-type-info.cc-theme-block.cc-top.cc-color-override-530831885, #page_margins > DIV > DIV > DIV:first-child > DIV:first-child > DIV, #page_margins > DIV > DIV > DIV:last-child, #sp_message_container_421683, #page_margins > DIV > DIV > DIV:first-child > DIV:last-child, #header, .uk-width-large-2-5.uk-width-medium-1-3.uk-hidden-small, .uk-text-right, .uk-breadcrumb, #wkFooter2, #content > DIV > DIV:first-child > DIV:nth-child(10), .banner728x90, #shr-admin-badge, #content > DIV > DIV:first-child > DIV:nth-child(8), div.uk-panel:nth-child(15), #tage5bis8, .uk-width-large-1-6.uk-hidden-small.uk-hidden-medium, .uk-grid.uk-margin.uk-hidden-small.uk-hidden-medium, .uk-panel.uk-panel-box.uk-margin, #content > DIV > DIV:first-child > DIV:nth-child(7), #content > DIV > DIV:first-child > P:nth-child(4), #content > DIV > DIV:first-child > P:nth-child(5), .cc_banner.cc_container.cc_container--open {display: none !important;} #content {height: 700px !important; } #page{box-shadow: none!important; border: none !important;} HTML, #start, .uk-grid {background: #FFFFFF !important; } #content > DIV > DIV:first-child > DIV:nth-child(6) > UL {margin-left: 0px !important;} } @-moz-document url-prefix("https://www.wetterkontor.de/wetter-vorhersage/deutschland/"), url-prefix("https://www.wetterkontor.de/de/radar/radar-vorhersage.asp"){ html{scrollbar-width: none !important;} #header, .uk-width-large-2-5.uk-width-medium-1-3.uk-hidden-small, .uk-text-right, .uk-width-large-2-5.uk-width-medium-1-3, #sp_message_container_421683, #content > DIV > DIV:first-child > DIV:first-child, #content > DIV > DIV:first-child > DIV:nth-child(2) > UL > LI:nth-child(5), #content > DIV > DIV:first-child > DIV:nth-child(21), #content > DIV > DIV:first-child > FORM > DIV, .cc-window.cc-banner.cc-type-info.cc-theme-block.cc-top.cc-color-override-530831885, #page_margins > DIV > DIV > DIV:first-child > DIV:first-child > DIV, #page_margins > DIV > DIV > DIV:last-child, #page_margins > DIV > DIV > DIV:first-child > DIV:last-child, #aktuelle_beobachtung > P:last-child, div.uk-panel:nth-child(15), #tage5bis8, .uk-width-large-1-6.uk-hidden-small.uk-hidden-medium, .uk-grid.uk-margin.uk-hidden-small.uk-hidden-medium, #content > DIV > DIV:first-child > DIV:nth-child(2) > UL > LI:last-child, #content > DIV > DIV:first-child > DIV:nth-child(2) > UL > LI:nth-child(6), #content > DIV > DIV:first-child > P:nth-child(27), .uk-breadcrumb, #wkFooter2, #content > DIV > DIV:first-child > DIV:nth-child(10), .banner728x90, #shr-admin-badge, #content > DIV > DIV:first-child > DIV:nth-child(8), .cc_banner.cc_container.cc_container--open {display: none !important;} .uk-panel, H1, H2, #content > DIV > DIV:first-child > P:nth-child(4), .uk-subnav.uk-subnav-line {margin-left: 30px !important;} #content > DIV > DIV:first-child > DIV:nth-child(7){margin-left: -15px !important;} HTML, #start, .uk-grid {background: #FFFFFF !important;} #page{box-shadow: none!important; border: none !important;} } @-moz-document url-prefix("https://www.wetterkontor.de/biowetter/"){ html{scrollbar-width: none !important;} #content > DIV > DIV:first-child > DIV:first-child > UL > LI:last-child, #header, .uk-width-large-2-5.uk-width-medium-1-3.uk-hidden-small, .uk-text-right, .uk-width-large-2-5.uk-width-medium-1-2, #content > DIV > DIV:first-child > DIV:nth-child(21), .uk-breadcrumb, #wkFooter2, #content > DIV > DIV:first-child > DIV:nth-child(10), .banner728x90, #shr-admin-badge, #content > DIV > DIV:first-child > DIV:nth-child(8), .cc_banner.cc_container.cc_container--open, div.uk-panel:nth-child(6), #tage5bis8, .uk-width-large-1-6.uk-hidden-small.uk-hidden-medium, .uk-grid.uk-margin.uk-hidden-small.uk-hidden-medium, #sp_message_container_421683, .cc-window.cc-banner.cc-type-info.cc-theme-block.cc-top.cc-color-override-530831885, #page_margins > DIV > DIV > DIV:first-child > DIV:first-child > DIV, #page_margins > DIV > DIV > DIV:last-child,div.uk-margin:nth-child(6), #page_margins > DIV > DIV > DIV:first-child > DIV:last-child, .uk-panel.uk-panel-box.uk-margin {display: none !important;} HTML, #start, .uk-grid {background: #FFFFFF !important;} body {margin-top: 25px !important;} #page{box-shadow: none!important; border: none !important;} } @-moz-document url-prefix("https://www.wetterkontor.de/de/blitze/"){ html{scrollbar-width: none !important;} #header, .uk-width-large-2-5.uk-width-medium-1-3.uk-hidden-small, .uk-text-right, .uk-width-large-2-5.uk-width-medium-1-3, #content > DIV > DIV:first-child > DIV:nth-child(21), #content > DIV > DIV:first-child > ARTICLE > P:nth-child(7), #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(8), #content > DIV > DIV:first-child > ARTICLE > P:nth-child(9), #content > DIV > DIV:first-child > ARTICLE > P:nth-child(10), #content > DIV > DIV:first-child > ARTICLE > P:nth-child(11), #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(12), #content > DIV > DIV:first-child > ARTICLE > P:nth-child(13), .cc-window.cc-banner.cc-type-info.cc-theme-block.cc-top.cc-color-override-530831885, #page_margins > DIV > DIV > DIV:first-child > DIV:first-child > DIV, #page_margins > DIV > DIV > DIV:last-child, #sp_message_container_421683, #page_margins > DIV > DIV > DIV:first-child > DIV:last-child, .uk-breadcrumb, #wkFooter2, #content > DIV > DIV:first-child > DIV:nth-child(10), div.uk-panel:nth-child(15), div.uk-panel:nth-child(5), #tage5bis8, .uk-width-large-1-6.uk-hidden-small.uk-hidden-medium, .uk-grid.uk-margin.uk-hidden-small.uk-hidden-medium, .uk-width-large-3-5 > article:nth-child(1) > hr:nth-child(6), .banner728x90, #shr-admin-badge, #content > DIV > DIV:first-child > DIV:nth-child(8), #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(6), .cc_banner.cc_container.cc_container--open, #wetterkontor_incontent_1, .uk-h3, .uk-width-large-3-5 > article:nth-child(1) > p:nth-child(8), div.uk-h4:nth-child(9), div.uk-margin:nth-child(11), div.uk-h4:nth-child(14), .uk-width-large-3-5 > article:nth-child(1) > p:nth-child(15), .uk-width-large-3-5 > article:nth-child(1) > p:nth-child(16), .uk-width-large-3-5 > article:nth-child(1) > p:nth-child(17), .uk-width-large-3-5 > article:nth-child(1) > p:nth-child(19), div.uk-h4:nth-child(18){display: none !important;} HTML, #start, .uk-grid {background: #FFFFFF !important;} H1{margin-left: 160px !important;} #page{box-shadow: none!important; border: none !important;} } @-moz-document url-prefix("https://www.wetterkontor.de/de/wetter/europa/"){ html{scrollbar-width: none !important;} .cc-window.cc-banner.cc-type-info.cc-theme-block.cc-top.cc-color-override-530831885, #page_margins > DIV > DIV > DIV:first-child > DIV:first-child > DIV, #page_margins > DIV > DIV > DIV:last-child, .icon-bar, #page_margins > DIV > DIV > DIV:first-child > DIV:last-child, #header,H1, H2, .uk-width-large-2-5.uk-width-medium-1-3, .uk-text-right, .uk-text-muted, #content > DIV > DIV:first-child > ARTICLE > DIV:nth-child(3) > DIV:first-child > UL > LI:last-child, .uk-breadcrumb, #wkFooter2, #content > DIV > DIV:first-child > DIV:nth-child(5), .uk-panel, .div_part, #shr-admin-badge, #content > DIV > DIV:first-child > P:nth-child(2), .uk-grid.uk-grid-small.uk-grid-match, .cc_banner.cc_container.cc_container--open, .icon-bar, .uk-width-large-3-5 > h3:nth-child(10), .uk-width-large-3-5 > p:nth-child(11), .uk-align-medium-right, .uk-width-large-3-5 > p:nth-child(13), .uk-width-large-3-5 > h4:nth-child(14), .uk-width-large-3-5 > p:nth-child(15), .uk-width-large-3-5 > p:nth-child(16), .uk-width-large-3-5 > h4:nth-child(17), .uk-width-large-3-5 > p:nth-child(18), .uk-width-large-3-5 > p:nth-child(19), .uk-width-large-3-5 > p:nth-child(20), .uk-width-large-3-5 > h4:nth-child(21), .uk-width-large-3-5 > p:nth-child(22), .uk-width-large-3-5 > p:nth-child(23), .uk-width-large-3-5 > p:nth-child(24), .uk-width-large-3-5 > p:nth-child(25) {display: none !important;} .uk-width-large-3-5{font-size: 0px !important;} .uk-tab{font-size: 14px !important; } #page{box-shadow: none!important; border: none !important;} HTML, #start, .uk-grid {background: #FFFFFF !important;} } @-moz-document url-prefix("https://www.wetterkontor.de/de/pegel/"){ html{scrollbar-width: none !important;} .cc-window.cc-banner.cc-type-info.cc-theme-block.cc-top.cc-color-override-530831885, #page_margins > DIV > DIV > DIV:first-child > DIV:first-child > DIV, #page_margins > DIV > DIV > DIV:last-child, #sp_message_container_421683, #page_margins > DIV > DIV > DIV:first-child > DIV:last-child, #header, H1, H2, P, #wkFooter2, #content > DIV > DIV:first-child > DIV:nth-child(5), #shr-admin-badge, #content > DIV > DIV:first-child > DIV, #content > DIV > DIV:first-child > ARTICLE > DIV:last-child > HR, .breadcrumb,.uk-width-large-2-5.uk-width-medium-1-3, #start > IMG, .cc_banner-wrapper {display: none !important;} .uk-panel.uk-panel-box.uk-margin {margin-top: -5px !important;} } @-moz-document domain(www.msn.com) { html{scrollbar-width: none !important;} .weather_carousel_card_dots_cover-DS-EntryPoint1-1, .datafromContainer-DS-EntryPoint1-1, .weatherContainer-DS-EntryPoint1-1 > div:nth-child(1) > div:nth-child(2) > div:nth-child(3), .adsContainer-DS-EntryPoint1-1, .location_name_set_home_icon-DS-EntryPoint1-1, #onetrust-consent-sdk, .unitSwitchContainer-DS-EntryPoint1-1, .BubbleMessageContainerRight-DS-EntryPoint1-1, #header, div.sectionContainer-DS-EntryPoint1-1:nth-child(4), .root-DS-EntryPoint1-1 > div:nth-child(6), .oneFooter-DS-EntryPoint1-1 , div.sectionContainer-DS-EntryPoint1-1:nth-child(3), .feedback_link_default-DS-EntryPoint1-1.button-DS-EntryPoint1-3, .weather_alerts_link-DS-EntryPoint1-1, .openMapLink-DS-EntryPoint1-1, .profile_signInLink-DS-EntryPoint1-1, button.chevron-DS-EntryPoint1-1:nth-child(2), button.chevron-DS-EntryPoint1-1:nth-child(3), .weather_feedback_entry-DS-EntryPoint1-1, .adsContent-DS-EntryPoint1-1{display: none! important;} .cardItem-DS-EntryPoint1-1 { border-right: none ! important;} .weather_alerts_title-DS-EntryPoint1-1{ margin-top: 50px !important; margin-left: -150px !important; max-width: 200px !important; word-wrap: break-word !important;} .weather_alerts_level-DS-EntryPoint1-1{ margin-left: 70px !important; margin-top: -20px !important; pointer-events: none !important;} body{margin-top: -125px !important;} .weather-section{margin-top: 40px !important;} .weatherAdscontainer-DS-EntryPoint1-1{margin-top: 35px !important;} a.chevron-DS-EntryPoint1-1:nth-child(3) { margin-right: -35px !important;} a.chevron-DS-EntryPoint1-1:nth-child(1){ margin-left: -35px !important;} } @-moz-document domain(www.daswetter.com) { html{scrollbar-width: none !important;} #news1, .leySocial, span.columnas:nth-child(3) > span:nth-child(1) > span:nth-child(2), #cfav, .shared, .avisos, .container_sticky, .navegacion, #bannerDerPC, #meteored_share, span.principal:nth-child(3), span.secundaria:nth-child(4), .megabanner, span.franja:nth-child(4), span.columnas:nth-child(5) > span:nth-child(1) > span:nth-child(2), span.columnas:nth-child(6), span.franja:nth-child(7), #bannerSupPC, .publicidad-pie, .pie-pagina, .map-loc-titulo, span.creatividad:nth-child(2), li.lis-mini-carrusel:nth-child(5), li.lis-mini-carrusel:nth-child(7), #pubIzq, #contSup, #foots, #pubSup, .mas-noticias, #zona-contenido, #shared, div.leaflet-bottom:nth-child(4), #full_screen, .leaflet-control-zoom, #izquierda, #selector_tipos, .der, #contPag {display: none !important;} .estado{margin-top: -50px !important; margin-left: 450px !important;} #pCentro{margin-top: 90px !important;} .mapa {margin-left: -120px !important;} .resumen-dia{margin-left: 48px !important; margin-top: -20px !important;} #contDias{margin-left: -10px !important;} #divGota{min-height: 64px !important;} span.principal:nth-child(2){margin-left: 345px !important; margin-bottom: 20px !important;} h1.titulo{margin-bottom: 15px !important;} #highcharts-p78qazo-0{min-height: 600px !important;} .franja > span:nth-child(1){max-width: 650px !important; margin-left: 5px !important;} span.columnas:nth-child(3),.titulo-horas, .franja { box-shadow: none!important; border: none !important;} span.columnas:nth-child(1) > span:nth-child(1) > span:nth-child(1), span.columnas:nth-child(5) > span:nth-child(1) > span:nth-child(1), span.columnas:nth-child(5) > span:nth-child(1) > span:nth-child(1) > span:nth-child(1){ box-shadow: none!important; border: none !important;} #iw-container{margin-left: 250px !important;} .mapa #pCentro #controles_mm { position: relative !important; margin-left: 5px !important;} div.leaflet-bottom:nth-child(3){margin-left: 35px !important;} [class="secundaria"]{ margin-left:35px !important; margin-right: -80px !important;} [class="prevision-hoy-horas"]{ margin-left:280px !important; margin-right: -280px !important; margin-top:30px !important; margin-bottom: -50px !important; box-shadow: none!important;} [class="tabla-horas"]{ margin-right: -30px !important; margin-top:50px !important; width: 730px !important;} [class="por-horas"]{ margin-top:-15px !important; } #search_pc{margin-left: -2px !important; max-width: 300px !important;} #divPestanas, .loc-dia {margin-left: 30px !important;} #cookies {margin-right: -30px !important;} .grafica{margin-left: 15px !important; width: 740px !important;} .sin_prob{margin-left: 285px !important; margin-right: -255px !important; margin-bottom: -70px !important; } .titulo-horas{margin-left: 50px !important; margin-right: -30px !important; margin-bottom: 30px !important; margin-top: -20px !important;} span.columnas:nth-child(2) > span:nth-child(1) > span:nth-child(2) > section:nth-child(1){ margin-top: -20px !important;} span.columnas:nth-child(2) > span:nth-child(1) > span:nth-child(1) > section:nth-child(1){ margin-left: 305px !important; min-width: 740px !important;} span.columnas:nth-child(3) > span:nth-child(1) > span:nth-child(1) > section:nth-child(1){ margin-left: 35px !important; max-width: 735px !important;} span.columnas:nth-child(3) > span:nth-child(1) > span:nth-child(2){ margin-left: 70px !important; margin-top: -30px !important; } .grafica-horas, .highcharts-root {margin-left: 15px!important; min-width: 740px !important;} .dos-semanas .dia.activo::after { border-right: 51px solid transparent !important; border-left: 51px solid transparent !important;} header #contSup{ margin-left: -40px !important; box-shadow: none!important; border: none !important;} .navegacion{ margin-left: -100px !important; box-shadow: none!important; border: none !important;} span.columnas:nth-child(2){margin-left: -270px !important; box-shadow: none!important; border: none !important;} #contenedorHora{margin-left: 70px !important;} #mod_derecha{margin-left: -145px !important;} #mods_cont {width: 85% !important; margin-left: 60px !important; box-shadow: none!important; border: none !important;} #pCentro {margin-left: 120px !important;} .lluvia-nieve{margin-left: 55px !important; min-width: 760px !important;} span.columnas:nth-child(5) > span:nth-child(1) > span:nth-child(1){ max-width: 760px !important; margin-left: 25px !important;} #mapid{min-height: 500px !important; margin-left: 31px !important; margin-top: -80px !important; box-shadow: none!important; border: none !important;} #controles_mm {margin-left: -70px !important;} #container{margin-left: -20px !important;} #h1Ul > h1:nth-child(1){margin-left: 120px !important;} #mapaAlertas{margin-left: 90px !important;} #tipAlert{margin-left: 50px !important;} span.columnas:nth-child(5){margin-top: -50px !important;} span.columnas:nth-child(2){margin-top: -60px !important;} .subcabecera {padding-left: 20px !important; box-shadow: none!important; border: none !important;} .dos-semanas{padding-left: 40px !important; box-shadow: none!important; border: none !important;} span.columnas:nth-child(1){margin-left: 20px !important;} .ulMove{margin-left: 130px !important;} .estado-actual, span.columnas:nth-child(1), span.franja:nth-child(4),span.columnas:nth-child(5), span.columnas:nth-child(6), span.columnas:nth-child(7){padding-left: 50px !important; box-shadow: none!important; border: none !important;} .franjas{ background: #FFFFFF !important; box-shadow: none!important; border: none !important; margin-left:-45px !important;} .lluvia-nieve > span:nth-child(1){ box-shadow: none!important; border: none !important;} navegacion label{border: none !important;} .estado-actual{margin-left: -36px !important;} .map-loc-titulo{margin-left: -50px !important;} .dos-semanas{margin-left: -28px !important;} .carrusel{margin-left: 13px !important;} span.columnas:nth-child(1) > span:nth-child(1) > span:nth-child(2){margin-left: -6px !important;} .por-horas{margin-top: 24px !important; margin-left: -4px !important;} } @-moz-document url-prefix(https://www.daswetter.com/nachrichten/aktuelles/), url-prefix(https://www.daswetter.com/nachrichten/){ html{scrollbar-width: none !important;} .franjas {display: none !important;} .portada-noticias{margin-left: -55px !important; max-width: 770px !important;} .navegacion-portada-noticias {margin-left: 40px !important;} } @-moz-document url(https://www.daswetter.com/satelliten/) { html{scrollbar-width: none !important;} .selectSateliteLugar {display: none !important;} .h1-contenido{margin-left: -255px !important;} div.leaflet-bottom:nth-child(4) {display: none !important;} #mapid{margin-left: 10px !important; min-width: 770px !important;} .mapa #pCentro #controles_mm { position: relative !important; margin-left: 45px !important;} } @-moz-document url-prefix(https://www.daswetter.com/radar-deutsc-regen.html) { html{scrollbar-width: none !important;} .selectRadarLugar {display: none !important;} .h1-contenido{margin-left: 200px !important;} #mapid{min-width: 780px !important; margin-left: 50px !important;} .mapa #pCentro #controles_mm { position: relative !important; margin-left: 100px !important;} } @-moz-document url-prefix(https://www.daswetter.com/wetterwarnungen/) { html{scrollbar-width: none !important;} .selectDias, .selectMapaLugar {display: none !important;} .franja{max-width: 750px !important; margin-left: 84px !important;} .h1-contenido{margin-left: -75px !important;} } @-moz-document url-prefix(https://www.daswetter.com/wetterkarten/prcnub-aleman.html) { html{scrollbar-width: none !important;} .selectMapaLugar {display: none !important;} .h1-contenido{margin-left: 150px !important;} } @-moz-document domain(www.meteocentrale.ch) { html{scrollbar-width: none !important;} #header,#top,#left,#c8548,#right,#footer,#wetterapp_border > NOSCRIPT,#content > H1,#page > NOSCRIPT,.qc-cmp-cleanslate, body > div:nth-child(10),body > div:nth-child(9), body > div:nth-child(16),body > div:nth-child(13), #lower-content > center:nth-child(6){display: none !important;} #wetterapp_border{ margin-left: -30px !important; margin-top: -10px !important;} } @-moz-document domain(www.wetter.net) { html{scrollbar-width: none !important;} header.row {background: transparent !important;} div.col-md-5:nth-child(3) {margin-top: 5px !important; margin-bottom: -30px !important; margin-left:-24px !important;} .city-favs{margin-top: -10px !important; margin-left:-220px !important;} .col-md-10 > ul:nth-child(1) > li:nth-child(1) > a:nth-child(1) > p:nth-child(3), .col-md-10 > ul:nth-child(1) > li:nth-child(2) > a:nth-child(1) > p:nth-child(3) {background: white !important; color: black !important; font-weight: bold !important;} #city_search_input {background: white !important; color: black !important; font-weight: bold !important;} #search-wrapper{margin-bottom: 20px !important; margin-left: 8px !important; margin-top: -2px !important;} .toggle-favs-icon-down:after, .toggle-favs-icon-up:after { color: white !important;} #bodyContainer_switch > DIV:nth-child(5) > DIV > UL, .advertising_billboard, HTML > BODY > DIV:first-child, NAV, FOOTER, HTML > BODY > DIV:nth-child(12), .upArrow, .row.social_share_city , .advertising_pubperform.row, .col-sm-4.teaser_block, .advertising_city.col-xs-12, .advertising_left, .col-sm-8.teaser_block.teaser_block_2, .teaser_container > div:nth-child(1), div.container-fluid, .weather_container > div:nth-child(10), .share_buttons_float_right, #banner, #sky, HTML > BODY > DIV:nth-child(9) > DIV > DIV > DIV, .col-md-3 > a:nth-child(1), .weather_container > div:nth-child(9), .advertising_right {display: none !important;} .white.todayTextHeader{font-size: 24px !important;} .white.center.todayText {font-size: 20px !important;} p{font-size: 18px !important;} } @-moz-document domain(www.unwetterzentrale.de), domain(www.niederschlagsradar.de), url-prefix(http://db.eurad.uni-koeln.de/prognose/data/aktuell/trh_eur_1h_movd1.gif), url-prefix(https://www.dwd.de/DWD/wetter/wv_allg/deutschland/film/vhs_deutschland.jpg), url-prefix(https://www.dwd.de/DWD/wetter/aktuell/deutschland/bilder/wx_deutschland.jpg), domain(www.meteox.de){ HTML {background: #FFFFFF !important;} html{scrollbar-width: none !important;} } @-moz-document url-prefix("https://www.wetteronline.de/regenradar/berlin-bundesland"), url-prefix("https://www.wetteronline.de/regenradar/hamburg-bundesland"), url-prefix("https://www.wetteronline.de/regenradar/bremen-bundesland"), url-prefix("https://www.wetteronline.de/regenradar/mecklenburg-vorpommern"), url-prefix("https://www.wetteronline.de/regenradar/niedersachsen"), url-prefix("https://www.wetteronline.de/regenradar/nordrhein-westfalen"), url-prefix("https://www.wetteronline.de/regenradar/sachsen"), url-prefix("https://www.wetteronline.de/regenradar/bayern"), url-prefix("https://www.wetteronline.de/regenradar/braunschweig"), url-prefix("https://www.wetteronline.de/regenradar/baden-wuerttemberg"), url-prefix("https://www.wetteronline.de/regenradar/thueringen"), url-prefix("https://www.wetteronline.de/regenradar/sachsen-anhalt"), url-prefix("https://www.wetteronline.de/regenradar/saarland"), url-prefix("https://www.wetteronline.de/regenradar/hessen"), url-prefix("https://www.wetteronline.de/regenradar/schleswig-holstein"), url-prefix("https://www.wetteronline.de/regenradar/brandenburg-bundesland"), url-prefix("https://www.wetteronline.de/regenradar/rheinland-pfalz"){ #top, #searchbox, #favorites, #memberarea_wrapper, #woBillboard, div._3Sb_2c:nth-child(12), #sp_message_container_389665, .cursor-movable > wo-ripple:nth-child(5) > wo-map-controls-wrapper:nth-child(1) > wo-imprint:nth-child(4), #map-searchform, div.leaflet-top:nth-child(2), ._1KFpPt, div.leaflet-bottom:nth-child(4), .top-right > wo-zoom:nth-child(2), #content-navigation, #header, #topcontainer, cc_banner, .cc_banner-wrapper, #ultraleftcontainer, .top-right, #sp_message_container_483486, .cleverpush-bell, #rightcontainer {display: none !important;} wo-control-container.bottom {margin-right: 80px !important;} html{scrollbar-width: none !important;} ._1OzLNe {margin-bottom: 0px !important; margin-left: -120px !important;} #content{margin-top: -100px !important;} } @-moz-document domain(niederschlagsradar.de){ html{scrollbar-width: none !important;} #horizontalspace, #headermenu, #dropdown, #header-flags, #headercontent, #menulinks-marge, #content-main, #slider, #content > div:nth-child(1) > table:nth-child(4), #description, #legend, #footer, #content > div:nth-child(1) > table:nth-child(5), #cconsent-modal, #cconsent-bar, #cookie-message, #content-main-160, #twitter-follow {display:none !important;} } }
Die Dateien wurden mit Notepad++ erstellt. Die Zeilen bitte mit benennen, wenn Änderungen vorgeschlagen werden, das vereinfacht das Ganze.
Vielen Dank und viel Spaß.
PS: Ggf. müssen nicht mehr vorhandene Anbieter von Diensten durch andere ersetzt werden. Da ist alles möglich, Hauptsache es gibt keine 403 oder 504 Antworten mehr. -
Zitat
Mit dem Update auf Firefox 1290.1
Upps, soweit sind wa noch nich
-
Alles Gute, vor allem natürlich viieel Gesundheit auch von mir und lass dir gesagt sein, Rentner sein ist cool...
-
-
Ja, das politische Kabarett stirbt langsam aus. Schmickler ist da fast der Letzte, der noch so richtig griffig ist.
-
Richard Rogler war einer meiner liebsten Kabarettisten. Die eh nicht mehr so breit aufgestellten politischen Kabarettisten in Deutschland haben einen der Großen verloren!
Immer, wenn er in Braunschweig beim Satirefest auftrat, habe ich ihn besucht. Leider ging er seit 2018 nicht mehr auf Tournee. Nun ist er hoffentlich in Frieden eingeschlafen! Heute bin ich traurig. RIP
-
Weder in 129.0 noch im Nightly 131.0 bislang auffallende Nichtfunktionen
-
Ja, ja, ihr habt ja recht.
Mit kleinen Anpassungen passt es, vielen Dank 2002Andreas !