Version 15.45.5

This commit is contained in:
Antonio Cañas Vargas 2015-11-25 13:22:52 +01:00
parent e9f16deb6f
commit 431d88af28
4 changed files with 18 additions and 5 deletions

View File

@ -141,6 +141,13 @@ hr.YELLOW_SEPARA {height:0; border-top:0; border-bottom:#BD4815 dotted 1px;}
text-align:right;
vertical-align:middle;
}
#head_row_1_session
{
display:table-cell;
width:160px;
text-align:center;
vertical-align:middle;
}
.WHITE_HEAD {color:#E0E0E0; font-size:12pt; white-space:nowrap;}
.GREY_HEAD {color:#E0E0E0; font-size:12pt; white-space:nowrap;}
.BLUE_HEAD {color:white; font-size:12pt; white-space:nowrap;}

View File

@ -130,6 +130,13 @@ form {margin:0; display:inline;}
text-align:right;
vertical-align:middle;
}
#head_row_1_session
{
display:table-cell;
width:220px;
text-align:center;
vertical-align:middle;
}
.WHITE_HEAD {color:#E0E0E0; font-size:20pt; white-space:nowrap;}
.GREY_HEAD {color:#E0E0E0; font-size:20pt; white-space:nowrap;}
.BLUE_HEAD {color:white; font-size:20pt; white-space:nowrap;}

View File

@ -111,11 +111,12 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 15.45.4 (2015/11/25)"
#define Log_PLATFORM_VERSION "SWAD 15.45.5 (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.5: Nov 25, 2015 Some CSS styles related to layout are moved to CSS file. (187992 lines)
Version 15.45.4: Nov 25, 2015 Some CSS styles related to layout are moved to CSS file. (187979 lines)
Version 15.45.3: Nov 25, 2015 Some CSS styles related to layout are moved to CSS file. (187963 lines)
Version 15.45.2: Nov 25, 2015 Some CSS styles related to layout are moved to CSS file. (187929 lines)

View File

@ -771,8 +771,7 @@ static void Lay_WritePageTopHeadingDesktop (void)
fprintf (Gbl.F.Out,"</div>");
/* 1st. row, 4th. column: link to open/close session */
fprintf (Gbl.F.Out,"<div class=\"%s CENTER_MIDDLE\""
" style=\"display:table-cell; width:160px;\">",
fprintf (Gbl.F.Out,"<div id=\"head_row_1_session\" class=\"%s\">",
The_ClassHead[Gbl.Prefs.Theme]);
if (Gbl.Usrs.Me.Logged)
Usr_PutFormLogOut ();
@ -870,8 +869,7 @@ static void Lay_WritePageTopHeadingMobile (void)
fprintf (Gbl.F.Out,"</div>");
/* 1st. row, 3rd. column: link to open/close session */
fprintf (Gbl.F.Out,"<div class=\"%s CENTER_MIDDLE\""
" style=\"display:table-cell; width:220px;\">",
fprintf (Gbl.F.Out,"<div id=\"head_row_1_session\" class=\"%s\">",
The_ClassHead[Gbl.Prefs.Theme]);
if (Gbl.Usrs.Me.Logged)
Usr_PutFormLogOut ();