Version 15.45.6

This commit is contained in:
Antonio Cañas Vargas 2015-11-25 13:29:55 +01:00
parent 431d88af28
commit 914939efd3
4 changed files with 25 additions and 6 deletions

View File

@ -153,6 +153,16 @@ hr.YELLOW_SEPARA {height:0; border-top:0; border-bottom:#BD4815 dotted 1px;}
.BLUE_HEAD {color:white; font-size:12pt; white-space:nowrap;}
.YELLOW_HEAD {color:#B3B0B3; font-size:12pt; white-space:nowrap;}
/************************ Layout (second heading row) ************************/
#head_row_2
{
display:table;
width:100%;
height:80px;
vertical-align:top;
}
/************* Institution / Centre / Degree logo in top title ***************/
.TOP_LOGO
{

View File

@ -141,7 +141,17 @@ form {margin:0; display:inline;}
.GREY_HEAD {color:#E0E0E0; font-size:20pt; white-space:nowrap;}
.BLUE_HEAD {color:white; font-size:20pt; white-space:nowrap;}
.YELLOW_HEAD {color:#B3B0B3; font-size:20pt; white-space:nowrap;}
/************************ Layout (second heading row) ************************/
#head_row_2
{
display:table;
width:100%;
height:40px;
text-align:center;
vertical-align:middle;
}
/************* Institution / Centre / Degree logo in top title ***************/
.TOP_LOGO
{

View File

@ -111,11 +111,12 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 15.45.5 (2015/11/25)"
#define Log_PLATFORM_VERSION "SWAD 15.45.6 (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.6: Nov 25, 2015 Some CSS styles related to layout are moved to CSS file. (188007 lines)
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)

View File

@ -784,8 +784,7 @@ static void Lay_WritePageTopHeadingDesktop (void)
/***** 2nd. row *****/
/* Start of second row */
fprintf (Gbl.F.Out,"<div style=\"display:table; vertical-align:top;"
" width:100%%; height:80px;\">");
fprintf (Gbl.F.Out,"<div id=\"head_row_2\">");
/* 2nd. row, 1st. column
Clock with hour:minute (server hour is shown) */
@ -881,8 +880,7 @@ static void Lay_WritePageTopHeadingMobile (void)
fprintf (Gbl.F.Out,"</div>");
/***** 2nd. row *****/
fprintf (Gbl.F.Out,"<div class=\"CENTER_MIDDLE\""
" style=\"display-table; height:40px;\">");
fprintf (Gbl.F.Out,"<div id=\"head_row_2\">");
Deg_WriteCtyInsCtrDeg ();
Crs_WriteSelectorMyCourses ();
fprintf (Gbl.F.Out,"</div>");