MFL Live All My Leagues

Be sure your league is setup properly before installing any scripts.Setup Video
The following script creates a new report that will display all the H2H matchup live scores for all your MFL Leagues. The script will NOT display at all if you only play in 1 MFL League , however any of your league mates who do , will benefit if this is installed so they get a snap shot of all their leagues without having to go to each site. There is a setting wheel next to the caption text you can show and hide any leagues you dont want to see , in the same popup to show/hide leagues , by each league is a drop down arrow you can select to display "Icons , Logos , Names or Abbreviations" for each league.
Copy the code below , there is CSS to use for light or dark colored themes , remove the one you don't want to use when you install. You can further customize the provided CSS to better match your sites color theme. Users of our custom template do not need to install the CSS at all , it is already provided in our template files.
All scripts require cache.js and font awesome file to be placed in a header message as the 1st line. Please review the section "Custom Scripts" Here
This script is already included in our custom template. Do not install it again. Custom template users do not need to load cache.js or font awesome.

MFL All My LeaguesPlace in any homepagemessage and add to your home page using the MFL tabs setup page

<!-- MFL LIVE - ALL MY LEAGUES HTML  -->
<div class="all_leages_wrapper" style="display:none"></div>

<!-- MFL LIVE - ALL MY LEAGUES SCRIPT  -->
<script src="https://www.mflscripts.com/mfl-apps/mflLive/script.js"></script>


<style>
/* DARK CSS COLORING  */
.as_scores{color:var(--accent,#ff4200)}
.as_pace_box{color:lime}
.as_spacer_bottom{border-bottom:4px solid #111!important}
.all_scores_matchup input{background:#222!important;color:#999;border:1px solid #444!important}
.all_scores_matchup input:hover{background:#999!important;color:#111;border:1px solid #444!important}
.all_scores_matchup td[class*="as_winner"]{color:lime}
td.mflLive_details_pace_ahead{color:lime}
#popup-ignoreLeagues-table td.label-input input:checked+label:before,
#popup-ignoreLeagues-table span.label-input input:checked+label:before{color:lime}
#popup-ignoreLeagues-table td.label-input input+label:before,
#popup-ignoreLeagues-table span.label-input input+label:before{color:red}
td.mflLive_details_pace_behind {color:red}
#popup-ignoreLeagues-caption{color:var(--accent,#ff4200)}
#popup-ignoreLeagues-container{background:var(--site-bg-image,#111)!important}

/* LIGHT CSS COLORING */
.as_scores{color:var(--accent,#ff4200)}
.as_pace_box{color:green}
.as_spacer_bottom{border-bottom:4px solid #aaa!important}
.all_scores_matchup input{background:#fff!important;color:#777;border:1px solid #aaa!important}
.all_scores_matchup input:hover{background:#eee!important;color:#444;border:1px solid #888!important}
.all_scores_matchup td[class*="as_winner"]{color:green}
td.mflLive_details_pace_ahead{color:green}
#popup-ignoreLeagues-table td.label-input input:checked+label:before,
#popup-ignoreLeagues-table span.label-input input:checked+label:before{color:green}
#popup-ignoreLeagues-table td.label-input input+label:before,
#popup-ignoreLeagues-table span.label-input input+label:before{color:red}
td.mflLive_details_pace_behind {color:red}
#popup-ignoreLeagues-caption{color:var(--accent,#b82601)}
#popup-ignoreLeagues-container{background:var(--mobile-wrap-bg,#fff)!important}
</style>