Scoring CSS issue?

Post any new website features or ideas for the message board
Post Reply
User avatar
Wascawy Wabbits
Pro Bowler
Posts: 788
Joined: Tue Jan 24, 2012 8:49 pm
Favorite NFL Team: Kansas City Chiefs
Team Name: Wascawy Wabits
Location: BC, Canada

Scoring CSS issue?

Post by Wascawy Wabbits » Sun Sep 09, 2012 2:46 pm

Not sure if anyone else is seeing the scoring screen like I do...

The blue seems to randomly miss some of the cells
Attachments
Screen Shot 2012-09-09 at 3.23.56 PM.png
Screen Shot 2012-09-09 at 3.23.56 PM.png (185.07 KiB) Viewed 6387 times
Image

User avatar
braven112
Site Admin
Posts: 1265
Joined: Sat Dec 29, 2007 5:05 pm
Favorite NFL Team: Seattle Seahawks
Team Name: Pacific Pigskins
Location: Seattle, Washington
Contact:

Re: Scoring CSS issue?

Post by braven112 » Sun Sep 09, 2012 8:27 pm

I updated it so its all white now.
Image

User avatar
bonscott
Hall of Famer
Posts: 1037
Joined: Sun Dec 30, 2007 10:09 am
Favorite NFL Team: Chicago Bears
Team Name: Amish Rakefighters
Location: West Michigan
Contact:

Re: Scoring CSS issue?

Post by bonscott » Mon Sep 10, 2012 5:18 am

I use the GameDay scoring app so I never notice the live scoring page *but* here are the CSS I've found for live scoring that I've used for a while. Basically you can highlight a cell when the player had a stat update and such (which is what I thought the blue was).

The below does include the code I use, I didn't feel like cleaning it out. :blunt:

If I recall correctly if a players game is currently underway the cell will be highlighted in a different color. If the player is in the red zone the cell will have a dashed red line around it and if the player has updated stats there will be a green dashed line around the cell. Really makes it easy to see at a glance what's going on.

Code: Select all

--------------------------------------------------------------------
 Live Scoring 
--------------------------------------------------------------------

.gameover {
   color: Navy;
   font-weight: bold;
}

#live_scoring_summary TD.updatedstats, #live_scoring TD.updatedstats {
   background-image: url(http://www3.myfantasyleague.com/mflicons/new_stats_3.gif);
   background-position: center left;
   background-repeat: no-repeat;
   padding-right: 12px;
   border: dashed green;
	border-width: 2px 2px 2px 2px;
}

#live_scoring_summary TD.redzone, #live_scoring TD.redzone {
   border: dashed red;
   border-width: 2px 2px 2px 2px;
   background-image: url(http://www3.myfantasyleague.com/mflicons/red_zone.gif);
   background-position: center left;
   background-repeat: no-repeat;
   padding-right: 12px;
}

#live_scoring_summary TD.gameunderway, #live_scoring_summary TD.updatedstats, #live_scoring_summary TD.haspossession, #live_scoring_summary TD.redzone, #live_scoring TD.gameunderway, #live_scoring TD.updatedstats, #live_scoring TD.haspossession, #live_scoring TD.redzone {
   background-color: #FEFF53;
   padding-left: 15px;
}

.gameunderway {
   background-image: url(http://www3.myfantasyleague.com/mflicons/game_under_way.gif);
   background-position: center left;
   background-repeat: no-repeat;
   padding-right: 12px;
}

.haspossession {
   background-image: url(http://www3.myfantasyleague.com/mflicons/has_ball.gif);
   background-position: center left;
   background-repeat: no-repeat;
   padding-right: 12px;
}
Scott

Image

User avatar
Wascawy Wabbits
Pro Bowler
Posts: 788
Joined: Tue Jan 24, 2012 8:49 pm
Favorite NFL Team: Kansas City Chiefs
Team Name: Wascawy Wabits
Location: BC, Canada

Re: Scoring CSS issue?

Post by Wascawy Wabbits » Mon Sep 10, 2012 1:14 pm

bonscott wrote:I use the GameDay scoring app so I never notice the live scoring page *but* here are the CSS I've found for live scoring that I've used for a while. Basically you can highlight a cell when the player had a stat update and such (which is what I thought the blue was).
Is there anything similar for OSX? My 4 year old MacbookPro runs like a pig when I;m running a Windows VM....
Image

User avatar
braven112
Site Admin
Posts: 1265
Joined: Sat Dec 29, 2007 5:05 pm
Favorite NFL Team: Seattle Seahawks
Team Name: Pacific Pigskins
Location: Seattle, Washington
Contact:

Re: Scoring CSS issue?

Post by braven112 » Mon Sep 10, 2012 9:56 pm

bonscott wrote:I use the GameDay scoring app so I never notice the live scoring page *but* here are the CSS I've found for live scoring that I've used for a while. Basically you can highlight a cell when the player had a stat update and such (which is what I thought the blue was).

The below does include the code I use, I didn't feel like cleaning it out. :blunt:

If I recall correctly if a players game is currently underway the cell will be highlighted in a different color. If the player is in the red zone the cell will have a dashed red line around it and if the player has updated stats there will be a green dashed line around the cell. Really makes it easy to see at a glance what's going on.

Code: Select all

--------------------------------------------------------------------
 Live Scoring 
--------------------------------------------------------------------

.gameover {
   color: Navy;
   font-weight: bold;
}

#live_scoring_summary TD.updatedstats, #live_scoring TD.updatedstats {
   background-image: url(http://www3.myfantasyleague.com/mflicons/new_stats_3.gif);
   background-position: center left;
   background-repeat: no-repeat;
   padding-right: 12px;
   border: dashed green;
	border-width: 2px 2px 2px 2px;
}

#live_scoring_summary TD.redzone, #live_scoring TD.redzone {
   border: dashed red;
   border-width: 2px 2px 2px 2px;
   background-image: url(http://www3.myfantasyleague.com/mflicons/red_zone.gif);
   background-position: center left;
   background-repeat: no-repeat;
   padding-right: 12px;
}

#live_scoring_summary TD.gameunderway, #live_scoring_summary TD.updatedstats, #live_scoring_summary TD.haspossession, #live_scoring_summary TD.redzone, #live_scoring TD.gameunderway, #live_scoring TD.updatedstats, #live_scoring TD.haspossession, #live_scoring TD.redzone {
   background-color: #FEFF53;
   padding-left: 15px;
}

.gameunderway {
   background-image: url(http://www3.myfantasyleague.com/mflicons/game_under_way.gif);
   background-position: center left;
   background-repeat: no-repeat;
   padding-right: 12px;
}

.haspossession {
   background-image: url(http://www3.myfantasyleague.com/mflicons/has_ball.gif);
   background-position: center left;
   background-repeat: no-repeat;
   padding-right: 12px;
}
Thanks, I just added this for next week.
Image

User avatar
bonscott
Hall of Famer
Posts: 1037
Joined: Sun Dec 30, 2007 10:09 am
Favorite NFL Team: Chicago Bears
Team Name: Amish Rakefighters
Location: West Michigan
Contact:

Re: Scoring CSS issue?

Post by bonscott » Tue Sep 11, 2012 5:11 am

Wascawy Wabbits wrote:
bonscott wrote:I use the GameDay scoring app so I never notice the live scoring page *but* here are the CSS I've found for live scoring that I've used for a while. Basically you can highlight a cell when the player had a stat update and such (which is what I thought the blue was).
Is there anything similar for OSX? My 4 year old MacbookPro runs like a pig when I;m running a Windows VM....
No, they don't have a Mac version unfortunately. Could try using your smartphone for scoring. I know there are iPhone apps for scoring but not sure if they auto-refresh. The apps for Android do not, you have to manually refresh. I just go to the web page actually.
Scott

Image

Post Reply

Who is online

Users browsing this forum: No registered users and 1 guest