diff --git a/homepage-system/homepage-orsi.yaml b/homepage-system/homepage-orsi.yaml index fcf354f..dee5b46 100644 --- a/homepage-system/homepage-orsi.yaml +++ b/homepage-system/homepage-orsi.yaml @@ -153,7 +153,8 @@ data: icon: outline.png widget: type: iframe - src: https://outline.dooplex.hu/collection/notes-VVby8kTDMn/recent + src: https://outline.dooplex.hu/collection/notes-VVby8kTDMn/recent + classes: outline-iframe - Productivity: - ActialBudget: @@ -291,8 +292,13 @@ data: height: 600px !important; } + .outline-iframe { + height: 1000px !important; + } + /* Purple filter on iframes */ iframe[src*="calendar.google.com"], + iframe[src*="outline.dooplex.hu"], iframe[src*="booking.dooplex.hu"] { filter: sepia(0.25) saturate(3) hue-rotate(250deg) brightness(1.02) !important; border-radius: 8px !important; @@ -302,7 +308,7 @@ data: custom.js: | // Wait for page to fully load, then add purple overlay to calendar iframes function addCalendarOverlays() { - document.querySelectorAll('iframe[src*="calendar.google.com"], iframe[src*="booking.dooplex.hu"]').forEach(function(iframe) { + document.querySelectorAll('iframe[src*="calendar.google.com"], iframe[src*="booking.dooplex.hu"], iframe[src*="outline.dooplex.hu"]').forEach(function(iframe) { // Skip if overlay already exists if (iframe.parentElement.querySelector('.calendar-overlay')) return;