diff --git a/css/swad_desktop.css b/css/swad_desktop.css index 200bba60d..468a67778 100644 --- a/css/swad_desktop.css +++ b/css/swad_desktop.css @@ -730,7 +730,8 @@ a:hover img.CENTRE_PHOTO_SHOW .HEAD_REC {font-family:Georgia, "DejaVu LGC Serif", "Bitstream Vera Serif", serif; color:#808080; font-size:10pt;} .HEAD_REC_SMALL {font-family:Georgia, "DejaVu LGC Serif", "Bitstream Vera Serif", serif; color:#808080; font-size:9pt;} -.HEAD_REC_BIG {color:#808080; font-size:16pt; font-weight:bold;} +.REC_NAME {color:#808080; font-size:16pt; font-weight:bold;} +.REC_NICK {color:#808080; font-size:14pt; font-weight:bold;} .DAT_REC {color:#404040; font-size:9pt; line-height:110%;} .DAT_REC_SMALL {color:#808080; font-size:9pt; line-height:110%;} .DAT_REC_SMALL_BOLD {color:#202020; font-size:9pt; line-height:110%;} diff --git a/css/swad_mobile.css b/css/swad_mobile.css index 046e72515..0f61132ba 100644 --- a/css/swad_mobile.css +++ b/css/swad_mobile.css @@ -541,7 +541,8 @@ a:hover img.CENTRE_PHOTO_SHOW .HEAD_REC {font-Family:Georgia, "DejaVu LGC Serif", "Bitstream Vera Serif", serif; color:#808080; font-size:16pt;} .HEAD_REC_SMALL {font-Family:Georgia, "DejaVu LGC Serif", "Bitstream Vera Serif", serif; color:#808080; font-size:12pt;} -.HEAD_REC_BIG {color:#808080; font-size:20pt; font-weight:bold;} +.REC_NAME {color:#808080; font-size:20pt; font-weight:bold;} +.REC_NICK {color:#808080; font-size:16pt; font-weight:bold;} .DAT_REC {color:#404040; font-size:14pt; line-height:110%;} .DAT_REC_SMALL {color:#808080; font-size:14pt; line-height:110%;} .DAT_REC_SMALL_BOLD {color:#202020; font-size:14pt; line-height:110%;} diff --git a/swad_changelog.h b/swad_changelog.h index 3861fde0e..e0153fea1 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -103,11 +103,12 @@ /****************************** Public constants *****************************/ /*****************************************************************************/ -#define Log_PLATFORM_VERSION "SWAD 14.94.2 (2015/03/17)" +#define Log_PLATFORM_VERSION "SWAD 14.94.3 (2015/03/17)" // 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 14.94.3: Mar 17, 2015 Changes in record fonts. (182667 lines) Version 14.94.2: Mar 17, 2015 Fixed bug in ranking. (182668 lines) Version 14.94.1: Mar 17, 2015 Fixed bug in user's profile. (182667 lines) Version 14.94: Mar 17, 2015 Ranking for downloads, forum posts and messages in user's profile. (182666 lines) diff --git a/swad_record.c b/swad_record.c index daba8acbc..7d0066d5f 100644 --- a/swad_record.c +++ b/swad_record.c @@ -2129,7 +2129,6 @@ void Rec_ShowSharedUsrRecord (Rec_RecordViewType_t TypeOfView, case Rec_FORM_MY_COMMON_RECORD: RecordWidth = Rec_WIDTH_SHARE_RECORD_BIG; FrameWidth = 10; - // Col3Width = 160; ClassHead = "HEAD_REC"; ClassForm = The_ClassFormul[Gbl.Prefs.Theme]; ClassData = "DAT_REC"; @@ -2148,7 +2147,6 @@ void Rec_ShowSharedUsrRecord (Rec_RecordViewType_t TypeOfView, } RecordWidth = Rec_WIDTH_SHARE_RECORD_BIG; FrameWidth = 10; - // Col3Width = 160; ClassHead = "HEAD_REC"; ClassForm = The_ClassFormul[Gbl.Prefs.Theme]; ClassData = "DAT_REC"; @@ -2159,7 +2157,6 @@ void Rec_ShowSharedUsrRecord (Rec_RecordViewType_t TypeOfView, case Rec_RECORD_PUBLIC: RecordWidth = Rec_WIDTH_SHARE_RECORD_SMALL; FrameWidth = 10; - // Col3Width = 160; ClassHead = "HEAD_REC_SMALL"; ClassForm = "DAT_REC_SMALL"; ClassData = "DAT_REC_SMALL_BOLD"; @@ -2167,7 +2164,6 @@ void Rec_ShowSharedUsrRecord (Rec_RecordViewType_t TypeOfView, case Rec_RECORD_PRINT: RecordWidth = Rec_WIDTH_SHARE_RECORD_PRINT; FrameWidth = 1; - // Col3Width = 160; ClassHead = "HEAD_REC_SMALL"; ClassForm = "DAT_REC_SMALL"; ClassData = "DAT_REC_SMALL_BOLD"; @@ -2351,7 +2347,7 @@ void Rec_ShowSharedUsrRecord (Rec_RecordViewType_t TypeOfView, /***** Full name *****/ fprintf (Gbl.F.Out,"" - "" "%s
%s
%s" "" @@ -2380,7 +2376,7 @@ void Rec_ShowSharedUsrRecord (Rec_RecordViewType_t TypeOfView, "" "%s:" "" - "", ClassForm,Col1Width, Txt_Nickname, @@ -2392,7 +2388,7 @@ void Rec_ShowSharedUsrRecord (Rec_RecordViewType_t TypeOfView, /* Put form to go to public profile */ Act_FormStart (ActSeePubPrf); Usr_PutParamOtherUsrCodEncrypted (UsrDat->EncryptedUsrCod); - Act_LinkFormSubmit (Txt_View_public_profile,"HEAD_REC_BIG"); + Act_LinkFormSubmit (Txt_View_public_profile,"REC_NICK"); } fprintf (Gbl.F.Out,"@%s",UsrDat->Nickname); if (GoToPublicProfileForm)