diff --git a/css/swad_desktop.css b/css/swad_desktop.css index cb198d40c..5ef444683 100644 --- a/css/swad_desktop.css +++ b/css/swad_desktop.css @@ -176,6 +176,14 @@ hr.YELLOW_SEPARA {height:0; border-top:0; border-bottom:#BD4815 dotted 1px;} vertical-align:top; 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 ***************/ .TOP_LOGO diff --git a/swad_changelog.h b/swad_changelog.h index d722b2885..73d1e5f42 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -111,11 +111,12 @@ /****************************** 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: // 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.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) diff --git a/swad_layout.c b/swad_layout.c index b74985aaa..9b069ea74 100644 --- a/swad_layout.c +++ b/swad_layout.c @@ -800,17 +800,10 @@ static void Lay_WritePageTopHeadingDesktop (void) fprintf (Gbl.F.Out,""); /* 2nd. row, 3rd. column */ - fprintf (Gbl.F.Out,"
"); + fprintf (Gbl.F.Out,"
"); // Used for AJAX based refresh if (Gbl.Usrs.Me.Logged) - { - /* Number of new messages (not seen) */ - fprintf (Gbl.F.Out,"
"); Ntf_WriteNumberOfNewNtfs (); - fprintf (Gbl.F.Out,"
"); // Used for AJAX based refresh - } - fprintf (Gbl.F.Out,"
"); + fprintf (Gbl.F.Out,"
"); // Used for AJAX based refresh /* End of 2nd. row */ fprintf (Gbl.F.Out,"");