Version 21.94.3: Apr 25, 2022 Fixing design of dark theme.

This commit is contained in:
acanas 2022-04-25 23:13:16 +02:00
parent a8b7593bc0
commit 05004686a4
3 changed files with 12 additions and 9 deletions

View File

@ -4649,8 +4649,8 @@ button.PAG_DARK:hover, .PAG_CUR_DARK {background-color:#707070;}
.PAG_TXT_PURPLE,
.PAG_TXT_BLUE,
.PAG_TXT_YELLOW,
.PAG_TXT_PINK {color:#4d88a1; font-size:13pt; font-weight:bold;}
.PAG_TXT_DARK {color:#afc4cc; font-size:13pt; font-weight:bold;}
.PAG_TXT_PINK {color:#4d88a1; font-size:13pt;}
.PAG_TXT_DARK {color:#afc4cc; font-size:13pt;}
/***************************** Calls for exams *******************************/
.EXAM_TIT_WHITE,

View File

@ -606,10 +606,12 @@ TODO: Fix bug: error al enviar un mensaje a dos recipientes, error on duplicate
TODO: Attach pdf files in multimedia.
*/
#define Log_PLATFORM_VERSION "SWAD 21.94.1 (2022-04-25)"
#define CSS_FILE "swad21.94.1.css"
#define Log_PLATFORM_VERSION "SWAD 21.94.3 (2022-04-25)"
#define CSS_FILE "swad21.94.2.css"
#define JS_FILE "swad21.92.js"
/*
Version 21.94.3: Apr 25, 2022 Working on design of dark theme. (323402 lines)
Version 21.94.2: Apr 25, 2022 Fixed bug in pagination. Reported by Javier Fernández Baldomero. (323400 lines)
Version 21.94.1: Apr 25, 2022 Bugs related to dark theme fixed. (323399 lines)
Version 21.94: Apr 25, 2022 Working on design of dark theme.
Dark theme in production. (323458 lines)

View File

@ -416,14 +416,15 @@ static void Con_ShowConnectedUsrsWithARoleBelongingToCurrentCrsOnRightColumn (Ro
if (Gbl.Usrs.Connected.NumUsrsToList < Gbl.Usrs.Connected.NumUsrs)
{
HTM_TR_Begin (NULL);
HTM_TD_Begin ("colspan=\"3\" class=\"CT\"");
HTM_TD_Begin ("colspan=\"3\" class=\"CM\"");
Frm_BeginFormUnique (ActLstCon); // Must be unique because
// the list of connected users
// is dynamically updated via AJAX
// the list of connected users
// is dynamically updated via AJAX
Sco_PutParamScope ("ScopeCon",HieLvl_CRS);
HTM_INPUT_IMAGE (Cfg_URL_ICON_PUBLIC,"ellipsis-h.svg",
Txt_Connected_users,
"class=\"ICO16x16\"");
Txt_Connected_users,
"class=\"ICO16x16 ICO_HIGHLIGHT ICO_BLACK_%s\"",
The_GetSuffix ());
Frm_EndForm ();
HTM_TD_End ();
HTM_TR_End ();