Version 15.54.2

This commit is contained in:
Antonio Cañas Vargas 2015-12-01 02:11:40 +01:00
parent d52835d22d
commit 7a48a9bb3f
2 changed files with 15 additions and 6 deletions

View File

@ -82,8 +82,12 @@ hr.YELLOW_SEPARA {height:0; border-top:0; border-bottom:#BD4815 dotted 1px;}
a:link {text-decoration:none;}
a:visited {text-decoration:none;}
a:active {text-decoration:none;}
a:hover {text-decoration:underline;}
.MENU_LIST_ITEM a:hover {text-decoration:none;}
a:hover {text-decoration:underline;} /* Default ==> underlined */
.TAB_OFF a, .TAB_ON a., MENU_LIST_ITEM a /* Tabs and menus are the exceptions */
{
text-decoration:none;
outline:0; /* Do not outline the box with dotted line. Another feedback is provided */
}
/****************** Layout (the whole page with a background) ****************/
#whole_page

View File

@ -115,14 +115,19 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 15.54.1 (2015/12/01)"
#define CSS_FILE "swad15.54.css"
#define Log_PLATFORM_VERSION "SWAD 15.54.2 (2015/12/01)"
#define CSS_FILE "swad15.54.2.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.1: Dec 01, 2015 Some settings related with timetables. (186743 lines)
Version 15.54: Dec 01, 2015 Selection of the first day of the week in timetables. (186736 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)
Version 15.54: Dec 01, 2015 Selection of the first day of the week in timetables. (186740 lines)
2 changes necessary in database:
INSERT INTO actions (ActCod,Language,Obsolete,Txt) VALUES ('1486','es','N','Cambiar primer día semana en horario asig.');
INSERT INTO actions (ActCod,Language,Obsolete,Txt) VALUES ('1487','es','N','Cambiar primer día semana en mi horario');
Version 15.53: Nov 30, 2015 Sunday can be the first day of the week in timetable, depending on user's preferences. (186689 lines)
Version 15.52: Nov 30, 2015 Timetable now starts at 6 a.m. instead of 7 a.m.
Changes in layout of timetable. (186656 lines)