craigk5n / webcalendar

WebCalendar is a PHP application used to maintain a calendar for a single user or an intranet group of users. It can also be configured as an event calendar.
http://www.k5n.us/webcalendar.php
GNU General Public License v2.0
148 stars 70 forks source link

Event popups are "blacked out" #441

Closed Tharrington86 closed 7 months ago

Tharrington86 commented 7 months ago

When pop ups are enabled they appear as a blacked out box. image

I thought that this may be related to deploying to calendar in an iframe, but I navigated to the calendar using the URL and the issue remained.

Version 1.9.10

craigk5n commented 7 months ago

It looks like the colors for your event popups are all set to black. This can be set in System Settings (under "Colors") and overridden on a per-user basis in each users Preferences settings. If you "View Source" on the page, check to see if the event text is actually present. You should see a series of event info listings inside a

tag near the bottom of the source that look something like the following:

<dl id="eventinfo-pop835324-20" class="popup">
  <dt>Event description here...</dt>
  <dt>Time:</dt>
  <dd>1:00pm - 11:59pm</dd>
  <dt>Description:</dt>
  <dd>Event description here....</dd>
</dl>

If that's there, then popup text is present (which I suspect it is due to the size of the black box).

Tharrington86 commented 7 months ago

Doh! Someone was playing where they shouldn't've have been! Thank you.