Version 15.45.4

This commit is contained in:
Antonio Cañas Vargas 2015-11-25 10:50:32 +01:00
parent c9bca8851b
commit e9f16deb6f
4 changed files with 32 additions and 18 deletions

View File

@ -129,6 +129,22 @@ hr.YELLOW_SEPARA {height:0; border-top:0; border-bottom:#BD4815 dotted 1px;}
text-align:center;
vertical-align:middle;
}
#head_row_1_search
{
display:table-cell;
text-align:left;
vertical-align:middle;
}
#head_row_1_usr_lang
{
display:table-cell;
text-align:right;
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;}
.YELLOW_HEAD {color:#B3B0B3; font-size:12pt; white-space:nowrap;}
/************* Institution / Centre / Degree logo in top title ***************/
.TOP_LOGO
@ -808,11 +824,6 @@ a:hover img.CENTRE_PHOTO_SHOW
.BLUE_COURSE {font-family:Georgia,"DejaVu LGC Serif","Bitstream Vera Serif",serif; color:white; font-size:25pt; white-space:nowrap;}
.YELLOW_COURSE {font-family:Georgia,"DejaVu LGC Serif","Bitstream Vera Serif",serif; color:white; font-size:25pt; white-space:nowrap;}
.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;}
.YELLOW_HEAD {color:#B3B0B3; font-size:12pt; white-space:nowrap;}
.WHITE_CUR_TIME {color:#808080; font-size:15pt; font-weight:bold;}
.GREY_CUR_TIME {color:#E0E0E0; font-size:15pt; font-weight:bold;}
.BLUE_CUR_TIME {color:#BAD2DA; font-size:15pt; font-weight:bold;}

View File

@ -124,7 +124,17 @@ form {margin:0; display:inline;}
text-align:center;
vertical-align:middle;
}
#head_row_1_usr_lang
{
display:table-cell;
text-align:right;
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;}
.YELLOW_HEAD {color:#B3B0B3; font-size:20pt; white-space:nowrap;}
/************* Institution / Centre / Degree logo in top title ***************/
.TOP_LOGO
{
@ -663,11 +673,6 @@ a:hover img.CENTRE_PHOTO_SHOW
.BLUE_COURSE {font-family:Georgia,"DejaVu LGC Serif","Bitstream Vera Serif",serif; color:white; font-size:18pt; white-space:nowrap;}
.YELLOW_COURSE {font-family:Georgia,"DejaVu LGC Serif","Bitstream Vera Serif",serif; color:white; font-size:18pt; white-space:nowrap;}
.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;}
.YELLOW_HEAD {color:#B3B0B3; font-size:20pt; white-space:nowrap;}
.WHITE_USR {color:#E0E0E0; font-size:20pt; font-weight:bold; white-space:nowrap;}
.GREY_USR {color:#E0E0E0; font-size:20pt; font-weight:bold; white-space:nowrap;}
.BLUE_USR {color:white; font-size:20pt; font-weight:bold; white-space:nowrap;}

View File

@ -111,11 +111,12 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 15.45.3 (2015/11/25)"
#define Log_PLATFORM_VERSION "SWAD 15.45.4 (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.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)
Version 15.45.1: Nov 25, 2015 Changes in layout of page (some tables used with layout purposes are replaced by CSS). (187884 lines)

View File

@ -749,8 +749,7 @@ static void Lay_WritePageTopHeadingDesktop (void)
Cfg_PLATFORM_LOGO_DESKTOP_HEIGHT);
/* 1st. row, 1st. column: search */
fprintf (Gbl.F.Out,"<div class=\"LEFT_MIDDLE\""
" style=\"display:table-cell;\">");
fprintf (Gbl.F.Out,"<div id=\"head_row_1_search\">");
Act_FormStart ( Gbl.CurrentCrs.Crs.CrsCod > 0 ? ActCrsSch :
(Gbl.CurrentDeg.Deg.DegCod > 0 ? ActDegSch :
(Gbl.CurrentCtr.Ctr.CtrCod > 0 ? ActCtrSch :
@ -763,8 +762,7 @@ static void Lay_WritePageTopHeadingDesktop (void)
fprintf (Gbl.F.Out,"</div>");
/* 1st. row, 3rd. column: logged user or language selection */
fprintf (Gbl.F.Out,"<div class=\"%s RIGHT_MIDDLE\""
" style=\"display:table-cell;\">",
fprintf (Gbl.F.Out,"<div id=\"head_row_1_usr_lang\" class=\"%s\">",
The_ClassHead[Gbl.Prefs.Theme]);
if (Gbl.Usrs.Me.Logged)
Usr_WriteLoggedUsrHead ();
@ -863,8 +861,7 @@ static void Lay_WritePageTopHeadingMobile (void)
/* 1st. row, 2nd. column:
logged user / language selection */
fprintf (Gbl.F.Out,"<div class=\"%s RIGHT_MIDDLE\""
" style=\"display:table-cell;\">",
fprintf (Gbl.F.Out,"<div id=\"head_row_1_usr_lang\" class=\"%s\">",
The_ClassHead[Gbl.Prefs.Theme]);
if (Gbl.Usrs.Me.Logged)
Usr_WriteLoggedUsrHead ();