Version 15.45.9

This commit is contained in:
Antonio Cañas Vargas 2015-11-25 13:58:45 +01:00
parent ffafa54cf1
commit 4b92b48105
3 changed files with 12 additions and 10 deletions

View File

@ -176,6 +176,14 @@ hr.YELLOW_SEPARA {height:0; border-top:0; border-bottom:#BD4815 dotted 1px;}
vertical-align:top; vertical-align:top;
padding-top:8px; padding-top:8px;
} }
#msg /* Notifications, used for AJAX based refresh */
{
display:table-cell;
width:160px;
text-align:center;
vertical-align:top;
padding-top:10px;
}
/************* Institution / Centre / Degree logo in top title ***************/ /************* Institution / Centre / Degree logo in top title ***************/
.TOP_LOGO .TOP_LOGO

View File

@ -111,11 +111,12 @@
/****************************** Public constants *****************************/ /****************************** Public constants *****************************/
/*****************************************************************************/ /*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 15.45.8 (2015/11/25)" #define Log_PLATFORM_VERSION "SWAD 15.45.9 (2015/11/25)"
// Number of lines (includes comments but not blank lines) has been got with the following command: // Number of lines (includes comments but not blank lines) has been got with the following command:
// nl swad*.c swad*.h css/swad*.css py/swad*.py js/swad*.js soap/swad*.h sql/swad*.sql | tail -1 // nl swad*.c swad*.h css/swad*.css py/swad*.py js/swad*.js soap/swad*.h sql/swad*.sql | tail -1
/* /*
Version 15.45.9: Nov 25, 2015 Some CSS styles related to layout are moved to CSS file. (188020 lines)
Version 15.45.8: Nov 25, 2015 Some CSS styles related to layout are moved to CSS file. (188018 lines) Version 15.45.8: Nov 25, 2015 Some CSS styles related to layout are moved to CSS file. (188018 lines)
Version 15.45.7: Nov 25, 2015 Some CSS styles related to layout are moved to CSS file. (188015 lines) Version 15.45.7: Nov 25, 2015 Some CSS styles related to layout are moved to CSS file. (188015 lines)
Version 15.45.6: Nov 25, 2015 Some CSS styles related to layout are moved to CSS file. (188007 lines) Version 15.45.6: Nov 25, 2015 Some CSS styles related to layout are moved to CSS file. (188007 lines)

View File

@ -800,17 +800,10 @@ static void Lay_WritePageTopHeadingDesktop (void)
fprintf (Gbl.F.Out,"</div>"); fprintf (Gbl.F.Out,"</div>");
/* 2nd. row, 3rd. column */ /* 2nd. row, 3rd. column */
fprintf (Gbl.F.Out,"<div class=\"CENTER_TOP\" style=\"display:table-cell;" fprintf (Gbl.F.Out,"<div id=\"msg\">"); // Used for AJAX based refresh
" width:160px; height:80px;\">");
if (Gbl.Usrs.Me.Logged) if (Gbl.Usrs.Me.Logged)
{
/* Number of new messages (not seen) */
fprintf (Gbl.F.Out,"<div id=\"msg\"" // Used for AJAX based refresh
" style=\"padding-top:10px;\">");
Ntf_WriteNumberOfNewNtfs (); Ntf_WriteNumberOfNewNtfs ();
fprintf (Gbl.F.Out,"</div>"); // Used for AJAX based refresh fprintf (Gbl.F.Out,"</div>"); // Used for AJAX based refresh
}
fprintf (Gbl.F.Out,"</div>");
/* End of 2nd. row */ /* End of 2nd. row */
fprintf (Gbl.F.Out,"</div>"); fprintf (Gbl.F.Out,"</div>");