Version 21.95.6: May 12, 2022 Fixing design of dark theme.

This commit is contained in:
acanas 2022-05-12 18:49:31 +02:00
parent c8430ea406
commit 485d065a13
3 changed files with 8 additions and 5 deletions

View File

@ -606,12 +606,13 @@ TODO: Fix bug: error al enviar un mensaje a dos recipientes, error on duplicate
TODO: Attach pdf files in multimedia. TODO: Attach pdf files in multimedia.
*/ */
#define Log_PLATFORM_VERSION "SWAD 21.95.5 (2022-05-12)" #define Log_PLATFORM_VERSION "SWAD 21.95.6 (2022-05-12)"
#define CSS_FILE "swad21.95.5.css" #define CSS_FILE "swad21.95.5.css"
#define JS_FILE "swad21.92.js" #define JS_FILE "swad21.92.js"
/* /*
Version 21.95.6: May 12, 2022 Fixing design of dark theme. (323509 lines)
Version 21.95.5: May 12, 2022 Some messages translated. Version 21.95.5: May 12, 2022 Some messages translated.
Fixing design of dark theme. (? lines) Fixing design of dark theme. (323506 lines)
Copy the following icons to icon public directory: Copy the following icons to icon public directory:
sudo cp icon/y30x1.png /var/www/html/swad/icon/ sudo cp icon/y30x1.png /var/www/html/swad/icon/
sudo cp icon/y30x30.png /var/www/html/swad/icon/ sudo cp icon/y30x30.png /var/www/html/swad/icon/

View File

@ -2217,7 +2217,7 @@ static void Enr_ShowEnrolmentRequestsGivenRoles (unsigned RolesSelected)
HTM_TD_End (); HTM_TD_End ();
/***** Link to course *****/ /***** Link to course *****/
HTM_TD_Begin ("LT DAT_%s",The_GetSuffix ()); HTM_TD_Begin ("class=\"LT DAT_%s\"",The_GetSuffix ());
Crs_GetDataOfCourseByCod (&Crs); Crs_GetDataOfCourseByCod (&Crs);
Deg.DegCod = Crs.DegCod; Deg.DegCod = Crs.DegCod;

View File

@ -392,7 +392,8 @@ static void Sta_PutFormCrsHits (struct Sta_Stats *Stats)
HTM_BR (); HTM_BR ();
/***** Option b) Listing of detailed clicks to this course *****/ /***** Option b) Listing of detailed clicks to this course *****/
HTM_LABEL_Begin (NULL); HTM_LABEL_Begin ("class=\"FORM_IN_%s\"",
The_GetSuffix ());
HTM_INPUT_RADIO ("GroupedOrDetailed",false, HTM_INPUT_RADIO ("GroupedOrDetailed",false,
"value=\"%u\"%s onclick=\"enableDetailedClicks();\"", "value=\"%u\"%s onclick=\"enableDetailedClicks();\"",
(unsigned) Sta_CLICKS_DETAILED, (unsigned) Sta_CLICKS_DETAILED,
@ -406,7 +407,8 @@ static void Sta_PutFormCrsHits (struct Sta_Stats *Stats)
/* Number of rows per page */ /* Number of rows per page */
// To use getElementById in Firefox, it's necessary to have the id attribute // To use getElementById in Firefox, it's necessary to have the id attribute
HTM_LABEL_Begin (NULL); HTM_LABEL_Begin ("class=\"FORM_IN_%s\"",
The_GetSuffix ());
HTM_TxtF ("(%s: ",Txt_results_per_page); HTM_TxtF ("(%s: ",Txt_results_per_page);
HTM_SELECT_Begin (HTM_DONT_SUBMIT_ON_CHANGE, HTM_SELECT_Begin (HTM_DONT_SUBMIT_ON_CHANGE,
"id=\"RowsPage\" name=\"RowsPage\"%s", "id=\"RowsPage\" name=\"RowsPage\"%s",