From ea22b72f0ded030cd30ecc9605dc87a89b4935d9 Mon Sep 17 00:00:00 2001 From: Myriam Delaruelle <Myriam Delaruelle@bdn-un-mdelarue.ad.univ-lorraine.fr> Date: Thu, 13 Jan 2022 10:19:15 +0100 Subject: [PATCH] dashboard dropdown font was too small --- templates/dashboard_competencies.mustache | 2 +- templates/dashboard_competency_student.mustache | 4 ++-- templates/dashboard_students.mustache | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/dashboard_competencies.mustache b/templates/dashboard_competencies.mustache index 8e2124c..27525cc 100644 --- a/templates/dashboard_competencies.mustache +++ b/templates/dashboard_competencies.mustache @@ -17,7 +17,7 @@ <span hidden id='competencyid'>{{current_cpt.id}}</span> <div id='student_dropdown' class='iena-dropdown' style='z-index: 1;'> <input type='text' hidden name='competencyid' id='competencyid_sel' class='iena-drop-input-value' value=''> - <input type='text' value='' class='form-control iena-drop-input' style='font-size: .7rem; line-height: 1; width: 300px;' placeholder='{{current_cpt.shortname}}' autocomplete='nope'><button class='btn btn-secondary' id='prevCpt' style='font-size: .8rem;line-height: 1.09; margin-left: 0.5rem;'>Précédent</button><button class='btn btn-secondary' id='nextCpt' style='font-size: .8rem;line-height: 1.09; margin-left: 0.5rem;'>Suivant</button> + <input type='text' value='' class='form-control iena-drop-input' style='width: 300px;' placeholder='{{current_cpt.shortname}}' autocomplete='nope'><button class='btn btn-secondary' id='prevCpt' style='margin-left: 0.5rem;'>Précédent</button><button class='btn btn-secondary' id='nextCpt' style='margin-left: 0.5rem;'>Suivant</button> <div class='iena-droplist' id='competency_list'> {{#course_cpts}} <a href='#' data-value='{{id}}' class='iena-drop-item' style='display: none;'>{{shortname}}</a> diff --git a/templates/dashboard_competency_student.mustache b/templates/dashboard_competency_student.mustache index d895cab..8bfa546 100644 --- a/templates/dashboard_competency_student.mustache +++ b/templates/dashboard_competency_student.mustache @@ -13,8 +13,8 @@ <input type='text' hidden name='studentid' id='studentid_sel' class='iena-drop-input-value' value=''> <div class="form-group" style="margin-bottom:0"> <label for="exampleInputEmail1">Etudiant</label> - <div class="form-inline "><input type='text' value='' class='form-control iena-drop-input' style='font-size: .7rem; line-height: 1; width: 300px;' placeholder='{{student.firstname}} {{student.lastname}}'> - <button class='btn btn-secondary' id='prevStud' style='font-size: .8rem;line-height: 1.09; margin-left: 0.5rem;'>Précédent</button><button class='btn btn-secondary' id='nextStud' style='font-size: .8rem;line-height: 1.09; margin-left: 0.5rem;'>Suivant</button></div> + <div class="form-inline "><input type='text' value='' class='form-control iena-drop-input' style=' width: 300px;' placeholder='{{student.firstname}} {{student.lastname}}'> + <button class='btn btn-secondary' id='prevStud' style=' margin-left: 0.5rem;'>Précédent</button><button class='btn btn-secondary' id='nextStud' style=' margin-left: 0.5rem;'>Suivant</button></div> </div> <div class='iena-droplist' id='student_list'> {{#students}} diff --git a/templates/dashboard_students.mustache b/templates/dashboard_students.mustache index a3c0660..7191db1 100644 --- a/templates/dashboard_students.mustache +++ b/templates/dashboard_students.mustache @@ -12,7 +12,7 @@ <span hidden id='studentid'>{{student.studentid}}</span> <div id='student_dropdown' class='iena-dropdown' style='z-index: 10;'> <input type='text' hidden name='studentid' id='studentid_sel' class='iena-drop-input-value' value=''> - <input type='text' value='' class='form-control iena-drop-input' style='font-size: .7rem; line-height: 1; width: 300px;' placeholder='{{student.firstname}} {{student.lastname}}'><button class='btn btn-secondary' id='prevStud' style='font-size: .8rem;line-height: 1.09; margin-left: 0.5rem;'>Précédent</button><button class='btn btn-secondary' id='nextStud' style='font-size: .8rem;line-height: 1.09; margin-left: 0.5rem;'>Suivant</button> + <input type='text' value='' class='form-control iena-drop-input' style=' width: 300px;' placeholder='{{student.firstname}} {{student.lastname}}'><button class='btn btn-secondary' id='prevStud' style=' margin-left: 0.5rem;'>Précédent</button><button class='btn btn-secondary' id='nextStud' style=' margin-left: 0.5rem;'>Suivant</button> <div class='iena-droplist' id='student_list'> {{#students}} <a href='#' data-value='{{id}}' class='iena-drop-item' style='display: none;'>{{firstname}} {{lastname}}</a> -- GitLab