resized, colored outline

This commit is contained in:
2026-01-10 10:25:03 +01:00
parent 36a534117b
commit 18e9743793
+8 -2
View File
@@ -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;