Weiter zum Inhalt
  • Home
  • Aktuell
  • Tags
  • 0 Ungelesen 0
  • Kategorien
  • Unreplied
  • Beliebt
  • GitHub
  • Docu
  • Hilfe
Skins
  • Hell
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dunkel
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Standard: (Kein Skin)
  • Kein Skin
Einklappen
ioBroker Logo

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. Tester
  4. Test Adapter mytime

NEWS

  • Der neue Monatsrückblick für Mai und Juni 2026 ist online!
    BluefoxB
    Bluefox
    8
    1
    693

  • wichtiges UPDATE für controller 7.2.2 im stable
    HomoranH
    Homoran
    10
    1
    3.4k

  • Neues YouTube-Video: Visualisierung im Devices-Adapter
    BluefoxB
    Bluefox
    16
    1
    5.3k

Test Adapter mytime

Geplant Angeheftet Gesperrt Verschoben Tester
adaptermytimetestwidget
596 Beiträge 52 Kommentatoren 179.6k Aufrufe 62 Beobachtet
  • Älteste zuerst
  • Neuste zuerst
  • Meiste Stimmen
Antworten
  • In einem neuen Thema antworten
Anmelden zum Antworten
Dieses Thema wurde gelöscht. Nur Nutzer mit entsprechenden Rechten können es sehen.
  • Ro75R Ro75

    Probiere ich aus. Sage dir dann bescheid.

    Ro75.

    EDIT: Keine Ahnung. Ich bekomms nicht hin. Entweder zu komplex, ich verstehe es nicht oder bin zu blöd.

    OliverIOO Offline
    OliverIOO Offline
    OliverIO
    schrieb am zuletzt editiert von OliverIO
    #572

    @Ro75

    ok

    1. countdowntimer anlegen
      decdde8d-7113-4c87-a531-56475521b4d7-image.jpeg

    ich habe gerade festgestellt, das beim speichern bei mir die datenpunkte nicht angelegt werden. wenn das bei dir auch so ist, dann bitte noch setdp drücken.

    2a)
    für die simulation habe ich mir ein skript schreiben lassen, das sekündlich bei mir einen datenpunkt aktualisiert. das ist das was bei dir mit alexa oder so passiert.
    das brauchst du eigentlich nicht, aber ich lege es bei, das du es selbst ausprobieren kannst, wie es bei mir funktioniert.

    // ============================================================
    // Skript 1: Countdown sekündlich aktualisieren
    // Schreibt den Countdown nach:
    // 0_userdata.0.alexatimer
    // ============================================================
    
    const countdownState = '0_userdata.0.alexatimer';
    
    // Beispiel: 1 Stunde, 23 Minuten und 45 Sekunden
    const countdownDurationSeconds =
       (1 * 60 * 60) +
       (23 * 60) +
       45;
    
    let countdownInterval = null;
    let countdownEndTime = null;
    
    
    /**
    * Wandelt Sekunden in Stunden:Minuten:Sekunden um.
    *
    * Beispiel:
    * 5025 Sekunden -> 1:23:45
    */
    function formatCountdown(totalSeconds) {
       const remainingSeconds = Math.max(
           0,
           Math.floor(totalSeconds)
       );
    
       const hours = Math.floor(remainingSeconds / 3600);
    
       const minutes = Math.floor(
           (remainingSeconds % 3600) / 60
       );
    
       const seconds = remainingSeconds % 60;
    
       return (
           hours +
           ':' +
           String(minutes).padStart(2, '0') +
           ':' +
           String(seconds).padStart(2, '0')
       );
    }
    
    
    /**
    * Aktualisiert den Countdown-Datenpunkt.
    */
    function updateCountdown() {
       const remainingSeconds = Math.max(
           0,
           Math.ceil(
               (countdownEndTime - Date.now()) / 1000
           )
       );
    
       const formattedCountdown =
           formatCountdown(remainingSeconds);
    
       setState(
           countdownState,
           formattedCountdown,
           true
       );
    
       if (remainingSeconds <= 0) {
           clearInterval(countdownInterval);
           countdownInterval = null;
    
           log('Countdown ist beendet.', 'info');
       }
    }
    
    
    /**
    * Startet den Countdown.
    */
    function startCountdown() {
       countdownEndTime =
           Date.now() + (countdownDurationSeconds * 1000);
    
       // Sofort ersten Wert schreiben
       updateCountdown();
    
       // Danach jede Sekunde aktualisieren
       countdownInterval = setInterval(
           updateCountdown,
           1000
       );
    }
    
    
    // Datenpunkt anlegen und Countdown starten
    createState(
       countdownState,
       '0:00:00',
       {
           name: 'Alexa Timer Countdown',
           type: 'string',
           role: 'text',
           read: true,
           write: true
       },
       () => {
           startCountdown();
       }
    );
    
    
    // Timer beim Stoppen des Skripts beenden
    onStop(
       () => {
           if (countdownInterval !== null) {
               clearInterval(countdownInterval);
               countdownInterval = null;
           }
       },
       1000
    );
    

    2b)
    Hier das skript das auf deinen alexadatenpunkt horcht. Hier
    0_userdata.0.alexatimer
    und dann den mytimer datenpunkt beschreibt. hier
    mytime.0.Countdowns.alexa.cmd
    beides am anfang zum konfigurieren.
    da ist jetzt viel kommentar und logging drin. das kann man noch entschlacken.

    // ============================================================
    // Skript 2: Countdown-Datenpunkt überwachen
    //
    // Liest Änderungen von:
    // 0_userdata.0.alexatimer
    //
    // Schreibt den bereinigten Wert mit Präfix "=!" nach:
    // mytime.0.Countdowns.alexa.cmd
    // ============================================================
    
    const countdownState = '0_userdata.0.alexatimer';
    const commandState = 'mytime.0.Countdowns.alexa.cmd';
    
    
    /**
    * Bereinigt den Datenpunktinhalt.
    *
    * Entfernt:
    * - Leerzeichen
    * - Tabs
    * - Zeilenumbrüche
    * - ein bereits vorhandenes Präfix "=!"
    */
    function cleanCountdownValue(value) {
       return String(value)
           .trim()
           .replace(/\s+/g, '')
           .replace(/^=!+/, '');
    }
    
    
    /**
    * Reagiert nur auf tatsächliche Wertänderungen.
    */
    on(
       {
           id: countdownState,
           change: 'ne'
       },
       (obj) => {
           if (
               !obj ||
               !obj.state ||
               obj.state.val === null ||
               obj.state.val === undefined
           ) {
               return;
           }
    
           const cleanedValue =
               cleanCountdownValue(obj.state.val);
    
           if (cleanedValue === '') {
               log(
                   `Der Inhalt von ${countdownState} ist nach der Bereinigung leer.`,
                   'warn'
               );
    
               return;
           }
    
           const commandValue =
               '=!' + cleanedValue;
    
           setState(
               commandState,
               commandValue,
               false,
               (error) => {
                   if (error) {
                       log(
                           `Fehler beim Schreiben nach ${commandState}: ${error}`,
                           'error'
                       );
    
                       return;
                   }
    
                   log(
                       `${commandState} wurde auf "${commandValue}" gesetzt.`,
                       'debug'
                   );
               }
           );
       }
    );
    

    1. in vis habe ich das widget mytime countdown flipclock genommen
      und dort den datenpunkt des mytime alexa countdown eingestellt.
      welchen unterdatenpunkt du nimmst ist egal. das widget sucht sich seine datenpunkte dann selbst zusammen.
      a1342dff-0ec7-42d2-9b70-9c92cdf1f3f5-image.jpeg

    [{"tpl":"tplMyTimeCountdownFlip","data":{"g_fixed":false,"g_visibility":false,"g_css_font_text":false,"g_css_background":false,"g_css_shadow_padding":false,"g_css_border":false,"g_gestures":false,"g_signals":false,"g_last_change":false,"visibility-cond":"==","visibility-val":1,"visibility-groups-action":"hide","countdown_showsec":"true","signals-cond-0":"==","signals-val-0":true,"signals-icon-0":"/vis/signals/lowbattery.png","signals-icon-size-0":0,"signals-blink-0":false,"signals-horz-0":0,"signals-vert-0":0,"signals-hide-edit-0":false,"signals-cond-1":"==","signals-val-1":true,"signals-icon-1":"/vis/signals/lowbattery.png","signals-icon-size-1":0,"signals-blink-1":false,"signals-horz-1":0,"signals-vert-1":0,"signals-hide-edit-1":false,"signals-cond-2":"==","signals-val-2":true,"signals-icon-2":"/vis/signals/lowbattery.png","signals-icon-size-2":0,"signals-blink-2":false,"signals-horz-2":0,"signals-vert-2":0,"signals-hide-edit-2":false,"lc-type":"last-change","lc-is-interval":true,"lc-is-moment":false,"lc-format":"","lc-position-vert":"top","lc-position-horz":"right","lc-offset-vert":0,"lc-offset-horz":0,"lc-font-size":"12px","lc-font-family":"","lc-font-style":"","lc-bkg-color":"","lc-color":"","lc-border-width":"0","lc-border-style":"","lc-border-color":"","lc-border-radius":10,"lc-zindex":0,"countdown_oid":"mytime.0.Countdowns.alexa.action","countdown_showmin":true,"countdown_showhrs":true},"style":{"left":"111px","top":"86px","width":"502px","height":"120px"},"widgetSet":"mytime"}]
    

    Ergebnis sieht dann so aus:

    5a267779-959f-4940-9d06-d4453debb3f1-20260721-1036-26.4326649.mp4

    Meine Adapter und Widgets
    TVProgram, SqueezeboxRPC, OpenLiga, RSSFeed, MyTime,, pi-hole2, vis-json-template, skiinfo, vis-mapwidgets, vis-2-widgets-rssfeed
    Links im Profil

    1 Antwort Letzte Antwort
    1
    • Ro75R Online
      Ro75R Online
      Ro75
      schrieb am zuletzt editiert von
      #573

      Danke für das Beispiel. Der entscheidende Punkte war setState mit false. Jetzt geht es. Danke.

      Ro75.

      SERVER = Beelink U59 16GB DDR4 RAM 512GB SSD, FB 7490, FritzDect 200+301+440, ConBee II, Zigbee Aqara Sensoren + NOUS A1Z, NOUS A1T, Philips Hue ** ioBroker, REDIS, influxdb2, Grafana, PiHole, Plex-Mediaserver, paperless-ngx (Docker), MariaDB + phpmyadmin *** VIS-Runtime = Intel NUC 8GB RAM 128GB SSD + 24" Touchscreen

      OliverIOO 1 Antwort Letzte Antwort
      0
      • Ro75R Ro75

        Danke für das Beispiel. Der entscheidende Punkte war setState mit false. Jetzt geht es. Danke.

        Ro75.

        OliverIOO Offline
        OliverIOO Offline
        OliverIO
        schrieb am zuletzt editiert von
        #574

        @Ro75 sagte:

        setState mit false

        ja, true bleibt bei gemanagten datenpunkten dem adapter vorbehalten, sonst würde der adapter endlos auf datenpunktänderungen reagieren.
        das true/false betrifft den ack(nowledged)/bestätigt status des datenpunkts.
        ein adapter reagiert auf ack=false und bestätigt dann den datenpunkt mit ack=true (auf diese änderung reagiert er dann nicht mehr)

        Meine Adapter und Widgets
        TVProgram, SqueezeboxRPC, OpenLiga, RSSFeed, MyTime,, pi-hole2, vis-json-template, skiinfo, vis-mapwidgets, vis-2-widgets-rssfeed
        Links im Profil

        1 Antwort Letzte Antwort
        0
        • OliverIOO Offline
          OliverIOO Offline
          OliverIO
          schrieb am zuletzt editiert von
          #575

          Neue Version 2.5.0

          • Die FlipClock widgets (countdown und clock) sind nun über die css-Einstellung des widgets über Schriftgroße/Font-Size einstellbar. Daher ist das transform nicht mehr notwendig.
          • Es wurden die default-Einstellungen der widgets etwas optimiert, so das man immer eine Anzeige hat, auch wenn noch kein Datenpunkt ausgewählt wurde.

          Meine Adapter und Widgets
          TVProgram, SqueezeboxRPC, OpenLiga, RSSFeed, MyTime,, pi-hole2, vis-json-template, skiinfo, vis-mapwidgets, vis-2-widgets-rssfeed
          Links im Profil

          1 Antwort Letzte Antwort
          2
          • ChaotC Offline
            ChaotC Offline
            Chaot
            schrieb am zuletzt editiert von Chaot
            #576

            clock.jpg
            Was mache ich verkehrt?

            Version 2.5.0
            Vorher hat das funktioniert

            ioBroker auf NUC unter Proxmox; VIS: 12" Touchscreen und 17" Touch; Lichtsteuerung, Thermometer und Sensoren: Tasmota (39); Ambiente Beleuchtung: WLED (9); Heizung: DECT Thermostate (9) an Fritz 6690; EMS-ESP; 1 Echo V2; 3 Echo DOT; 1 Echo Connect; 2 Echo Show 5; Unifi Ap-Ac Lite.

            OliverIOO 1 Antwort Letzte Antwort
            0
            • ChaotC Chaot

              clock.jpg
              Was mache ich verkehrt?

              Version 2.5.0
              Vorher hat das funktioniert

              OliverIOO Offline
              OliverIOO Offline
              OliverIO
              schrieb am zuletzt editiert von OliverIO
              #577

              @Chaot

              Genau das was in den anmerlungen oben steht.

              • Die FlipClock widgets (countdown und clock) sind nun über die css-Einstellung des widgets über Schriftgroße/Font-Size einstellbar. Daher ist das transform nicht mehr notwendig.
              • Es wurden die default-Einstellungen der widgets etwas optimiert, so das man immer eine Anzeige hat, auch wenn noch kein Datenpunkt ausgewählt wurde.

              Der default ist eine für deine widgetglsse zu groß.
              Du stellst in den widgeteinstelunh bei css Schrift eine kleinere Größe ein.
              Bsp 50px oder 40px
              Die einzelnen Ziffern brechen um

              Falls das nicht hilft musst du mir beschreiben wie es vorher ausgesehen hat. Da reicht mein Vorstellungsvermögen nicht aus

              Meine Adapter und Widgets
              TVProgram, SqueezeboxRPC, OpenLiga, RSSFeed, MyTime,, pi-hole2, vis-json-template, skiinfo, vis-mapwidgets, vis-2-widgets-rssfeed
              Links im Profil

              1 Antwort Letzte Antwort
              0
              • ChaotC Offline
                ChaotC Offline
                Chaot
                schrieb am zuletzt editiert von Chaot
                #578

                Der Effekt tritt nur bei der Flip Clock auf. die beiden anderen Uhren machen das nicht.
                Mit Transform arbeite ich nicht.
                Datenpunkt ist ausgewählt. Verhalten bei Server oder Client gleich

                2924c6e1-f779-49c0-a616-ed0226814fc5-image.jpeg

                So sieht des im Editor aus wenn ich als Schriftgröße 10px eingebe und die Widgetbreite auf dem ursprünglichen Wert lasse(siehe Rahmen). Auch wenn ich das Widget ohne Schriftgrößenänderung grüßer ziehe bleiben die Ziffern untereinander.

                ioBroker auf NUC unter Proxmox; VIS: 12" Touchscreen und 17" Touch; Lichtsteuerung, Thermometer und Sensoren: Tasmota (39); Ambiente Beleuchtung: WLED (9); Heizung: DECT Thermostate (9) an Fritz 6690; EMS-ESP; 1 Echo V2; 3 Echo DOT; 1 Echo Connect; 2 Echo Show 5; Unifi Ap-Ac Lite.

                Eduard77E 1 Antwort Letzte Antwort
                0
                • ChaotC Chaot

                  Der Effekt tritt nur bei der Flip Clock auf. die beiden anderen Uhren machen das nicht.
                  Mit Transform arbeite ich nicht.
                  Datenpunkt ist ausgewählt. Verhalten bei Server oder Client gleich

                  2924c6e1-f779-49c0-a616-ed0226814fc5-image.jpeg

                  So sieht des im Editor aus wenn ich als Schriftgröße 10px eingebe und die Widgetbreite auf dem ursprünglichen Wert lasse(siehe Rahmen). Auch wenn ich das Widget ohne Schriftgrößenänderung grüßer ziehe bleiben die Ziffern untereinander.

                  Eduard77E Online
                  Eduard77E Online
                  Eduard77
                  schrieb am zuletzt editiert von
                  #579

                  @Chaot
                  kann ich bestätigen. Bei mir sieht genauso aus und ich schaffe es nicht in einer Linie anzeigen zu lassen.

                  OliverIOO 1 Antwort Letzte Antwort
                  0
                  • Eduard77E Eduard77

                    @Chaot
                    kann ich bestätigen. Bei mir sieht genauso aus und ich schaffe es nicht in einer Linie anzeigen zu lassen.

                    OliverIOO Offline
                    OliverIOO Offline
                    OliverIO
                    schrieb am zuletzt editiert von
                    #580

                    @Eduard77
                    @chaot

                    Bitte ein Widget Export

                    Meine Adapter und Widgets
                    TVProgram, SqueezeboxRPC, OpenLiga, RSSFeed, MyTime,, pi-hole2, vis-json-template, skiinfo, vis-mapwidgets, vis-2-widgets-rssfeed
                    Links im Profil

                    Eduard77E 1 Antwort Letzte Antwort
                    0
                    • OliverIOO OliverIO

                      @Eduard77
                      @chaot

                      Bitte ein Widget Export

                      Eduard77E Online
                      Eduard77E Online
                      Eduard77
                      schrieb am zuletzt editiert von
                      #581

                      @OliverIO

                      [
                        {
                          "tpl": "tplMyTimeClockFlip",
                          "data": {
                            "bindings": [],
                            "clock_time_source": "client",
                            "g_common": true,
                            "clock_date_order": "DMY",
                            "clock_showyear": "true",
                            "clock_showmonth": "true",
                            "clock_showday": "true",
                            "clock_showhours": "true",
                            "clock_showminutes": "true",
                            "clock_showseconds": "true"
                          },
                          "style": {
                            "bindings": [],
                            "left": "291.234px",
                            "top": "151.523px",
                            "width": "931.992px",
                            "height": "92.9961px"
                          },
                          "widgetSet": "mytime",
                          "_id": "i000001"
                        }
                      ]
                      

                      5bb8875e-4211-4316-8f7f-1359fbb6cf6b-image.jpeg

                      OliverIOO 1 Antwort Letzte Antwort
                      0
                      • Eduard77E Eduard77

                        @OliverIO

                        [
                          {
                            "tpl": "tplMyTimeClockFlip",
                            "data": {
                              "bindings": [],
                              "clock_time_source": "client",
                              "g_common": true,
                              "clock_date_order": "DMY",
                              "clock_showyear": "true",
                              "clock_showmonth": "true",
                              "clock_showday": "true",
                              "clock_showhours": "true",
                              "clock_showminutes": "true",
                              "clock_showseconds": "true"
                            },
                            "style": {
                              "bindings": [],
                              "left": "291.234px",
                              "top": "151.523px",
                              "width": "931.992px",
                              "height": "92.9961px"
                            },
                            "widgetSet": "mytime",
                            "_id": "i000001"
                          }
                        ]
                        

                        5bb8875e-4211-4316-8f7f-1359fbb6cf6b-image.jpeg

                        OliverIOO Offline
                        OliverIOO Offline
                        OliverIO
                        schrieb am zuletzt editiert von OliverIO
                        #582

                        @Eduard77

                        bei mir wird das ordentlich angezeigt.
                        könntet ihr mal bitte prüfen, ob ihr noch extra css klassen definiert habt,
                        die mit

                        clock-flip
                        

                        beginnen
                        oder wahrscheinlicher noch

                        play
                        

                        wenn nicht, dann wird es etwas komplizierter, da ich bei euch so nicht reinschauen kann.

                        öffnet bitte im runtime mode die browser konsole mit F12
                        geht in den console tab
                        dort wo die meldungen stehen m ende ist ein eingabefeld.
                        dort bitte das folgende einfügen
                        aus dem #w000005 müsst ihr die widget id des betroffenen widgets machen.

                        var selector='#w000005 > div > span.clock-flip-unit.clock-day.flip-clock-wrapper > ul:nth-child(1)',el=document.querySelector(selector),out=[],scan=function(rules,source){Array.from(rules||[]).forEach(function(r){if(r.selectorText){try{if(el.matches(r.selectorText))out.push('/* '+source+' */\n'+r.selectorText+' {\n  '+r.style.cssText.replace(/;\s*/g,';\n  ').trim()+'\n}')}catch(e){console.warn('Selektor nicht prüfbar:',r.selectorText,e)}}else if(r.cssRules){scan(r.cssRules,source)}})};if(!el){console.error('Element nicht gefunden:',selector)}else{console.log('Element:',el,'Klassen:',Array.from(el.classList));Array.from(document.styleSheets).forEach(function(s){try{scan(s.cssRules,s.href||'<style>')}catch(e){console.warn('Stylesheet nicht lesbar:',s.href||'<style>',e.message)}});console.log(out.length?out.join('\n\n'):'Keine passenden CSS-Regeln gefunden.')}
                        

                        die ausgabe dann bitte hier posten
                        bei mir sieht die so aus

                        /* http://192.168.1.81:8082/vis-2/widgets/mytime/css/flipclock.css */
                        .flip-clock-wrapper * {
                          box-sizing: border-box;
                          backface-visibility: hidden;
                        }
                        
                        /* http://192.168.1.81:8082/vis-2/widgets/mytime/css/flipclock.css */
                        .flip-clock-wrapper ul {
                          list-style: none;
                          padding: 0px;
                        }
                        
                        /* http://192.168.1.81:8082/vis-2/widgets/mytime/css/flipclock.css */
                        .flip-clock-wrapper ul {
                          position: relative;
                          float: left;
                          margin: 0.0625em;
                          width: 0.75em;
                          height: 1.125em;
                          font-size: inherit;
                          font-weight: bold;
                          line-height: 1.0875em;
                          border-radius: 0.075em;
                          background: rgb(0, 0, 0);
                        }
                        
                        /* http://192.168.1.81:8082/vis-2/widgets/mytime/css/flipclock.css */
                        .flip-clock-wrapper .flip {
                          box-shadow: rgba(0, 0, 0, 0.7) 0px 0.025em 0.0625em;
                        }
                        
                        /* <style> */
                        .play {
                          color: white;
                        }
                        

                        das .play am ende ist ein test von mir.
                        wenn davon abgesehen noch andere dinge stehen, müssen wir uns auf die suche machen woher das kommt

                        hier noch ergänzend die große suche.
                        auch hier am Anfang die widget id anpassen. das # muss stehen bleiben
                        das sammelt alle css klassen aller darunterliegenden html elemente ein und gibt dann die definitionen aus.
                        aber als erstes das obige skript probieren

                        var selector='#w000005',root=document.querySelector(selector);if(!root){console.error('Element nicht gefunden:',selector)}else{var elements=[root].concat(Array.from(root.querySelectorAll('*'))),classes=Array.from(new Set(elements.reduce(function(a,e){return a.concat(Array.from(e.classList||[]))},[]))).sort(),esc=function(s){return window.CSS&&CSS.escape?CSS.escape(s):s.replace(/([^\w-])/g,'\\$1')},results=[],seen=new Set(),scan=function(rules,source,context){Array.from(rules||[]).forEach(function(r){if(r.selectorText&&r.style){var classRelated=classes.some(function(c){return new RegExp('(^|[^\\w-])\\.'+esc(c)+'(?![\\w-])').test(r.selectorText)}),matching=false;try{matching=elements.some(function(e){return e.matches(r.selectorText)})}catch(e){}if(classRelated||matching){var css=Array.from(r.style).sort().map(function(p){return p+': '+r.style.getPropertyValue(p).trim()+(r.style.getPropertyPriority(p)?' !important':'')+';'}).join('\n  '),key=r.selectorText+'|'+css+'|'+source+'|'+context;if(!seen.has(key)){seen.add(key);results.push({selector:r.selectorText,css:css,source:source,context:context,matching:matching})}}}else if(r.cssRules){var label=r.conditionText?'@'+(r.type===4?'media':r.type===12?'supports':'rule')+' '+r.conditionText:r.name?'@'+r.name:'@rule';scan(r.cssRules,source,context.concat(label))}})},sheets=Array.from(document.styleSheets);sheets.forEach(function(s,i){try{scan(s.cssRules,s.href||'<inline-style-'+i+'>',[])}catch(e){console.warn('Stylesheet nicht lesbar:',s.href||'<inline-style-'+i+'>',e.message)}});results.sort(function(a,b){return a.selector.localeCompare(b.selector)||a.source.localeCompare(b.source)||a.css.localeCompare(b.css)});console.log('SELEKTOR:\n'+selector+'\n\nKLASSEN ('+classes.length+'):\n'+classes.map(function(c){return'.'+c}).join('\n')+'\n\nCSS-REGELN ('+results.length+'):\n\n'+results.map(function(r){return'/* '+(r.matching?'AKTUELL WIRKSAM':'KLASSENBEZOGEN')+' | '+r.source+(r.context.length?' | '+r.context.join(' > '):'')+' */\n'+r.selector+' {\n  '+r.css+'\n}'}).join('\n\n'))}
                        

                        Meine Adapter und Widgets
                        TVProgram, SqueezeboxRPC, OpenLiga, RSSFeed, MyTime,, pi-hole2, vis-json-template, skiinfo, vis-mapwidgets, vis-2-widgets-rssfeed
                        Links im Profil

                        Eduard77E 1 Antwort Letzte Antwort
                        0
                        • OliverIOO OliverIO

                          @Eduard77

                          bei mir wird das ordentlich angezeigt.
                          könntet ihr mal bitte prüfen, ob ihr noch extra css klassen definiert habt,
                          die mit

                          clock-flip
                          

                          beginnen
                          oder wahrscheinlicher noch

                          play
                          

                          wenn nicht, dann wird es etwas komplizierter, da ich bei euch so nicht reinschauen kann.

                          öffnet bitte im runtime mode die browser konsole mit F12
                          geht in den console tab
                          dort wo die meldungen stehen m ende ist ein eingabefeld.
                          dort bitte das folgende einfügen
                          aus dem #w000005 müsst ihr die widget id des betroffenen widgets machen.

                          var selector='#w000005 > div > span.clock-flip-unit.clock-day.flip-clock-wrapper > ul:nth-child(1)',el=document.querySelector(selector),out=[],scan=function(rules,source){Array.from(rules||[]).forEach(function(r){if(r.selectorText){try{if(el.matches(r.selectorText))out.push('/* '+source+' */\n'+r.selectorText+' {\n  '+r.style.cssText.replace(/;\s*/g,';\n  ').trim()+'\n}')}catch(e){console.warn('Selektor nicht prüfbar:',r.selectorText,e)}}else if(r.cssRules){scan(r.cssRules,source)}})};if(!el){console.error('Element nicht gefunden:',selector)}else{console.log('Element:',el,'Klassen:',Array.from(el.classList));Array.from(document.styleSheets).forEach(function(s){try{scan(s.cssRules,s.href||'<style>')}catch(e){console.warn('Stylesheet nicht lesbar:',s.href||'<style>',e.message)}});console.log(out.length?out.join('\n\n'):'Keine passenden CSS-Regeln gefunden.')}
                          

                          die ausgabe dann bitte hier posten
                          bei mir sieht die so aus

                          /* http://192.168.1.81:8082/vis-2/widgets/mytime/css/flipclock.css */
                          .flip-clock-wrapper * {
                            box-sizing: border-box;
                            backface-visibility: hidden;
                          }
                          
                          /* http://192.168.1.81:8082/vis-2/widgets/mytime/css/flipclock.css */
                          .flip-clock-wrapper ul {
                            list-style: none;
                            padding: 0px;
                          }
                          
                          /* http://192.168.1.81:8082/vis-2/widgets/mytime/css/flipclock.css */
                          .flip-clock-wrapper ul {
                            position: relative;
                            float: left;
                            margin: 0.0625em;
                            width: 0.75em;
                            height: 1.125em;
                            font-size: inherit;
                            font-weight: bold;
                            line-height: 1.0875em;
                            border-radius: 0.075em;
                            background: rgb(0, 0, 0);
                          }
                          
                          /* http://192.168.1.81:8082/vis-2/widgets/mytime/css/flipclock.css */
                          .flip-clock-wrapper .flip {
                            box-shadow: rgba(0, 0, 0, 0.7) 0px 0.025em 0.0625em;
                          }
                          
                          /* <style> */
                          .play {
                            color: white;
                          }
                          

                          das .play am ende ist ein test von mir.
                          wenn davon abgesehen noch andere dinge stehen, müssen wir uns auf die suche machen woher das kommt

                          hier noch ergänzend die große suche.
                          auch hier am Anfang die widget id anpassen. das # muss stehen bleiben
                          das sammelt alle css klassen aller darunterliegenden html elemente ein und gibt dann die definitionen aus.
                          aber als erstes das obige skript probieren

                          var selector='#w000005',root=document.querySelector(selector);if(!root){console.error('Element nicht gefunden:',selector)}else{var elements=[root].concat(Array.from(root.querySelectorAll('*'))),classes=Array.from(new Set(elements.reduce(function(a,e){return a.concat(Array.from(e.classList||[]))},[]))).sort(),esc=function(s){return window.CSS&&CSS.escape?CSS.escape(s):s.replace(/([^\w-])/g,'\\$1')},results=[],seen=new Set(),scan=function(rules,source,context){Array.from(rules||[]).forEach(function(r){if(r.selectorText&&r.style){var classRelated=classes.some(function(c){return new RegExp('(^|[^\\w-])\\.'+esc(c)+'(?![\\w-])').test(r.selectorText)}),matching=false;try{matching=elements.some(function(e){return e.matches(r.selectorText)})}catch(e){}if(classRelated||matching){var css=Array.from(r.style).sort().map(function(p){return p+': '+r.style.getPropertyValue(p).trim()+(r.style.getPropertyPriority(p)?' !important':'')+';'}).join('\n  '),key=r.selectorText+'|'+css+'|'+source+'|'+context;if(!seen.has(key)){seen.add(key);results.push({selector:r.selectorText,css:css,source:source,context:context,matching:matching})}}}else if(r.cssRules){var label=r.conditionText?'@'+(r.type===4?'media':r.type===12?'supports':'rule')+' '+r.conditionText:r.name?'@'+r.name:'@rule';scan(r.cssRules,source,context.concat(label))}})},sheets=Array.from(document.styleSheets);sheets.forEach(function(s,i){try{scan(s.cssRules,s.href||'<inline-style-'+i+'>',[])}catch(e){console.warn('Stylesheet nicht lesbar:',s.href||'<inline-style-'+i+'>',e.message)}});results.sort(function(a,b){return a.selector.localeCompare(b.selector)||a.source.localeCompare(b.source)||a.css.localeCompare(b.css)});console.log('SELEKTOR:\n'+selector+'\n\nKLASSEN ('+classes.length+'):\n'+classes.map(function(c){return'.'+c}).join('\n')+'\n\nCSS-REGELN ('+results.length+'):\n\n'+results.map(function(r){return'/* '+(r.matching?'AKTUELL WIRKSAM':'KLASSENBEZOGEN')+' | '+r.source+(r.context.length?' | '+r.context.join(' > '):'')+' */\n'+r.selector+' {\n  '+r.css+'\n}'}).join('\n\n'))}
                          
                          Eduard77E Online
                          Eduard77E Online
                          Eduard77
                          schrieb am zuletzt editiert von
                          #583

                          @OliverIO
                          CSS Klasse nutze ich nicht.
                          Bei Konsole, entweder mache ich was falsch oder es findet nichts.

                          8267fb55-cad2-436e-85a4-763dbf9f13b3-image.jpeg

                          OliverIOO 1 Antwort Letzte Antwort
                          0
                          • Eduard77E Eduard77

                            @OliverIO
                            CSS Klasse nutze ich nicht.
                            Bei Konsole, entweder mache ich was falsch oder es findet nichts.

                            8267fb55-cad2-436e-85a4-763dbf9f13b3-image.jpeg

                            OliverIOO Offline
                            OliverIOO Offline
                            OliverIO
                            schrieb am zuletzt editiert von
                            #584

                            @Eduard77

                            aber andere adapter, dann die skripte bitte

                            Meine Adapter und Widgets
                            TVProgram, SqueezeboxRPC, OpenLiga, RSSFeed, MyTime,, pi-hole2, vis-json-template, skiinfo, vis-mapwidgets, vis-2-widgets-rssfeed
                            Links im Profil

                            Eduard77E 2 Antworten Letzte Antwort
                            0
                            • OliverIOO OliverIO

                              @Eduard77

                              aber andere adapter, dann die skripte bitte

                              Eduard77E Online
                              Eduard77E Online
                              Eduard77
                              schrieb am zuletzt editiert von
                              #585

                              @OliverIO

                              /* http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                              .flip-clock-wrapper * {
                               box-sizing: border-box;
                               backface-visibility: hidden;
                              }
                              
                              /* http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                              .flip-clock-wrapper ul {
                               list-style: none;
                               padding: 0px;
                              }
                              
                              /* http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                              .flip-clock-wrapper ul {
                               position: relative;
                               float: left;
                               margin: 0.0625em;
                               width: 0.75em;
                               height: 1.125em;
                               font-size: inherit;
                               font-weight: bold;
                               line-height: 1.0875em;
                               border-radius: 0.075em;
                               background: rgb(0, 0, 0);
                              }
                              
                              /* http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                              .flip-clock-wrapper .flip {
                               box-shadow: rgba(0, 0, 0, 0.7) 0px 0.025em 0.0625em;
                              }
                              
                              /* http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                              .flip-clock-wrapper * {
                               box-sizing: border-box;
                               backface-visibility: hidden;
                              }
                              
                              /* http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                              .flip-clock-wrapper ul {
                               list-style: none;
                              }
                              
                              /* http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                              .flip-clock-wrapper ul {
                               position: relative;
                               float: left;
                               margin: 5px;
                               width: 60px;
                               height: 90px;
                               font-size: 80px;
                               font-weight: bold;
                               line-height: 87px;
                               border-radius: 6px;
                               background: rgb(0, 0, 0);
                              }
                              
                              /* http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                              .flip-clock-wrapper .flip {
                               box-shadow: rgba(0, 0, 0, 0.7) 0px 2px 5px;
                              }
                              
                              OliverIOO 1 Antwort Letzte Antwort
                              0
                              • OliverIOO OliverIO

                                @Eduard77

                                aber andere adapter, dann die skripte bitte

                                Eduard77E Online
                                Eduard77E Online
                                Eduard77
                                schrieb am zuletzt editiert von
                                #586

                                @OliverIO
                                Skripte nutze ich auch nicht.

                                1 Antwort Letzte Antwort
                                0
                                • Eduard77E Eduard77

                                  @OliverIO

                                  /* http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                  .flip-clock-wrapper * {
                                   box-sizing: border-box;
                                   backface-visibility: hidden;
                                  }
                                  
                                  /* http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                  .flip-clock-wrapper ul {
                                   list-style: none;
                                   padding: 0px;
                                  }
                                  
                                  /* http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                  .flip-clock-wrapper ul {
                                   position: relative;
                                   float: left;
                                   margin: 0.0625em;
                                   width: 0.75em;
                                   height: 1.125em;
                                   font-size: inherit;
                                   font-weight: bold;
                                   line-height: 1.0875em;
                                   border-radius: 0.075em;
                                   background: rgb(0, 0, 0);
                                  }
                                  
                                  /* http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                  .flip-clock-wrapper .flip {
                                   box-shadow: rgba(0, 0, 0, 0.7) 0px 0.025em 0.0625em;
                                  }
                                  
                                  /* http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                  .flip-clock-wrapper * {
                                   box-sizing: border-box;
                                   backface-visibility: hidden;
                                  }
                                  
                                  /* http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                  .flip-clock-wrapper ul {
                                   list-style: none;
                                  }
                                  
                                  /* http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                  .flip-clock-wrapper ul {
                                   position: relative;
                                   float: left;
                                   margin: 5px;
                                   width: 60px;
                                   height: 90px;
                                   font-size: 80px;
                                   font-weight: bold;
                                   line-height: 87px;
                                   border-radius: 6px;
                                   background: rgb(0, 0, 0);
                                  }
                                  
                                  /* http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                  .flip-clock-wrapper .flip {
                                   box-shadow: rgba(0, 0, 0, 0.7) 0px 2px 5px;
                                  }
                                  
                                  OliverIOO Offline
                                  OliverIOO Offline
                                  OliverIO
                                  schrieb am zuletzt editiert von OliverIO
                                  #587

                                  @Eduard77

                                  dann das große bitte
                                  skripte: das was ich gepostet habe. das 2. dann bitte ausführen

                                  Meine Adapter und Widgets
                                  TVProgram, SqueezeboxRPC, OpenLiga, RSSFeed, MyTime,, pi-hole2, vis-json-template, skiinfo, vis-mapwidgets, vis-2-widgets-rssfeed
                                  Links im Profil

                                  Eduard77E 1 Antwort Letzte Antwort
                                  0
                                  • OliverIOO OliverIO

                                    @Eduard77

                                    dann das große bitte
                                    skripte: das was ich gepostet habe. das 2. dann bitte ausführen

                                    Eduard77E Online
                                    Eduard77E Online
                                    Eduard77
                                    schrieb am zuletzt editiert von Eduard77
                                    #588

                                    @oliverio

                                    SELEKTOR:
                                    #w000601
                                    
                                    KLASSEN (20):
                                    .clock-day
                                    .clock-flip
                                    .clock-flip-separator
                                    .clock-flip-unit
                                    .clock-hours
                                    .clock-minutes
                                    .clock-month
                                    .clock-seconds
                                    .clock-year
                                    .down
                                    .flip
                                    .flip-clock-active
                                    .flip-clock-before
                                    .flip-clock-wrapper
                                    .inn
                                    .play
                                    .shadow
                                    .up
                                    .vis-tpl-mytime-MyTime-clock-FlipClock
                                    .vis-widget
                                    
                                    CSS-REGELN (76):
                                    
                                    /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                    .flip-clock-wrapper {
                                     font-family: "Helvetica Neue", Helvetica, sans-serif;
                                     font-size: inherit;
                                     font-style: normal;
                                     font-weight: normal;
                                     user-select: none;
                                    }
                                    
                                    /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                    .flip-clock-wrapper {
                                     margin-bottom: 0.1375em;
                                     margin-left: 0.1375em;
                                     margin-right: 0.1375em;
                                     margin-top: 0.1375em;
                                     position: relative;
                                     text-align: center;
                                     width: 100%;
                                    }
                                    
                                    /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                    .flip-clock-wrapper {
                                     font-family: "Helvetica Neue", H…
                                    
                                    OliverIOO 1 Antwort Letzte Antwort
                                    0
                                    • Eduard77E Eduard77

                                      @oliverio

                                      SELEKTOR:
                                      #w000601
                                      
                                      KLASSEN (20):
                                      .clock-day
                                      .clock-flip
                                      .clock-flip-separator
                                      .clock-flip-unit
                                      .clock-hours
                                      .clock-minutes
                                      .clock-month
                                      .clock-seconds
                                      .clock-year
                                      .down
                                      .flip
                                      .flip-clock-active
                                      .flip-clock-before
                                      .flip-clock-wrapper
                                      .inn
                                      .play
                                      .shadow
                                      .up
                                      .vis-tpl-mytime-MyTime-clock-FlipClock
                                      .vis-widget
                                      
                                      CSS-REGELN (76):
                                      
                                      /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                      .flip-clock-wrapper {
                                       font-family: "Helvetica Neue", Helvetica, sans-serif;
                                       font-size: inherit;
                                       font-style: normal;
                                       font-weight: normal;
                                       user-select: none;
                                      }
                                      
                                      /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                      .flip-clock-wrapper {
                                       margin-bottom: 0.1375em;
                                       margin-left: 0.1375em;
                                       margin-right: 0.1375em;
                                       margin-top: 0.1375em;
                                       position: relative;
                                       text-align: center;
                                       width: 100%;
                                      }
                                      
                                      /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                      .flip-clock-wrapper {
                                       font-family: "Helvetica Neue", H…
                                      
                                      OliverIOO Offline
                                      OliverIOO Offline
                                      OliverIO
                                      schrieb am zuletzt editiert von OliverIO
                                      #589

                                      @Eduard77
                                      bitte alles kopieren. am ende der ausgabe steht sowas wie copy

                                      39255ca9-85dc-40ec-a967-b5824cd9aef7-image.jpeg

                                      Meine Adapter und Widgets
                                      TVProgram, SqueezeboxRPC, OpenLiga, RSSFeed, MyTime,, pi-hole2, vis-json-template, skiinfo, vis-mapwidgets, vis-2-widgets-rssfeed
                                      Links im Profil

                                      Eduard77E 1 Antwort Letzte Antwort
                                      0
                                      • OliverIOO OliverIO

                                        @Eduard77
                                        bitte alles kopieren. am ende der ausgabe steht sowas wie copy

                                        39255ca9-85dc-40ec-a967-b5824cd9aef7-image.jpeg

                                        Eduard77E Online
                                        Eduard77E Online
                                        Eduard77
                                        schrieb am zuletzt editiert von
                                        #590

                                        @OliverIO

                                        #w000601
                                        
                                        KLASSEN (20):
                                        .clock-day
                                        .clock-flip
                                        .clock-flip-separator
                                        .clock-flip-unit
                                        .clock-hours
                                        .clock-minutes
                                        .clock-month
                                        .clock-seconds
                                        .clock-year
                                        .down
                                        .flip
                                        .flip-clock-active
                                        .flip-clock-before
                                        .flip-clock-wrapper
                                        .inn
                                        .play
                                        .shadow
                                        .up
                                        .vis-tpl-mytime-MyTime-clock-FlipClock
                                        .vis-widget
                                        
                                        CSS-REGELN (76):
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper {
                                         font-family: "Helvetica Neue", Helvetica, sans-serif;
                                         font-size: inherit;
                                         font-style: normal;
                                         font-weight: normal;
                                         user-select: none;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper {
                                         margin-bottom: 0.1375em;
                                         margin-left: 0.1375em;
                                         margin-right: 0.1375em;
                                         margin-top: 0.1375em;
                                         position: relative;
                                         text-align: center;
                                         width: 100%;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper {
                                         font-family: "Helvetica Neue", Helvetica, sans-serif;
                                         font-feature-settings: normal;
                                         font-kerning: auto;
                                         font-language-override: normal;
                                         font-optical-sizing: auto;
                                         font-size: 11px;
                                         font-size-adjust: none;
                                         font-stretch: normal;
                                         font-style: normal;
                                         font-variant-alternates: normal;
                                         font-variant-caps: normal;
                                         font-variant-east-asian: normal;
                                         font-variant-emoji: normal;
                                         font-variant-ligatures: normal;
                                         font-variant-numeric: normal;
                                         font-variant-position: normal;
                                         font-variation-settings: normal;
                                         font-weight: normal;
                                         line-height: normal;
                                         user-select: none;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper {
                                         margin-bottom: 1em;
                                         margin-left: 1em;
                                         margin-right: 1em;
                                         margin-top: 1em;
                                         position: relative;
                                         text-align: center;
                                         width: 100%;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper .flip {
                                         box-shadow: rgba(0, 0, 0, 0.7) 0px 0.025em 0.0625em;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper .flip {
                                         box-shadow: rgba(0, 0, 0, 0.7) 0px 2px 5px;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper * {
                                         backface-visibility: hidden;
                                         box-sizing: border-box;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper * {
                                         backface-visibility: hidden;
                                         box-sizing: border-box;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper a {
                                         color: rgb(204, 204, 204);
                                         cursor: pointer;
                                         text-decoration-color: currentcolor;
                                         text-decoration-line: none;
                                         text-decoration-style: solid;
                                         text-decoration-thickness: auto;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper a {
                                         color: rgb(204, 204, 204);
                                         cursor: pointer;
                                         text-decoration-color: currentcolor;
                                         text-decoration-line: none;
                                         text-decoration-style: solid;
                                         text-decoration-thickness: auto;
                                        }
                                        
                                        /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper a:hover {
                                         color: rgb(255, 255, 255);
                                        }
                                        
                                        /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper a:hover {
                                         color: rgb(255, 255, 255);
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper ul {
                                         background-attachment: scroll;
                                         background-clip: border-box;
                                         background-color: rgb(0, 0, 0);
                                         background-image: none;
                                         background-origin: padding-box;
                                         background-position-x: 0%;
                                         background-position-y: 0%;
                                         background-repeat: repeat;
                                         background-size: auto;
                                         border-bottom-left-radius: 0.075em;
                                         border-bottom-right-radius: 0.075em;
                                         border-top-left-radius: 0.075em;
                                         border-top-right-radius: 0.075em;
                                         float: left;
                                         font-size: inherit;
                                         font-weight: bold;
                                         height: 1.125em;
                                         line-height: 1.0875em;
                                         margin-bottom: 0.0625em;
                                         margin-left: 0.0625em;
                                         margin-right: 0.0625em;
                                         margin-top: 0.0625em;
                                         position: relative;
                                         width: 0.75em;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper ul {
                                         list-style-image: none;
                                         list-style-position: outside;
                                         list-style-type: none;
                                         padding-bottom: 0px;
                                         padding-left: 0px;
                                         padding-right: 0px;
                                         padding-top: 0px;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper ul {
                                         background-attachment: scroll;
                                         background-clip: border-box;
                                         background-color: rgb(0, 0, 0);
                                         background-image: none;
                                         background-origin: padding-box;
                                         background-position-x: 0%;
                                         background-position-y: 0%;
                                         background-repeat: repeat;
                                         background-size: auto;
                                         border-bottom-left-radius: 6px;
                                         border-bottom-right-radius: 6px;
                                         border-top-left-radius: 6px;
                                         border-top-right-radius: 6px;
                                         float: left;
                                         font-size: 80px;
                                         font-weight: bold;
                                         height: 90px;
                                         line-height: 87px;
                                         margin-bottom: 5px;
                                         margin-left: 5px;
                                         margin-right: 5px;
                                         margin-top: 5px;
                                         position: relative;
                                         width: 60px;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper ul {
                                         list-style-image: none;
                                         list-style-position: outside;
                                         list-style-type: none;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper ul li {
                                         height: 100%;
                                         left: 0px;
                                         line-height: 1.0875em;
                                         position: absolute;
                                         text-decoration-color: currentcolor !important;
                                         text-decoration-line: none !important;
                                         text-decoration-style: solid !important;
                                         text-decoration-thickness: auto !important;
                                         top: 0px;
                                         width: 100%;
                                         z-index: 1;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper ul li {
                                         height: 100%;
                                         left: 0px;
                                         line-height: 87px;
                                         position: absolute;
                                         text-decoration-color: currentcolor !important;
                                         text-decoration-line: none !important;
                                         text-decoration-style: solid !important;
                                         text-decoration-thickness: auto !important;
                                         top: 0px;
                                         width: 100%;
                                         z-index: 1;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper ul li a {
                                         cursor: default !important;
                                         display: block;
                                         height: 100%;
                                         margin-bottom: 0px !important;
                                         margin-left: 0px !important;
                                         margin-right: 0px !important;
                                         margin-top: 0px !important;
                                         overflow-x: visible !important;
                                         overflow-y: visible !important;
                                         perspective: 2.5em;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper ul li a {
                                         cursor: default !important;
                                         display: block;
                                         height: 100%;
                                         margin-bottom: 0px !important;
                                         margin-left: 0px !important;
                                         margin-right: 0px !important;
                                         margin-top: 0px !important;
                                         overflow-x: visible !important;
                                         overflow-y: visible !important;
                                         perspective: 200px;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper ul li a div {
                                         font-size: inherit;
                                         height: 50%;
                                         left: 0px;
                                         outline-color: transparent;
                                         outline-style: solid;
                                         outline-width: 1px;
                                         overflow-x: hidden;
                                         overflow-y: hidden;
                                         position: absolute;
                                         width: 100%;
                                         z-index: 1;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper ul li a div {
                                         font-size: 80px;
                                         height: 50%;
                                         left: 0px;
                                         outline-color: transparent;
                                         outline-style: solid;
                                         outline-width: 1px;
                                         overflow-x: hidden;
                                         overflow-y: hidden;
                                         position: absolute;
                                         width: 100%;
                                         z-index: 1;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper ul li a div .shadow {
                                         height: 100%;
                                         position: absolute;
                                         width: 100%;
                                         z-index: 2;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper ul li a div .shadow {
                                         height: 100%;
                                         position: absolute;
                                         width: 100%;
                                         z-index: 2;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper ul li a div div.inn {
                                         background-color: rgb(51, 51, 51);
                                         border-bottom-left-radius: 0.085714em;
                                         border-bottom-right-radius: 0.085714em;
                                         border-top-left-radius: 0.085714em;
                                         border-top-right-radius: 0.085714em;
                                         color: rgb(204, 204, 204);
                                         font-size: 0.875em;
                                         height: 200%;
                                         left: 0px;
                                         position: absolute;
                                         text-align: center;
                                         text-shadow: rgb(0, 0, 0) 0px 0.014286em 0.028571em;
                                         width: 100%;
                                         z-index: 1;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper ul li a div div.inn {
                                         background-color: rgb(51, 51, 51);
                                         border-bottom-left-radius: 6px;
                                         border-bottom-right-radius: 6px;
                                         border-top-left-radius: 6px;
                                         border-top-right-radius: 6px;
                                         color: rgb(204, 204, 204);
                                         font-size: 70px;
                                         height: 200%;
                                         left: 0px;
                                         position: absolute;
                                         text-align: center;
                                         text-shadow: rgb(0, 0, 0) 0px 1px 2px;
                                         width: 100%;
                                         z-index: 1;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper ul li a div.down {
                                         border-bottom-left-radius: 0.075em;
                                         border-bottom-right-radius: 0.075em;
                                         bottom: 0px;
                                         transform-origin: 50% 0px 0px;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper ul li a div.down {
                                         border-bottom-left-radius: 6px;
                                         border-bottom-right-radius: 6px;
                                         bottom: 0px;
                                         transform-origin: 50% 0px 0px;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper ul li a div.down div.inn {
                                         bottom: 0px;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper ul li a div.down div.inn {
                                         bottom: 0px;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper ul li a div.up {
                                         top: 0px;
                                         transform-origin: 50% 100% 0px;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper ul li a div.up {
                                         top: 0px;
                                         transform-origin: 50% 100% 0px;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper ul li a div.up div.inn {
                                         top: 0px;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper ul li a div.up div.inn {
                                         top: 0px;
                                        }
                                        
                                        /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper ul li a div.up::after {
                                         background-color: rgba(0, 0, 0, 0.4);
                                         content: "";
                                         height: 0.0375em;
                                         left: 0px;
                                         position: absolute;
                                         top: 0.55em;
                                         width: 100%;
                                         z-index: 5;
                                        }
                                        
                                        /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper ul li a div.up::after {
                                         background-color: rgba(0, 0, 0, 0.4);
                                         content: "";
                                         height: 3px;
                                         left: 0px;
                                         position: absolute;
                                         top: 44px;
                                         width: 100%;
                                         z-index: 5;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper ul li:first-child {
                                         z-index: 2;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper ul li:first-child {
                                         z-index: 2;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper ul li.flip-clock-active {
                                         z-index: 3;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper ul li.flip-clock-active {
                                         z-index: 3;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper ul.play li.flip-clock-active {
                                         animation-delay: 0.49s;
                                         animation-direction: normal;
                                         animation-duration: 0.01s;
                                         animation-fill-mode: both;
                                         animation-iteration-count: 1;
                                         animation-name: asd;
                                         animation-play-state: running;
                                         animation-timing-function: linear;
                                         z-index: 5;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper ul.play li.flip-clock-active {
                                         animation-delay: 0.5s;
                                         animation-direction: normal;
                                         animation-duration: 0.5s;
                                         animation-fill-mode: both;
                                         animation-iteration-count: 1;
                                         animation-name: asd;
                                         animation-play-state: running;
                                         animation-timing-function: linear;
                                         z-index: 5;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper ul.play li.flip-clock-active .down {
                                         animation-delay: 0.5s;
                                         animation-direction: normal;
                                         animation-duration: 0.5s;
                                         animation-fill-mode: both;
                                         animation-iteration-count: 1;
                                         animation-name: turn;
                                         animation-play-state: running;
                                         animation-timing-function: linear;
                                         z-index: 2;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper ul.play li.flip-clock-active .down {
                                         animation-delay: 0.5s;
                                         animation-direction: normal;
                                         animation-duration: 0.5s;
                                         animation-fill-mode: both;
                                         animation-iteration-count: 1;
                                         animation-name: turn;
                                         animation-play-state: running;
                                         animation-timing-function: linear;
                                         z-index: 2;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper ul.play li.flip-clock-active .down .shadow {
                                         animation-delay: 0.2s;
                                         animation-direction: normal;
                                         animation-duration: 0.5s;
                                         animation-fill-mode: both;
                                         animation-iteration-count: 1;
                                         animation-name: hide;
                                         animation-play-state: running;
                                         animation-timing-function: linear;
                                         background-attachment: scroll;
                                         background-clip: border-box;
                                         background-color: rgba(0, 0, 0, 0);
                                         background-image: linear-gradient(black 0%, rgba(0, 0, 0, 0.1) 100%);
                                         background-origin: padding-box;
                                         background-position-x: 0%;
                                         background-position-y: 0%;
                                         background-repeat: repeat;
                                         background-size: auto;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper ul.play li.flip-clock-active .down .shadow {
                                         animation-delay: 0.2s;
                                         animation-direction: normal;
                                         animation-duration: 0.5s;
                                         animation-fill-mode: both;
                                         animation-iteration-count: 1;
                                         animation-name: hide;
                                         animation-play-state: running;
                                         animation-timing-function: linear;
                                         background-attachment: scroll;
                                         background-clip: border-box;
                                         background-color: rgba(0, 0, 0, 0);
                                         background-image: linear-gradient(black 0%, rgba(0, 0, 0, 0.1) 100%);
                                         background-origin: padding-box;
                                         background-position-x: 0%;
                                         background-position-y: 0%;
                                         background-repeat: repeat;
                                         background-size: auto;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper ul.play li.flip-clock-active .up .shadow {
                                         animation-delay: 0.3s;
                                         animation-direction: normal;
                                         animation-duration: 0.5s;
                                         animation-fill-mode: both;
                                         animation-iteration-count: 1;
                                         animation-name: hide;
                                         animation-play-state: running;
                                         animation-timing-function: linear;
                                         background-attachment: scroll;
                                         background-clip: border-box;
                                         background-color: rgba(0, 0, 0, 0);
                                         background-image: linear-gradient(rgba(0, 0, 0, 0.1) 0%, black 100%);
                                         background-origin: padding-box;
                                         background-position-x: 0%;
                                         background-position-y: 0%;
                                         background-repeat: repeat;
                                         background-size: auto;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper ul.play li.flip-clock-active .up .shadow {
                                         animation-delay: 0.3s;
                                         animation-direction: normal;
                                         animation-duration: 0.5s;
                                         animation-fill-mode: both;
                                         animation-iteration-count: 1;
                                         animation-name: hide;
                                         animation-play-state: running;
                                         animation-timing-function: linear;
                                         background-attachment: scroll;
                                         background-clip: border-box;
                                         background-color: rgba(0, 0, 0, 0);
                                         background-image: linear-gradient(rgba(0, 0, 0, 0.1) 0%, black 100%);
                                         background-origin: padding-box;
                                         background-position-x: 0%;
                                         background-position-y: 0%;
                                         background-repeat: repeat;
                                         background-size: auto;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper ul.play li.flip-clock-before {
                                         z-index: 3;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper ul.play li.flip-clock-before {
                                         z-index: 3;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper ul.play li.flip-clock-before .down .shadow {
                                         animation-delay: 0s;
                                         animation-direction: normal;
                                         animation-duration: 0.5s;
                                         animation-fill-mode: both;
                                         animation-iteration-count: 1;
                                         animation-name: show;
                                         animation-play-state: running;
                                         animation-timing-function: linear;
                                         background-attachment: scroll;
                                         background-clip: border-box;
                                         background-color: rgba(0, 0, 0, 0);
                                         background-image: linear-gradient(black 0%, rgba(0, 0, 0, 0.1) 100%);
                                         background-origin: padding-box;
                                         background-position-x: 0%;
                                         background-position-y: 0%;
                                         background-repeat: repeat;
                                         background-size: auto;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper ul.play li.flip-clock-before .down .shadow {
                                         animation-delay: 0s;
                                         animation-direction: normal;
                                         animation-duration: 0.5s;
                                         animation-fill-mode: both;
                                         animation-iteration-count: 1;
                                         animation-name: show;
                                         animation-play-state: running;
                                         animation-timing-function: linear;
                                         background-attachment: scroll;
                                         background-clip: border-box;
                                         background-color: rgba(0, 0, 0, 0);
                                         background-image: linear-gradient(black 0%, rgba(0, 0, 0, 0.1) 100%);
                                         background-origin: padding-box;
                                         background-position-x: 0%;
                                         background-position-y: 0%;
                                         background-repeat: repeat;
                                         background-size: auto;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper ul.play li.flip-clock-before .up {
                                         animation-delay: 0s;
                                         animation-direction: normal;
                                         animation-duration: 0.5s;
                                         animation-fill-mode: both;
                                         animation-iteration-count: 1;
                                         animation-name: turn2;
                                         animation-play-state: running;
                                         animation-timing-function: linear;
                                         z-index: 2;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper ul.play li.flip-clock-before .up {
                                         animation-delay: 0s;
                                         animation-direction: normal;
                                         animation-duration: 0.5s;
                                         animation-fill-mode: both;
                                         animation-iteration-count: 1;
                                         animation-name: turn2;
                                         animation-play-state: running;
                                         animation-timing-function: linear;
                                         z-index: 2;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper ul.play li.flip-clock-before .up .shadow {
                                         animation-delay: 0s;
                                         animation-direction: normal;
                                         animation-duration: 0.5s;
                                         animation-fill-mode: both;
                                         animation-iteration-count: 1;
                                         animation-name: show;
                                         animation-play-state: running;
                                         animation-timing-function: linear;
                                         background-attachment: scroll;
                                         background-clip: border-box;
                                         background-color: rgba(0, 0, 0, 0);
                                         background-image: linear-gradient(rgba(0, 0, 0, 0.1) 0%, black 100%);
                                         background-origin: padding-box;
                                         background-position-x: 0%;
                                         background-position-y: 0%;
                                         background-repeat: repeat;
                                         background-size: auto;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper ul.play li.flip-clock-before .up .shadow {
                                         animation-delay: 0s;
                                         animation-direction: normal;
                                         animation-duration: 0.5s;
                                         animation-fill-mode: both;
                                         animation-iteration-count: 1;
                                         animation-name: show;
                                         animation-play-state: running;
                                         animation-timing-function: linear;
                                         background-attachment: scroll;
                                         background-clip: border-box;
                                         background-color: rgba(0, 0, 0, 0);
                                         background-image: linear-gradient(rgba(0, 0, 0, 0.1) 0%, black 100%);
                                         background-origin: padding-box;
                                         background-position-x: 0%;
                                         background-position-y: 0%;
                                         background-repeat: repeat;
                                         background-size: auto;
                                        }
                                        
                                        /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper::after {
                                         clear: both;
                                        }
                                        
                                        /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper::after {
                                         clear: both;
                                        }
                                        
                                        /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper::before, .flip-clock-wrapper::after {
                                         content: " ";
                                         display: table;
                                        }
                                        
                                        /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper::before, .flip-clock-wrapper::after {
                                         content: " ";
                                         display: table;
                                        }
                                        
                                        /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper.clearfix {
                                         
                                        }
                                        
                                        /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper.clearfix {
                                         
                                        }
                                        
                                        /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper.clearfix::after {
                                         clear: both;
                                        }
                                        
                                        /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper.clearfix::after {
                                         clear: both;
                                        }
                                        
                                        /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                        .flip-clock-wrapper.clearfix::before, .flip-clock-wrapper.clearfix::after {
                                         content: " ";
                                         display: table;
                                        }
                                        
                                        /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                        .flip-clock-wrapper.clearfix::before, .flip-clock-wrapper.clearfix::after {
                                         content: " ";
                                         display: table;
                                        }
                                        
                                        /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/metro/css/metro-bootstrap.css */
                                        .metro .shadow {
                                         box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 6px, rgba(0, 0, 0, 0.2) 0px 3px 8px;
                                        }
                                        
                                        /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/vis-material-advanced/css/material.css */
                                        .vis_container_edit .vis-view .vis-widget:hover::after {
                                         animation-delay: 1s;
                                         animation-direction: normal;
                                         animation-duration: 3s;
                                         animation-fill-mode: none;
                                         animation-iteration-count: 1;
                                         animation-name: vis-view-hover-ani;
                                         animation-play-state: running;
                                         animation-timing-function: ease;
                                         color: rgb(0, 0, 0);
                                        }
                                        
                                        /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/vis-material-advanced/css/material.css */
                                        .vis_container_edit .vis-view:active .vis-widget::after {
                                         animation-delay: 3s;
                                         animation-direction: normal;
                                         animation-duration: 5s;
                                         animation-fill-mode: none;
                                         animation-iteration-count: 1;
                                         animation-name: vis-view-hover-ani;
                                         animation-play-state: running;
                                         animation-timing-function: ease;
                                         color: rgb(0, 0, 0);
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/assets/index-CnFCSpIO.css */
                                        .vis-widget {
                                         overflow-x: hidden;
                                         overflow-y: hidden;
                                         position: absolute;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/vis-inventwo/css/style.css */
                                        .vis-widget {
                                         
                                        }
                                        
                                        /* AKTUELL WIRKSAM | <inline-style-36> */
                                        #w000601 .clock-flip {
                                         align-items: flex-start;
                                         display: flex;
                                         text-wrap-mode: nowrap;
                                         white-space-collapse: collapse;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | <inline-style-36> */
                                        #w000601 .clock-flip-separator {
                                         font-size: 0.6em;
                                         line-height: 2.08333em;
                                         margin-bottom: 0px;
                                         margin-left: 0.083333em;
                                         margin-right: 0.083333em;
                                         margin-top: 0px;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | <inline-style-36> */
                                        #w000601 .clock-flip-unit {
                                         display: inline-block;
                                        }
                                        
                                        /* AKTUELL WIRKSAM | <inline-style-36> */
                                        #w000601 .clock-flip-unit {
                                         flex-basis: 1.75em;
                                         flex-grow: 0;
                                         flex-shrink: 0;
                                         width: 1.75em;
                                        }
                                        
                                        /* KLASSENBEZOGEN | <inline-style-36> */
                                        #w000601 .clock-flip-unit .flip-clock-wrapper {
                                         display: flex;
                                         margin-bottom: 0px;
                                         margin-left: 0px;
                                         margin-right: 0px;
                                         margin-top: 0px;
                                         min-width: 1.75em;
                                         width: 1.75em;
                                        }
                                        
                                        OliverIOO 1 Antwort Letzte Antwort
                                        0
                                        • Eduard77E Eduard77

                                          @OliverIO

                                          #w000601
                                          
                                          KLASSEN (20):
                                          .clock-day
                                          .clock-flip
                                          .clock-flip-separator
                                          .clock-flip-unit
                                          .clock-hours
                                          .clock-minutes
                                          .clock-month
                                          .clock-seconds
                                          .clock-year
                                          .down
                                          .flip
                                          .flip-clock-active
                                          .flip-clock-before
                                          .flip-clock-wrapper
                                          .inn
                                          .play
                                          .shadow
                                          .up
                                          .vis-tpl-mytime-MyTime-clock-FlipClock
                                          .vis-widget
                                          
                                          CSS-REGELN (76):
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper {
                                           font-family: "Helvetica Neue", Helvetica, sans-serif;
                                           font-size: inherit;
                                           font-style: normal;
                                           font-weight: normal;
                                           user-select: none;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper {
                                           margin-bottom: 0.1375em;
                                           margin-left: 0.1375em;
                                           margin-right: 0.1375em;
                                           margin-top: 0.1375em;
                                           position: relative;
                                           text-align: center;
                                           width: 100%;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper {
                                           font-family: "Helvetica Neue", Helvetica, sans-serif;
                                           font-feature-settings: normal;
                                           font-kerning: auto;
                                           font-language-override: normal;
                                           font-optical-sizing: auto;
                                           font-size: 11px;
                                           font-size-adjust: none;
                                           font-stretch: normal;
                                           font-style: normal;
                                           font-variant-alternates: normal;
                                           font-variant-caps: normal;
                                           font-variant-east-asian: normal;
                                           font-variant-emoji: normal;
                                           font-variant-ligatures: normal;
                                           font-variant-numeric: normal;
                                           font-variant-position: normal;
                                           font-variation-settings: normal;
                                           font-weight: normal;
                                           line-height: normal;
                                           user-select: none;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper {
                                           margin-bottom: 1em;
                                           margin-left: 1em;
                                           margin-right: 1em;
                                           margin-top: 1em;
                                           position: relative;
                                           text-align: center;
                                           width: 100%;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper .flip {
                                           box-shadow: rgba(0, 0, 0, 0.7) 0px 0.025em 0.0625em;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper .flip {
                                           box-shadow: rgba(0, 0, 0, 0.7) 0px 2px 5px;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper * {
                                           backface-visibility: hidden;
                                           box-sizing: border-box;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper * {
                                           backface-visibility: hidden;
                                           box-sizing: border-box;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper a {
                                           color: rgb(204, 204, 204);
                                           cursor: pointer;
                                           text-decoration-color: currentcolor;
                                           text-decoration-line: none;
                                           text-decoration-style: solid;
                                           text-decoration-thickness: auto;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper a {
                                           color: rgb(204, 204, 204);
                                           cursor: pointer;
                                           text-decoration-color: currentcolor;
                                           text-decoration-line: none;
                                           text-decoration-style: solid;
                                           text-decoration-thickness: auto;
                                          }
                                          
                                          /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper a:hover {
                                           color: rgb(255, 255, 255);
                                          }
                                          
                                          /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper a:hover {
                                           color: rgb(255, 255, 255);
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper ul {
                                           background-attachment: scroll;
                                           background-clip: border-box;
                                           background-color: rgb(0, 0, 0);
                                           background-image: none;
                                           background-origin: padding-box;
                                           background-position-x: 0%;
                                           background-position-y: 0%;
                                           background-repeat: repeat;
                                           background-size: auto;
                                           border-bottom-left-radius: 0.075em;
                                           border-bottom-right-radius: 0.075em;
                                           border-top-left-radius: 0.075em;
                                           border-top-right-radius: 0.075em;
                                           float: left;
                                           font-size: inherit;
                                           font-weight: bold;
                                           height: 1.125em;
                                           line-height: 1.0875em;
                                           margin-bottom: 0.0625em;
                                           margin-left: 0.0625em;
                                           margin-right: 0.0625em;
                                           margin-top: 0.0625em;
                                           position: relative;
                                           width: 0.75em;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper ul {
                                           list-style-image: none;
                                           list-style-position: outside;
                                           list-style-type: none;
                                           padding-bottom: 0px;
                                           padding-left: 0px;
                                           padding-right: 0px;
                                           padding-top: 0px;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper ul {
                                           background-attachment: scroll;
                                           background-clip: border-box;
                                           background-color: rgb(0, 0, 0);
                                           background-image: none;
                                           background-origin: padding-box;
                                           background-position-x: 0%;
                                           background-position-y: 0%;
                                           background-repeat: repeat;
                                           background-size: auto;
                                           border-bottom-left-radius: 6px;
                                           border-bottom-right-radius: 6px;
                                           border-top-left-radius: 6px;
                                           border-top-right-radius: 6px;
                                           float: left;
                                           font-size: 80px;
                                           font-weight: bold;
                                           height: 90px;
                                           line-height: 87px;
                                           margin-bottom: 5px;
                                           margin-left: 5px;
                                           margin-right: 5px;
                                           margin-top: 5px;
                                           position: relative;
                                           width: 60px;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper ul {
                                           list-style-image: none;
                                           list-style-position: outside;
                                           list-style-type: none;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper ul li {
                                           height: 100%;
                                           left: 0px;
                                           line-height: 1.0875em;
                                           position: absolute;
                                           text-decoration-color: currentcolor !important;
                                           text-decoration-line: none !important;
                                           text-decoration-style: solid !important;
                                           text-decoration-thickness: auto !important;
                                           top: 0px;
                                           width: 100%;
                                           z-index: 1;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper ul li {
                                           height: 100%;
                                           left: 0px;
                                           line-height: 87px;
                                           position: absolute;
                                           text-decoration-color: currentcolor !important;
                                           text-decoration-line: none !important;
                                           text-decoration-style: solid !important;
                                           text-decoration-thickness: auto !important;
                                           top: 0px;
                                           width: 100%;
                                           z-index: 1;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper ul li a {
                                           cursor: default !important;
                                           display: block;
                                           height: 100%;
                                           margin-bottom: 0px !important;
                                           margin-left: 0px !important;
                                           margin-right: 0px !important;
                                           margin-top: 0px !important;
                                           overflow-x: visible !important;
                                           overflow-y: visible !important;
                                           perspective: 2.5em;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper ul li a {
                                           cursor: default !important;
                                           display: block;
                                           height: 100%;
                                           margin-bottom: 0px !important;
                                           margin-left: 0px !important;
                                           margin-right: 0px !important;
                                           margin-top: 0px !important;
                                           overflow-x: visible !important;
                                           overflow-y: visible !important;
                                           perspective: 200px;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper ul li a div {
                                           font-size: inherit;
                                           height: 50%;
                                           left: 0px;
                                           outline-color: transparent;
                                           outline-style: solid;
                                           outline-width: 1px;
                                           overflow-x: hidden;
                                           overflow-y: hidden;
                                           position: absolute;
                                           width: 100%;
                                           z-index: 1;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper ul li a div {
                                           font-size: 80px;
                                           height: 50%;
                                           left: 0px;
                                           outline-color: transparent;
                                           outline-style: solid;
                                           outline-width: 1px;
                                           overflow-x: hidden;
                                           overflow-y: hidden;
                                           position: absolute;
                                           width: 100%;
                                           z-index: 1;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper ul li a div .shadow {
                                           height: 100%;
                                           position: absolute;
                                           width: 100%;
                                           z-index: 2;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper ul li a div .shadow {
                                           height: 100%;
                                           position: absolute;
                                           width: 100%;
                                           z-index: 2;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper ul li a div div.inn {
                                           background-color: rgb(51, 51, 51);
                                           border-bottom-left-radius: 0.085714em;
                                           border-bottom-right-radius: 0.085714em;
                                           border-top-left-radius: 0.085714em;
                                           border-top-right-radius: 0.085714em;
                                           color: rgb(204, 204, 204);
                                           font-size: 0.875em;
                                           height: 200%;
                                           left: 0px;
                                           position: absolute;
                                           text-align: center;
                                           text-shadow: rgb(0, 0, 0) 0px 0.014286em 0.028571em;
                                           width: 100%;
                                           z-index: 1;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper ul li a div div.inn {
                                           background-color: rgb(51, 51, 51);
                                           border-bottom-left-radius: 6px;
                                           border-bottom-right-radius: 6px;
                                           border-top-left-radius: 6px;
                                           border-top-right-radius: 6px;
                                           color: rgb(204, 204, 204);
                                           font-size: 70px;
                                           height: 200%;
                                           left: 0px;
                                           position: absolute;
                                           text-align: center;
                                           text-shadow: rgb(0, 0, 0) 0px 1px 2px;
                                           width: 100%;
                                           z-index: 1;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper ul li a div.down {
                                           border-bottom-left-radius: 0.075em;
                                           border-bottom-right-radius: 0.075em;
                                           bottom: 0px;
                                           transform-origin: 50% 0px 0px;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper ul li a div.down {
                                           border-bottom-left-radius: 6px;
                                           border-bottom-right-radius: 6px;
                                           bottom: 0px;
                                           transform-origin: 50% 0px 0px;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper ul li a div.down div.inn {
                                           bottom: 0px;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper ul li a div.down div.inn {
                                           bottom: 0px;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper ul li a div.up {
                                           top: 0px;
                                           transform-origin: 50% 100% 0px;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper ul li a div.up {
                                           top: 0px;
                                           transform-origin: 50% 100% 0px;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper ul li a div.up div.inn {
                                           top: 0px;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper ul li a div.up div.inn {
                                           top: 0px;
                                          }
                                          
                                          /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper ul li a div.up::after {
                                           background-color: rgba(0, 0, 0, 0.4);
                                           content: "";
                                           height: 0.0375em;
                                           left: 0px;
                                           position: absolute;
                                           top: 0.55em;
                                           width: 100%;
                                           z-index: 5;
                                          }
                                          
                                          /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper ul li a div.up::after {
                                           background-color: rgba(0, 0, 0, 0.4);
                                           content: "";
                                           height: 3px;
                                           left: 0px;
                                           position: absolute;
                                           top: 44px;
                                           width: 100%;
                                           z-index: 5;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper ul li:first-child {
                                           z-index: 2;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper ul li:first-child {
                                           z-index: 2;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper ul li.flip-clock-active {
                                           z-index: 3;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper ul li.flip-clock-active {
                                           z-index: 3;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper ul.play li.flip-clock-active {
                                           animation-delay: 0.49s;
                                           animation-direction: normal;
                                           animation-duration: 0.01s;
                                           animation-fill-mode: both;
                                           animation-iteration-count: 1;
                                           animation-name: asd;
                                           animation-play-state: running;
                                           animation-timing-function: linear;
                                           z-index: 5;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper ul.play li.flip-clock-active {
                                           animation-delay: 0.5s;
                                           animation-direction: normal;
                                           animation-duration: 0.5s;
                                           animation-fill-mode: both;
                                           animation-iteration-count: 1;
                                           animation-name: asd;
                                           animation-play-state: running;
                                           animation-timing-function: linear;
                                           z-index: 5;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper ul.play li.flip-clock-active .down {
                                           animation-delay: 0.5s;
                                           animation-direction: normal;
                                           animation-duration: 0.5s;
                                           animation-fill-mode: both;
                                           animation-iteration-count: 1;
                                           animation-name: turn;
                                           animation-play-state: running;
                                           animation-timing-function: linear;
                                           z-index: 2;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper ul.play li.flip-clock-active .down {
                                           animation-delay: 0.5s;
                                           animation-direction: normal;
                                           animation-duration: 0.5s;
                                           animation-fill-mode: both;
                                           animation-iteration-count: 1;
                                           animation-name: turn;
                                           animation-play-state: running;
                                           animation-timing-function: linear;
                                           z-index: 2;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper ul.play li.flip-clock-active .down .shadow {
                                           animation-delay: 0.2s;
                                           animation-direction: normal;
                                           animation-duration: 0.5s;
                                           animation-fill-mode: both;
                                           animation-iteration-count: 1;
                                           animation-name: hide;
                                           animation-play-state: running;
                                           animation-timing-function: linear;
                                           background-attachment: scroll;
                                           background-clip: border-box;
                                           background-color: rgba(0, 0, 0, 0);
                                           background-image: linear-gradient(black 0%, rgba(0, 0, 0, 0.1) 100%);
                                           background-origin: padding-box;
                                           background-position-x: 0%;
                                           background-position-y: 0%;
                                           background-repeat: repeat;
                                           background-size: auto;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper ul.play li.flip-clock-active .down .shadow {
                                           animation-delay: 0.2s;
                                           animation-direction: normal;
                                           animation-duration: 0.5s;
                                           animation-fill-mode: both;
                                           animation-iteration-count: 1;
                                           animation-name: hide;
                                           animation-play-state: running;
                                           animation-timing-function: linear;
                                           background-attachment: scroll;
                                           background-clip: border-box;
                                           background-color: rgba(0, 0, 0, 0);
                                           background-image: linear-gradient(black 0%, rgba(0, 0, 0, 0.1) 100%);
                                           background-origin: padding-box;
                                           background-position-x: 0%;
                                           background-position-y: 0%;
                                           background-repeat: repeat;
                                           background-size: auto;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper ul.play li.flip-clock-active .up .shadow {
                                           animation-delay: 0.3s;
                                           animation-direction: normal;
                                           animation-duration: 0.5s;
                                           animation-fill-mode: both;
                                           animation-iteration-count: 1;
                                           animation-name: hide;
                                           animation-play-state: running;
                                           animation-timing-function: linear;
                                           background-attachment: scroll;
                                           background-clip: border-box;
                                           background-color: rgba(0, 0, 0, 0);
                                           background-image: linear-gradient(rgba(0, 0, 0, 0.1) 0%, black 100%);
                                           background-origin: padding-box;
                                           background-position-x: 0%;
                                           background-position-y: 0%;
                                           background-repeat: repeat;
                                           background-size: auto;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper ul.play li.flip-clock-active .up .shadow {
                                           animation-delay: 0.3s;
                                           animation-direction: normal;
                                           animation-duration: 0.5s;
                                           animation-fill-mode: both;
                                           animation-iteration-count: 1;
                                           animation-name: hide;
                                           animation-play-state: running;
                                           animation-timing-function: linear;
                                           background-attachment: scroll;
                                           background-clip: border-box;
                                           background-color: rgba(0, 0, 0, 0);
                                           background-image: linear-gradient(rgba(0, 0, 0, 0.1) 0%, black 100%);
                                           background-origin: padding-box;
                                           background-position-x: 0%;
                                           background-position-y: 0%;
                                           background-repeat: repeat;
                                           background-size: auto;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper ul.play li.flip-clock-before {
                                           z-index: 3;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper ul.play li.flip-clock-before {
                                           z-index: 3;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper ul.play li.flip-clock-before .down .shadow {
                                           animation-delay: 0s;
                                           animation-direction: normal;
                                           animation-duration: 0.5s;
                                           animation-fill-mode: both;
                                           animation-iteration-count: 1;
                                           animation-name: show;
                                           animation-play-state: running;
                                           animation-timing-function: linear;
                                           background-attachment: scroll;
                                           background-clip: border-box;
                                           background-color: rgba(0, 0, 0, 0);
                                           background-image: linear-gradient(black 0%, rgba(0, 0, 0, 0.1) 100%);
                                           background-origin: padding-box;
                                           background-position-x: 0%;
                                           background-position-y: 0%;
                                           background-repeat: repeat;
                                           background-size: auto;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper ul.play li.flip-clock-before .down .shadow {
                                           animation-delay: 0s;
                                           animation-direction: normal;
                                           animation-duration: 0.5s;
                                           animation-fill-mode: both;
                                           animation-iteration-count: 1;
                                           animation-name: show;
                                           animation-play-state: running;
                                           animation-timing-function: linear;
                                           background-attachment: scroll;
                                           background-clip: border-box;
                                           background-color: rgba(0, 0, 0, 0);
                                           background-image: linear-gradient(black 0%, rgba(0, 0, 0, 0.1) 100%);
                                           background-origin: padding-box;
                                           background-position-x: 0%;
                                           background-position-y: 0%;
                                           background-repeat: repeat;
                                           background-size: auto;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper ul.play li.flip-clock-before .up {
                                           animation-delay: 0s;
                                           animation-direction: normal;
                                           animation-duration: 0.5s;
                                           animation-fill-mode: both;
                                           animation-iteration-count: 1;
                                           animation-name: turn2;
                                           animation-play-state: running;
                                           animation-timing-function: linear;
                                           z-index: 2;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper ul.play li.flip-clock-before .up {
                                           animation-delay: 0s;
                                           animation-direction: normal;
                                           animation-duration: 0.5s;
                                           animation-fill-mode: both;
                                           animation-iteration-count: 1;
                                           animation-name: turn2;
                                           animation-play-state: running;
                                           animation-timing-function: linear;
                                           z-index: 2;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper ul.play li.flip-clock-before .up .shadow {
                                           animation-delay: 0s;
                                           animation-direction: normal;
                                           animation-duration: 0.5s;
                                           animation-fill-mode: both;
                                           animation-iteration-count: 1;
                                           animation-name: show;
                                           animation-play-state: running;
                                           animation-timing-function: linear;
                                           background-attachment: scroll;
                                           background-clip: border-box;
                                           background-color: rgba(0, 0, 0, 0);
                                           background-image: linear-gradient(rgba(0, 0, 0, 0.1) 0%, black 100%);
                                           background-origin: padding-box;
                                           background-position-x: 0%;
                                           background-position-y: 0%;
                                           background-repeat: repeat;
                                           background-size: auto;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper ul.play li.flip-clock-before .up .shadow {
                                           animation-delay: 0s;
                                           animation-direction: normal;
                                           animation-duration: 0.5s;
                                           animation-fill-mode: both;
                                           animation-iteration-count: 1;
                                           animation-name: show;
                                           animation-play-state: running;
                                           animation-timing-function: linear;
                                           background-attachment: scroll;
                                           background-clip: border-box;
                                           background-color: rgba(0, 0, 0, 0);
                                           background-image: linear-gradient(rgba(0, 0, 0, 0.1) 0%, black 100%);
                                           background-origin: padding-box;
                                           background-position-x: 0%;
                                           background-position-y: 0%;
                                           background-repeat: repeat;
                                           background-size: auto;
                                          }
                                          
                                          /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper::after {
                                           clear: both;
                                          }
                                          
                                          /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper::after {
                                           clear: both;
                                          }
                                          
                                          /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper::before, .flip-clock-wrapper::after {
                                           content: " ";
                                           display: table;
                                          }
                                          
                                          /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper::before, .flip-clock-wrapper::after {
                                           content: " ";
                                           display: table;
                                          }
                                          
                                          /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper.clearfix {
                                           
                                          }
                                          
                                          /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper.clearfix {
                                           
                                          }
                                          
                                          /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper.clearfix::after {
                                           clear: both;
                                          }
                                          
                                          /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper.clearfix::after {
                                           clear: both;
                                          }
                                          
                                          /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/mytime/css/flipclock.css */
                                          .flip-clock-wrapper.clearfix::before, .flip-clock-wrapper.clearfix::after {
                                           content: " ";
                                           display: table;
                                          }
                                          
                                          /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/timeandweather/css/flipclock.css */
                                          .flip-clock-wrapper.clearfix::before, .flip-clock-wrapper.clearfix::after {
                                           content: " ";
                                           display: table;
                                          }
                                          
                                          /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/metro/css/metro-bootstrap.css */
                                          .metro .shadow {
                                           box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 6px, rgba(0, 0, 0, 0.2) 0px 3px 8px;
                                          }
                                          
                                          /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/vis-material-advanced/css/material.css */
                                          .vis_container_edit .vis-view .vis-widget:hover::after {
                                           animation-delay: 1s;
                                           animation-direction: normal;
                                           animation-duration: 3s;
                                           animation-fill-mode: none;
                                           animation-iteration-count: 1;
                                           animation-name: vis-view-hover-ani;
                                           animation-play-state: running;
                                           animation-timing-function: ease;
                                           color: rgb(0, 0, 0);
                                          }
                                          
                                          /* KLASSENBEZOGEN | http://192.168.178.5:8082/vis-2/widgets/vis-material-advanced/css/material.css */
                                          .vis_container_edit .vis-view:active .vis-widget::after {
                                           animation-delay: 3s;
                                           animation-direction: normal;
                                           animation-duration: 5s;
                                           animation-fill-mode: none;
                                           animation-iteration-count: 1;
                                           animation-name: vis-view-hover-ani;
                                           animation-play-state: running;
                                           animation-timing-function: ease;
                                           color: rgb(0, 0, 0);
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/assets/index-CnFCSpIO.css */
                                          .vis-widget {
                                           overflow-x: hidden;
                                           overflow-y: hidden;
                                           position: absolute;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | http://192.168.178.5:8082/vis-2/widgets/vis-inventwo/css/style.css */
                                          .vis-widget {
                                           
                                          }
                                          
                                          /* AKTUELL WIRKSAM | <inline-style-36> */
                                          #w000601 .clock-flip {
                                           align-items: flex-start;
                                           display: flex;
                                           text-wrap-mode: nowrap;
                                           white-space-collapse: collapse;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | <inline-style-36> */
                                          #w000601 .clock-flip-separator {
                                           font-size: 0.6em;
                                           line-height: 2.08333em;
                                           margin-bottom: 0px;
                                           margin-left: 0.083333em;
                                           margin-right: 0.083333em;
                                           margin-top: 0px;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | <inline-style-36> */
                                          #w000601 .clock-flip-unit {
                                           display: inline-block;
                                          }
                                          
                                          /* AKTUELL WIRKSAM | <inline-style-36> */
                                          #w000601 .clock-flip-unit {
                                           flex-basis: 1.75em;
                                           flex-grow: 0;
                                           flex-shrink: 0;
                                           width: 1.75em;
                                          }
                                          
                                          /* KLASSENBEZOGEN | <inline-style-36> */
                                          #w000601 .clock-flip-unit .flip-clock-wrapper {
                                           display: flex;
                                           margin-bottom: 0px;
                                           margin-left: 0px;
                                           margin-right: 0px;
                                           margin-top: 0px;
                                           min-width: 1.75em;
                                           width: 1.75em;
                                          }
                                          
                                          OliverIOO Offline
                                          OliverIOO Offline
                                          OliverIO
                                          schrieb am zuletzt editiert von OliverIO
                                          #591

                                          @Eduard77

                                          ok problem gefunden.
                                          die css regeln von timeandweather und flipclock überschneiden und beeinflussen sich.
                                          timeandweather nutzt die gleiche flipclock bibliothek, ich habe aber, um die anpassung der größe besser zu gestalten die regeln angepasst. die beeinflussen sich nun gegenseitig.
                                          timeandweather grenzt den geltungsbereich leider nicht auf das jeweilig genutzte widget ein.

                                          als workaraound, falls timeandweather nicht benötigt wird, entfernen.

                                          oder auf die nächste version warten. ich muss die namen aller css regeln anpassen.

                                          Meine Adapter und Widgets
                                          TVProgram, SqueezeboxRPC, OpenLiga, RSSFeed, MyTime,, pi-hole2, vis-json-template, skiinfo, vis-mapwidgets, vis-2-widgets-rssfeed
                                          Links im Profil

                                          Eduard77E 1 Antwort Letzte Antwort
                                          1

                                          Hey! Du scheinst an dieser Unterhaltung interessiert zu sein, hast aber noch kein Konto.

                                          Hast du es satt, bei jedem Besuch durch die gleichen Beiträge zu scrollen? Wenn du dich für ein Konto anmeldest, kommst du immer genau dorthin zurück, wo du zuvor warst, und kannst dich über neue Antworten benachrichtigen lassen (entweder per E-Mail oder Push-Benachrichtigung). Du kannst auch Lesezeichen speichern und Beiträge positiv bewerten, um anderen Community-Mitgliedern deine Wertschätzung zu zeigen.

                                          Mit deinem Input könnte dieser Beitrag noch besser werden 💗

                                          Registrieren Anmelden
                                          Antworten
                                          • In einem neuen Thema antworten
                                          Anmelden zum Antworten
                                          • Älteste zuerst
                                          • Neuste zuerst
                                          • Meiste Stimmen


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate

                                          412

                                          Online

                                          33.0k

                                          Benutzer

                                          83.5k

                                          Themen

                                          1.3m

                                          Beiträge
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen | Einwilligungseinstellungen
                                          ioBroker Community 2014-2026
                                          logo
                                          • Anmelden

                                          • Du hast noch kein Konto? Registrieren

                                          • Anmelden oder registrieren, um zu suchen
                                          • Erster Beitrag
                                            Letzter Beitrag
                                          0
                                          • Home
                                          • Aktuell
                                          • Tags
                                          • Ungelesen 0
                                          • Kategorien
                                          • Unreplied
                                          • Beliebt
                                          • GitHub
                                          • Docu
                                          • Hilfe