Version 22.118.3: May 23, 2023 Fix CSS related to left and right columns.

This commit is contained in:
acanas 2023-05-23 10:13:14 +02:00
parent 7c2e1d8878
commit d445591472
7 changed files with 20 additions and 8 deletions

View File

@ -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;

View File

@ -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 ();

View File

@ -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)

View File

@ -28,6 +28,7 @@
#define _GNU_SOURCE // For asprintf
#include <mysql/mysql.h> // To access MySQL databases
#include <stdio.h> // For asprintf
#include <stdlib.h> // For free
#include "swad_action_list.h"
#include "swad_alert.h"

View File

@ -25,6 +25,7 @@
/*****************************************************************************/
#include <stdbool.h> // For boolean type
#include <stdlib.h> // For free
#include <string.h> // For string functions
#include "swad_action_list.h"

View File

@ -27,6 +27,7 @@
#include <stdbool.h> // For boolean type
#include <stddef.h> // For NULL
#include <stdlib.h> // For free, malloc
#include "swad_action_list.h"
#include "swad_autolink.h"

View File

@ -28,6 +28,7 @@
#include <float.h> // For DBL_MAX
#include <mysql/mysql.h> // To access MySQL databases
#include <stdio.h> // For asprintf
#include <stdlib.h> // For free
#include <string.h> // For string functions
#include "swad_action_list.h"