diff --git a/css/swad15.121.3.css b/css/swad15.121.3.css index da42740f3..f3de4ae63 100644 --- a/css/swad15.121.3.css +++ b/css/swad15.121.3.css @@ -1704,6 +1704,7 @@ a:hover img.CENTRE_PHOTO_SHOW { to {background-color:white;} } + .SOCIAL_FORM_NEW_POST { padding:10px 0; @@ -1751,6 +1752,7 @@ a:hover img.CENTRE_PHOTO_SHOW display:inline-block; box-sizing:border-box; width:160px; + text-align:right; vertical-align:top; } .SOCIAL_BOTTOM_LEFT /* Container for button used to toggle new comment form */ @@ -1780,7 +1782,7 @@ a:hover img.CENTRE_PHOTO_SHOW } .SOCIAL_TXT { - padding:8px 0; + padding:5px 0; color:#404040; font-size:13pt; } diff --git a/swad_changelog.h b/swad_changelog.h index 55837cdb8..745ae24a1 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -119,6 +119,7 @@ // TODO: Increment one second after each refresh in social timeline? // TODO: Notifications of new followers should go to follower's profile +// TODO: Textarea in comments smaller and with my photo at left // TODO: Fav comments (remove favs when comment is removed) // TODO: Fix bugs on comment favourites @@ -126,13 +127,14 @@ /****************************** Public constants *****************************/ /*****************************************************************************/ -#define Log_PLATFORM_VERSION "SWAD 15.121.3 (2016-01-19)" +#define Log_PLATFORM_VERSION "SWAD 15.121.4 (2016-01-20)" #define CSS_FILE "swad15.121.3.css" #define JS_FILE "swad15.118.4.js" // 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.121.4: Jan 20, 2016 Fixed bug related to favs in social comments. (193904 lines) Version 15.121.3: Jan 20, 2016 Favs in social comments. Not finished. Changes in layout of social timeline. (193901 lines) Version 15.121.2: Jan 19, 2016 Favs in social comments. Not finished. (193868 lines) diff --git a/swad_social.c b/swad_social.c index 9f1487e7f..2241edea2 100644 --- a/swad_social.c +++ b/swad_social.c @@ -1425,8 +1425,8 @@ static void Soc_WriteDateTime (time_t TimeUTC) Soc_SetUniqueId (IdDateTime); /***** Container where the date-time is written *****/ - fprintf (Gbl.F.Out,"
", + fprintf (Gbl.F.Out,"
" + "
", IdDateTime); /***** Script to write date and time in browser local time *****/ @@ -2529,7 +2529,7 @@ static void Soc_PutFormToUnfavSocialComment (long ComCod) } else Act_FormStartUnique (ActUnfSocComGbl); - Soc_PutHiddenParamNotCod (ComCod); + Soc_PutHiddenParamComCod (ComCod); fprintf (Gbl.F.Out,"
" ""); NumUsrsShown++;