Version 15.54.4

This commit is contained in:
Antonio Cañas Vargas 2015-12-01 14:03:45 +01:00
parent 3d11cf18cd
commit 68868a84cf
3 changed files with 10 additions and 8 deletions

View File

@ -295,7 +295,7 @@ a:hover /* Default ==> underlined */
.BREADCRUMB_YELLOW {color:#FFC040;}
/******** Big name of country, institution, centre, degree or course *********/
#big_name h1,#big_name abbr
#big_name
{
margin:0;
padding:0;
@ -321,6 +321,7 @@ a:hover /* Default ==> underlined */
}
#big_full_name
{
display:inline;
}
}
.WHITE_COURSE {color:#4D88A1;}
@ -612,7 +613,7 @@ a:hover /* Default ==> underlined */
#main_horizontal .MENU_LIST_ITEM
{
display:table-cell;
width:120px;
width:128px;
height:60px;
margin:0 auto;
text-align:center;
@ -671,7 +672,7 @@ a:hover /* Default ==> underlined */
#main_vertical .MENU_LIST_ITEM
{
display:table-cell;
width:120px;
width:128px;
height:60px;
margin:0 auto;
text-align:center;

View File

@ -115,12 +115,13 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 15.54.3 (2015/12/01)"
#define CSS_FILE "swad15.54.3.css"
#define Log_PLATFORM_VERSION "SWAD 15.54.4 (2015/12/01)"
#define CSS_FILE "swad15.54.4.css"
// 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.54.4: Dec 01, 2015 Fixed bug in title (country, institution, centre, degree, course). (186761 lines)
Version 15.54.3: Dec 01, 2015 Minor changes in tabs, menus and CSS. (186758 lines)
Version 15.54.2: Dec 01, 2015 Minor changes in CSS. (186751 lines)
Version 15.54.1: Dec 01, 2015 Some settings related with timetables. (186746 lines)

View File

@ -773,7 +773,7 @@ void Deg_WriteBigNameCtyInsCtrDegCrs (void)
FullName[Deg_MAX_LENGTH_ORIGINAL_NAME] = '\0';
Str_LimitLengthHTMLStr (FullName ,Deg_MAX_LENGTH_FULL_NAME_ON_PAGE_HEAD);
fprintf (Gbl.F.Out,"<div id=\"big_name\" class=\"%s\">",
fprintf (Gbl.F.Out,"<h1 id=\"big_name\" class=\"%s\">",
The_ClassCourse[Gbl.Prefs.Theme]);
if (Gbl.CurrentCrs.Crs.CrsCod <= 0)
{
@ -789,9 +789,9 @@ void Deg_WriteBigNameCtyInsCtrDegCrs (void)
else if (Gbl.CurrentCty.Cty.CtyCod > 0)
Cty_DrawCountryMap (&Gbl.CurrentCty.Cty,"COUNTRY_MAP_TITLE");
}
fprintf (Gbl.F.Out,"<h1 id=\"big_full_name\">%s</h1>"
fprintf (Gbl.F.Out,"<div id=\"big_full_name\">%s</div>"
"<abbr id=\"big_short_name\">%s</abbr>"
"</div>",
"</h1>",
FullName,ShortName);
}
}