resized, colored outline

This commit is contained in:
2026-01-10 10:25:03 +01:00
parent 36a534117b
commit 18e9743793
+7 -1
View File
@@ -154,6 +154,7 @@ data:
widget: widget:
type: iframe type: iframe
src: https://outline.dooplex.hu/collection/notes-VVby8kTDMn/recent src: https://outline.dooplex.hu/collection/notes-VVby8kTDMn/recent
classes: outline-iframe
- Productivity: - Productivity:
- ActialBudget: - ActialBudget:
@@ -291,8 +292,13 @@ data:
height: 600px !important; height: 600px !important;
} }
.outline-iframe {
height: 1000px !important;
}
/* Purple filter on iframes */ /* Purple filter on iframes */
iframe[src*="calendar.google.com"], iframe[src*="calendar.google.com"],
iframe[src*="outline.dooplex.hu"],
iframe[src*="booking.dooplex.hu"] { iframe[src*="booking.dooplex.hu"] {
filter: sepia(0.25) saturate(3) hue-rotate(250deg) brightness(1.02) !important; filter: sepia(0.25) saturate(3) hue-rotate(250deg) brightness(1.02) !important;
border-radius: 8px !important; border-radius: 8px !important;
@@ -302,7 +308,7 @@ data:
custom.js: | custom.js: |
// Wait for page to fully load, then add purple overlay to calendar iframes // Wait for page to fully load, then add purple overlay to calendar iframes
function addCalendarOverlays() { 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 // Skip if overlay already exists
if (iframe.parentElement.querySelector('.calendar-overlay')) return; if (iframe.parentElement.querySelector('.calendar-overlay')) return;