Version 14.110.1

This commit is contained in:
Antonio Cañas Vargas 2015-04-09 01:16:41 +02:00
parent c63beac1fd
commit 27c9097750
4 changed files with 35 additions and 6 deletions

View File

@ -52,7 +52,6 @@ table td
} }
img {border-width:0; border-style:none;} img {border-width:0; border-style:none;}
form {margin:0; display:inline;} form {margin:0; display:inline;}
p {margin:0;}
hr.WHITE_SEPARA {height:0; border-top:0; border-bottom:#707070 dotted 1px;} hr.WHITE_SEPARA {height:0; border-top:0; border-bottom:#707070 dotted 1px;}
hr.GREY_SEPARA {height:0; border-top:0; border-bottom:#707070 dotted 1px;} hr.GREY_SEPARA {height:0; border-top:0; border-bottom:#707070 dotted 1px;}
hr.BLUE_SEPARA {height:0; border-top:0; border-bottom:#4D88A1 dotted 1px;} hr.BLUE_SEPARA {height:0; border-top:0; border-bottom:#4D88A1 dotted 1px;}
@ -752,7 +751,22 @@ a:hover img.CENTRE_PHOTO_SHOW
{ {
margin:0; margin:0;
padding:0 10px; padding:0 10px;
color:#404040; color:inherit;
}
#crs_info table
{
border: 1px solid grey;
}
#crs_info th
{
border:1px solid grey;
background-color:#F0F0F0;
padding:5px;
}
#crs_info td
{
border:1px solid grey;
padding:5px;
} }
/*****************************************************************************/ /*****************************************************************************/

View File

@ -51,7 +51,6 @@ table td
} }
img {border-width:0; border-style:none;} img {border-width:0; border-style:none;}
form {margin:0; display:inline;} form {margin:0; display:inline;}
p {margin:0;}
/************************* Users connected globally **************************/ /************************* Users connected globally **************************/
.CONNECTED .CONNECTED
@ -563,7 +562,22 @@ a:hover img.CENTRE_PHOTO_SHOW
{ {
margin:0; margin:0;
padding:0 10px; padding:0 10px;
color:#404040; color:inherit;
}
#crs_info table
{
border: 1px solid grey;
}
#crs_info th
{
border:1px solid grey;
background-color:#F0F0F0;
padding:5px;
}
#crs_info td
{
border:1px solid grey;
padding:5px;
} }
/*****************************************************************************/ /*****************************************************************************/

View File

@ -2027,7 +2027,7 @@ struct Act_Actions Act_Actions[Act_NUM_ACTIONS] =
/* ActPlaTxtEdiAss */{ 387,-1,TabAss,ActSeeAss ,0x110,0x100,0x000,Act_CONTENT_NORM,Act_MAIN_WINDOW,NULL ,Inf_EditPlainTxtInfo ,NULL}, /* ActPlaTxtEdiAss */{ 387,-1,TabAss,ActSeeAss ,0x110,0x100,0x000,Act_CONTENT_NORM,Act_MAIN_WINDOW,NULL ,Inf_EditPlainTxtInfo ,NULL},
/* ActRchTxtEdiAss */{1100,-1,TabAss,ActSeeAss ,0x110,0x100,0x000,Act_CONTENT_NORM,Act_MAIN_WINDOW,NULL ,Inf_EditRichTxtInfo ,NULL}, /* ActRchTxtEdiAss */{1100,-1,TabAss,ActSeeAss ,0x110,0x100,0x000,Act_CONTENT_NORM,Act_MAIN_WINDOW,NULL ,Inf_EditRichTxtInfo ,NULL},
/* ActRcvPlaTxtAss */{ 397,-1,TabAss,ActSeeAss ,0x110,0x100,0x000,Act_CONTENT_NORM,Act_MAIN_WINDOW,NULL ,Inf_RecAndChangePlainTxtInfo ,NULL}, /* ActRcvPlaTxtAss */{ 397,-1,TabAss,ActSeeAss ,0x110,0x100,0x000,Act_CONTENT_NORM,Act_MAIN_WINDOW,NULL ,Inf_RecAndChangePlainTxtInfo ,NULL},
/* ActRcvRchTxtAss */{1108,-1,TabAss,ActSeeAss ,0x110,0x100,0x000,Act_CONTENT_NORM,Act_MAIN_WINDOW,NULL ,Inf_RecAndChangePlainTxtInfo ,NULL}, /* ActRcvRchTxtAss */{1108,-1,TabAss,ActSeeAss ,0x110,0x100,0x000,Act_CONTENT_NORM,Act_MAIN_WINDOW,NULL ,Inf_RecAndChangeRichTxtInfo ,NULL},
/* ActFrmNewAsg */{ 812,-1,TabAss,ActSeeAsg ,0x110,0x100,0x000,Act_CONTENT_NORM,Act_MAIN_WINDOW,NULL ,Asg_RequestCreatOrEditAsg ,NULL}, /* ActFrmNewAsg */{ 812,-1,TabAss,ActSeeAsg ,0x110,0x100,0x000,Act_CONTENT_NORM,Act_MAIN_WINDOW,NULL ,Asg_RequestCreatOrEditAsg ,NULL},
/* ActEdiOneAsg */{ 814,-1,TabAss,ActSeeAsg ,0x110,0x100,0x000,Act_CONTENT_NORM,Act_MAIN_WINDOW,NULL ,Asg_RequestCreatOrEditAsg ,NULL}, /* ActEdiOneAsg */{ 814,-1,TabAss,ActSeeAsg ,0x110,0x100,0x000,Act_CONTENT_NORM,Act_MAIN_WINDOW,NULL ,Asg_RequestCreatOrEditAsg ,NULL},

View File

@ -103,11 +103,12 @@
/****************************** Public constants *****************************/ /****************************** Public constants *****************************/
/*****************************************************************************/ /*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 14.110 (2015/04/07)" #define Log_PLATFORM_VERSION "SWAD 14.110.1 (2015/04/08)"
// Number of lines (includes comments but not blank lines) has been got with the following command: // 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 // nl swad*.c swad*.h css/swad*.css py/swad*.py js/swad*.js soap/swad*.h sql/swad*.sql | tail -1
/* /*
Version 14.110.1: Apr 08, 2015 Changes in CSS. (184539 lines)
Version 14.110: Apr 07, 2015 Testing rich text editor using Markdown, suggested by Pedro A. García Sánchez. (184508 lines) Version 14.110: Apr 07, 2015 Testing rich text editor using Markdown, suggested by Pedro A. García Sánchez. (184508 lines)
Fixed bug in file browser, reported by Eva Martínez Ortigosa. Fixed bug in file browser, reported by Eva Martínez Ortigosa.
2 changes necessary in database: 2 changes necessary in database: