From d445591472f2847b66c617899f798854a6a1a1a6 Mon Sep 17 00:00:00 2001 From: acanas Date: Tue, 23 May 2023 10:13:14 +0200 Subject: [PATCH] Version 22.118.3: May 23, 2023 Fix CSS related to left and right columns. --- css/{swad22.107.36.css => swad22.118.3.css} | 14 +++++++++++--- swad_MFU.c | 5 ++--- swad_changelog.h | 5 +++-- swad_program_resource.c | 1 + swad_project_config.c | 1 + swad_rubric.c | 1 + swad_rubric_criteria.c | 1 + 7 files changed, 20 insertions(+), 8 deletions(-) rename css/{swad22.107.36.css => swad22.118.3.css} (99%) diff --git a/css/swad22.107.36.css b/css/swad22.118.3.css similarity index 99% rename from css/swad22.107.36.css rename to css/swad22.118.3.css index 006f7f79e..e3b32df63 100644 --- a/css/swad22.107.36.css +++ b/css/swad22.118.3.css @@ -1252,14 +1252,20 @@ a:hover /* Default ==> underlined */ .MENU_TXT_DARK {color:#d0d0d0;} /***************************** Users connected *******************************/ +#courseconnected + { + box-sizing:border-box; + width:136px; + white-space:nowrap; + overflow:hidden; + text-overflow:ellipsis; + } .CON { box-sizing:border-box; width:100%; padding:5px; white-space:nowrap; - overflow:hidden; - text-overflow:ellipsis; } .CON_WHITE, @@ -1351,6 +1357,8 @@ a:hover /* Default ==> underlined */ /*************************** Most frequent actions ***************************/ #MFU_actions { + box-sizing:border-box; + width:148px; padding:5px; font-size:11pt; } @@ -1358,7 +1366,7 @@ a:hover /* Default ==> underlined */ { display:inline-block; box-sizing:border-box; - width:100%; + width:136px; margin:0; padding:0; list-style-type:none; diff --git a/swad_MFU.c b/swad_MFU.c index ae540cf74..33de2e7f5 100644 --- a/swad_MFU.c +++ b/swad_MFU.c @@ -259,8 +259,7 @@ void MFU_WriteSmallMFUActions (struct MFU_ListMFUActions *ListMFUActions) char TabMenuStr[MFU_MAX_BYTES_TAB + 6 + MFU_MAX_BYTES_MENU + 1]; /***** Begin fieldset *****/ - HTM_FIELDSET_Begin ("id=\"MFU_actions\" class=\"MFU_%s\"", - The_GetSuffix ()); + HTM_FIELDSET_Begin ("id=\"MFU_actions\" class=\"MFU_%s\"",The_GetSuffix ()); HTM_LEGEND (Txt_Frequent_ACTIONS); /***** List of frequently used actions *****/ @@ -284,7 +283,7 @@ void MFU_WriteSmallMFUActions (struct MFU_ListMFUActions *ListMFUActions) HTM_LI_Begin ("class=\"ICO_HIGHLIGHT\""); Frm_BeginForm (Action); HTM_BUTTON_Submit_Begin (TabMenuStr,"class=\"BT_LINK\""); - MFU_PutIconAndText (Action,MenuStr); + MFU_PutIconAndText (Action,MenuStr); HTM_BUTTON_End (); Frm_EndForm (); HTM_LI_End (); diff --git a/swad_changelog.h b/swad_changelog.h index 5a1a5877d..d7237ca7d 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -629,10 +629,11 @@ TODO: Emilce Barrera Mesa: Podr TODO: Emilce Barrera Mesa: Mis estudiantes presentan muchas dificultades a la hora de poner la foto porque la plataforma es muy exigente respecto al fondo de la imagen. */ -#define Log_PLATFORM_VERSION "SWAD 22.118.2 (2023-05-23)" -#define CSS_FILE "swad22.107.36.css" +#define Log_PLATFORM_VERSION "SWAD 22.118.3 (2023-05-23)" +#define CSS_FILE "swad22.118.3.css" #define JS_FILE "swad22.49.js" /* + Version 22.118.3: May 23, 2023 Fix CSS related to left and right columns. (337351 lines) Version 22.118.2: May 23, 2023 Changes in survey comments. (337339 lines) Version 22.118.1: May 22, 2023 Remove survey comments from database. (337334 lines) Version 22.118: May 22, 2023 Survey comments are stored in database. (337285 lines) diff --git a/swad_program_resource.c b/swad_program_resource.c index 1dc4bf4e3..d2e799872 100644 --- a/swad_program_resource.c +++ b/swad_program_resource.c @@ -28,6 +28,7 @@ #define _GNU_SOURCE // For asprintf #include // To access MySQL databases #include // For asprintf +#include // For free #include "swad_action_list.h" #include "swad_alert.h" diff --git a/swad_project_config.c b/swad_project_config.c index 0e5a88e61..ad1f59a79 100644 --- a/swad_project_config.c +++ b/swad_project_config.c @@ -25,6 +25,7 @@ /*****************************************************************************/ #include // For boolean type +#include // For free #include // For string functions #include "swad_action_list.h" diff --git a/swad_rubric.c b/swad_rubric.c index 03024c65a..744e9aebd 100644 --- a/swad_rubric.c +++ b/swad_rubric.c @@ -27,6 +27,7 @@ #include // For boolean type #include // For NULL +#include // For free, malloc #include "swad_action_list.h" #include "swad_autolink.h" diff --git a/swad_rubric_criteria.c b/swad_rubric_criteria.c index 336ea20d3..369bd3050 100644 --- a/swad_rubric_criteria.c +++ b/swad_rubric_criteria.c @@ -28,6 +28,7 @@ #include // For DBL_MAX #include // To access MySQL databases #include // For asprintf +#include // For free #include // For string functions #include "swad_action_list.h"