Author Topic: Calendar  (Read 9348 times)

Offline Member#36

  • Striving For A Perfect NIWA Unit
  • Retired Staff
  • *
  • Posts: 681
  • Gender: Male
  • Kirby, My Favorite Flavor
    • View Profile
Calendar
« on: June 22, 2010, 03:39:57 PM »
My guess is that it may be someone trying ti add an event to the calendar, but I wouldn't know.
[spoiler]

[/spoiler]
« Last Edit: July 01, 2010, 10:38:48 AM by RAP »

Offline Tucayo

  • Super Mario Wiki Staff
  • ***
  • Posts: 1265
  • Gender: Male
    • View Profile
    • MarioWiki's Shroom
Re: Calender
« Reply #1 on: June 22, 2010, 03:41:18 PM »
Today is 22nd, so my guess its that tehre may be something with the skin

Offline tacopill

  • Lylat Wiki Staff
  • ***
  • Posts: 3128
    • View Profile
    • csanimefan
Re: Calendar
« Reply #2 on: June 22, 2010, 11:17:13 PM »
it might have to do on the css-level, since it is the only cell i see with the following html.

Code: [Select]
class="calendar_today"

Edit:

OK,
here is the html for a regular day:
Code: [Select]
<td valign="top" style="height: 100px; padding: 2px;" class="windowbg">17</td>

here is today:
Code: [Select]
<td valign="top" style="height: 100px; padding: 2px;" class="calendar_today">22</td>


The problem is class="calendar_today". class="windowbg" overrides the default background color of the table's cells, as seen in the CSS bellow, meanwhile class="calendar_today" doesn't; In fact, i can't find that class in any css file, auto-generated or otherwise.

Code: [Select]
body, td, th
{
    color: #000000;
    font-size: small;
    font-family: verdana, sans-serif;
}

.windowbg
{
    color: #000000;
    background-color: #f4f4f4;
}



At least, as far as i can tell.
« Last Edit: June 22, 2010, 11:35:55 PM by tacopill »







Offline Tucayo

  • Super Mario Wiki Staff
  • ***
  • Posts: 1265
  • Gender: Male
    • View Profile
    • MarioWiki's Shroom
Re: Calendar
« Reply #3 on: June 23, 2010, 01:04:26 AM »
Thanks for noticing that, I will tell Tappy.




Actually, if the calendar doesn't work, perhaps we should just disable it....

Offline tacopill

  • Lylat Wiki Staff
  • ***
  • Posts: 3128
    • View Profile
    • csanimefan
Re: Calendar
« Reply #4 on: June 23, 2010, 01:07:31 AM »
you're welcome.  ;D







Offline Member#36

  • Striving For A Perfect NIWA Unit
  • Retired Staff
  • *
  • Posts: 681
  • Gender: Male
  • Kirby, My Favorite Flavor
    • View Profile
Re: Calendar
« Reply #5 on: June 23, 2010, 03:47:38 AM »
And I would of gotten away with it too if it wasn't for that meddling Tacopill and his stupid code knowledge....

Offline tacopill

  • Lylat Wiki Staff
  • ***
  • Posts: 3128
    • View Profile
    • csanimefan
Re: Calendar
« Reply #6 on: June 23, 2010, 01:12:44 PM »
Quote from: ????  link=topic=289.msg5149#msg5149 date=1277264858
And I would of gotten away with it too if it wasn't for that meddling Tacopill and his stupid code knowledge....

I knew it, it was ???? disguised as Tappy.







Offline Member#36

  • Striving For A Perfect NIWA Unit
  • Retired Staff
  • *
  • Posts: 681
  • Gender: Male
  • Kirby, My Favorite Flavor
    • View Profile
Re: Calendar
« Reply #7 on: July 25, 2010, 08:19:55 AM »
It's still there, ha.  BUT, seeing as how there are bigger issues to deal with, and the fact that no one clicks the calendar... it hardly matters right now.

Bumped for future references and so it gets done eventually.

Offline Tappy

  • Forum Administrator
  • *****
  • Posts: 270
  • Gender: Male
    • View Profile
    • Hyrule.net
Re: Calendar
« Reply #8 on: July 25, 2010, 02:44:40 PM »
ohai, what's going on?
Webmaster of Hyrule.net (a mastermind of ZeldaWiki.org)

Offline Member#36

  • Striving For A Perfect NIWA Unit
  • Retired Staff
  • *
  • Posts: 681
  • Gender: Male
  • Kirby, My Favorite Flavor
    • View Profile
Re: Calendar
« Reply #9 on: July 25, 2010, 05:56:13 PM »
ohai, what's going on?

It's not the most imporant issue, but take a look at the calendar.

Offline Tappy

  • Forum Administrator
  • *****
  • Posts: 270
  • Gender: Male
    • View Profile
    • Hyrule.net
Re: Calendar
« Reply #10 on: July 25, 2010, 08:22:24 PM »
Fixed ^^

Code: [Select]
/* Calendar Black Box of Death Fix */
.calendar_today {
background: #cecece;
}
Webmaster of Hyrule.net (a mastermind of ZeldaWiki.org)

Offline Member#36

  • Striving For A Perfect NIWA Unit
  • Retired Staff
  • *
  • Posts: 681
  • Gender: Male
  • Kirby, My Favorite Flavor
    • View Profile
Re: Calendar
« Reply #11 on: July 25, 2010, 09:22:25 PM »
Fixed ^^

Code: [Select]
/* Calendar Black Box of Death Fix */
.calendar_today {
background: #cecece;
}

Awesome, it can be locked now. :)

Offline Tucayo

  • Super Mario Wiki Staff
  • ***
  • Posts: 1265
  • Gender: Male
    • View Profile
    • MarioWiki's Shroom
Re: Calendar
« Reply #12 on: July 26, 2010, 12:06:04 AM »
Thanks :) Now anotehr issue is that events can't be added