diff --git a/src/components/Conseil_Classe.js b/src/components/Conseil_Classe.js
index a874fd7..4f1acda 100644
--- a/src/components/Conseil_Classe.js
+++ b/src/components/Conseil_Classe.js
@@ -13,11 +13,11 @@ import MoreVertIcon from '@mui/icons-material/MoreVert';
import Menu from '@mui/material/Menu';
import 'react-tooltip/dist/react-tooltip.css'
import { Tooltip } from 'react-tooltip'
-
+import { format } from 'date-fns'
import fileDownload from 'js-file-download';
import Popup from 'reactjs-popup';
import 'reactjs-popup/dist/index.css';
-
+import { FcDisapprove } from "react-icons/fc";
import fr from 'date-fns/locale/fr';
import { registerLocale } from 'react-datepicker';
import DatePicker from "react-datepicker";
@@ -39,7 +39,8 @@ import { IoMdAddCircle, IoIosRemoveCircleOutline } from "react-icons/io";
import { AiTwotoneSave } from "react-icons/ai";
import Autocomplete from '@mui/material/Autocomplete';
import img_loading_spin from "./../mysy_img/mysy_spin_loading.gif";
-
+import "react-draft-wysiwyg/dist/react-draft-wysiwyg.css";
+import { Editor } from '@tinymce/tinymce-react';
import { gridClasses } from '@mui/x-data-grid';
import Link from '@mui/material/Link';
import { PiDotsThree } from "react-icons/pi";
@@ -57,6 +58,9 @@ import interactionPlugin from "@fullcalendar/interaction";
import allLocales from '@fullcalendar/core/locales-all'
import { CiTrash, CiBoxList } from "react-icons/ci";
+import { CiEdit } from "react-icons/ci";
+import { FaUserAltSlash } from "react-icons/fa";
+import { FcCheckmark } from "react-icons/fc";
import { makeStyles } from "@material-ui/core/styles";
import CancelPresentationIcon from '@mui/icons-material/CancelPresentation';
@@ -77,7 +81,7 @@ import { TbUsersGroup } from "react-icons/tb";
import Module_Jury_Selection_Apprenants from "./Module_Jury_Selection_Apprenants";
import { FcSearch } from "react-icons/fc";
-import { FcViewDetails, FcDisapprove, FcInfo } from "react-icons/fc";
+import { FcInfo } from "react-icons/fc";
import Module_Session_Notes_Classement from "./Module_Session_Notes_Classement";
import { FaBullseye } from "react-icons/fa";
@@ -115,8 +119,8 @@ const useStyles = makeStyles((theme) => ({
const Conseil_Classe = (props) => {
-registerLocale('fr', fr);
-
+ registerLocale('fr', fr);
+
const classes = useStyles();
const history = useHistory();
const [submenu, setsubmenu] = useState("");
@@ -148,7 +152,8 @@ registerLocale('fr', fr);
const [selected_session_id, setselected_session_id] = React.useState("");
- const [selected_jury_cible, setselected_jury_cible] = React.useState("");
+
+ const [selected_jury_cible, setselected_jury_cible] = React.useState("conseil_class");
const [selected_agenda_id, setselected_agenda_id] = React.useState("");
@@ -156,6 +161,8 @@ registerLocale('fr', fr);
const [selected_ue_id, setselected_ue_id] = React.useState("");
+ const [selected_class_groupe_id, setselected_class_groupe_id] = React.useState("");
+
const [selected_ue_code, setselected_ue_code] = React.useState("");
@@ -224,6 +231,7 @@ registerLocale('fr', fr);
const columns_jury = [
{ field: '_id', headerName: '_id', hide: true, Width: 0, disableExport: true, },
+ { field: 'class_id', headerName: 'class_id', hide: true, Width: 0, disableExport: true, },
{ field: 'id', headerName: 'id', hide: true, Width: 0, disableExport: true, },
{ field: 'session_id', headerName: 'session_id', hide: true, Width: 0, disableExport: true, },
{ field: 'chef_jury_id', headerName: 'chef_jury_id', hide: true, Width: 0, disableExport: true, },
@@ -237,7 +245,7 @@ registerLocale('fr', fr);
{ field: 'nb_membre', headerName: 'Nb membres', flex: 1, hide: false, minWidth: 180, renderCell: (params) =>
, },
{ field: 'code_session', headerName: 'Promotion', flex: 1, hide: false, minWidth: 180, renderCell: (params) =>
, },
- { field: 'ue_code', headerName: 'Matière', flex: 1, hide: false, minWidth: 180, renderCell: (params) =>
, },
+ { field: 'ue_code', headerName: 'UE', flex: 1, hide: false, minWidth: 180, renderCell: (params) =>
, },
{
field: "delete", headerName: 'Supprimer', disableExport: true,
@@ -315,7 +323,7 @@ registerLocale('fr', fr);
{ field: '_id', headerName: '_id', hide: true, Width: 0, disableExport: true, },
{ field: 'id', headerName: 'id', hide: true, Width: 0, disableExport: true, },
{
- field: 'leader', headerName: 'Leader', hide: false, Width: 100,
+ field: 'leader', headerName: 'Leader', hide: true, Width: 0, disableExport: true,
renderCell: (cellValues) => {
return (
@@ -336,10 +344,37 @@ registerLocale('fr', fr);
},
},
+
{ field: 'nom', headerName: 'Nom', flex: 1, hide: false, minWidth: 180, renderCell: (params) =>
, },
{ field: 'prenom', headerName: 'Prenom', flex: 1, hide: false, minWidth: 180, renderCell: (params) =>
, },
{ field: 'email', headerName: 'Email', flex: 1, hide: false, minWidth: 180, renderCell: (params) =>
, },
+ {
+ field: 'is_present', headerName: 'Présent', hide: false, Width: 0,
+ renderCell: (cellValues) => {
+ return (
+
{
+
+ Update_Jury_Membres_Presence_Absent(cellValues.row._id, cellValues.row.is_present);
+ }}>
+ {cellValues.row.is_present && String(cellValues.row.is_present) === "1" && }
+ {cellValues.row.is_present && String(cellValues.row.is_present) !== "1" && }
+
+
+ );
+ }
+ },
{ field: 'role', headerName: 'Rôle', flex: 1, hide: false, minWidth: 180, renderCell: (params) =>
, },
+ {
+ field: 'delegue_class', headerName: 'Délég. Classe', hide: false, Width: 50, disableExport: true,
+ renderCell: (cellValues) => {
+ return (
+
+ {cellValues.row.delegue_class && String(cellValues.row.delegue_class) === "1" && "Oui"}
+
+
+ );
+ }
+ },
{
field: "delete", headerName: 'Supprimer', disableExport: true,
@@ -643,15 +678,72 @@ registerLocale('fr', fr);
]
+ function ExpandableCell_50_bg_hiligt_red_color({ value }) {
+ const [expanded, setExpanded] = React.useState(false);
+
+ return (
+
+ {value &&
+
+ {expanded ? value : value.slice(0, 50)}
+ {value.length > 50 && (
+ // eslint-disable-next-line jsx-a11y/anchor-is-valid
+
setExpanded(!expanded)}
+ >
+ {expanded ?
Réduire :
Voir }
+
+ )}
+
}
+
+ {value &&
+
+
+ }
+
+ );
+ }
+
+
const columns_jury_seance_participant = [
{ field: '_id', headerName: '_id', hide: true, Width: 0 },
{ field: 'id', headerName: 'id', hide: true, Width: 0 },
{ field: 'ue_id', headerName: 'ue_id', hide: true, Width: 0 },
{ field: 'ue_code', headerName: 'UE', hide: true, Width: 0 },
- { field: 'email', headerName: 'email', flex: 1, hide: false, minWidth: 180, renderCell: (params) =>
, },
+ { field: 'email', headerName: 'email', flex: 1, hide: false, minWidth: 350, renderCell: (params) =>
, },
{ field: 'nom', headerName: 'nom', flex: 1, hide: false, minWidth: 180, renderCell: (params) =>
, },
{ field: 'prenom', headerName: 'prenom', flex: 1, hide: false, minWidth: 180, renderCell: (params) =>
, },
+ { field: 'jury_apprenant_observation', headerName: 'Observation', width: 200, editable: false, hide: false, renderCell: (params) =>
, align: "left", },
+ { field: 'observation_date', headerName: 'Observ. Date', width: 150, editable: false, hide: false, renderCell: (params) =>
, align: "left", },
+
+ {
+ field: "edit_observation", headerName: 'Edit Obser.', disableExport: true, hide: false,
+ renderCell: (cellValues) => {
+ return (
+
+ {
+ setp_detail_class_conseil_observation(cellValues.row.jury_apprenant_observation);
+ setselected_conseil_class_apprenant_id(cellValues.row._id);
+ setDialog_CLASS_CONSEIL_INFO_open(true);
+ }}>
+
+
+
+
+
+
+
+ );
+ }
+ },
{
@@ -714,6 +806,8 @@ registerLocale('fr', fr);
]
+ const [selected_conseil_class_apprenant_id, setselected_conseil_class_apprenant_id] = useState("");
+
const [working_cellValues, setworking_cellValues] = useState(false);
@@ -894,6 +988,90 @@ registerLocale('fr', fr);
})
}
+
+ const [New_Getall_Partner_Class_Reduice_Fields_result, setNew_Getall_Partner_Class_Reduice_Fields_result] = useState([]);
+
+ const [Getall_Partner_Class_Reduice_Fields_api, setGetall_Partner_Class_Reduice_Fields_api] = useState();
+ const [Getall_Partner_Class_Reduice_Fields_message, setGetall_Partner_Class_Reduice_Fields_message] = useState();
+ const [Getall_Partner_Class_Reduice_Fields_result, setGetall_Partner_Class_Reduice_Fields_result] = useState();
+ function Getall_Partner_Class_Reduice_Fields(event) {
+
+ var form = new FormData();
+ const stored_cookie = getCookie('tokenmysypart');
+ form.append("token", stored_cookie);
+
+ var myurl = process.env.REACT_APP_API_URL + "myclass/api/Get_Partner_All_Class_Few_Fields/";
+
+ axios.post(myurl, form).then(res => {
+
+ if (String(res.data.status) === String("true")) {
+ //console.log(" In Getall_Partner_Class_Reduice_Fields res.data.status = " + res.data.status);
+ //console.log(" In Getall_Partner_Class_Reduice_Fields res.data.message r_class = " + res.data.message);
+ setGetall_Partner_Class_Reduice_Fields_api("true");
+ setGetall_Partner_Class_Reduice_Fields_result(res.data.message);
+ setRows(res.data.message);
+
+ var new_data2 = [];
+ const new_data = res.data.message.map((x) => {
+
+ //---
+ var localid = JSON.parse(x).id;
+ var local_id = JSON.parse(x)._id;
+ var local_external_code = JSON.parse(x).external_code;
+ var local_internal_code = JSON.parse(x).internal_code;
+ var local_internal_url = JSON.parse(x).internal_url;
+
+
+ //---
+ var node = {
+ "_id": local_id,
+ "id": localid,
+ "label": local_external_code,
+ "external_code": local_external_code,
+ "internal_code": local_internal_code,
+ "internal_url": local_internal_url
+ };
+ new_data2.push(node);
+ });
+
+
+ //---
+ var node = {
+ "_id": "",
+ "id": "",
+ "label": "",
+ "external_code": "",
+ "internal_code": "",
+ "internal_url": ""
+ };
+ new_data2.push(node);
+
+
+ if (new_data2.length > 0)
+ setNew_Getall_Partner_Class_Reduice_Fields_result(new_data2);
+
+ }
+ else {
+ setGetall_Partner_Class_Reduice_Fields_api("false");
+ setGetall_Partner_Class_Reduice_Fields_message(res.data.message);
+ // alert(res.data.message)
+ setdisplay_alert_mysy("1");
+ setalert_message(res.data.message);
+ setalert_type("error");
+ }
+
+ }).catch((error) => {
+ console.warn('Not good man :( Getall_Partner_Class_Reduice_Fields = ', error);
+ setGetall_Partner_Class_Reduice_Fields_api("false");
+ // alert(" Impossible de recuperer la liste des formations");
+ setdisplay_alert_mysy("1");
+ setalert_message(" Impossible de recuperer la liste des formations");
+ setalert_type("error");
+ //setmyApimyApiMessage("")
+ })
+ }
+
+
const [Delete_Given_Jury_Apprenant_api, setDelete_Given_Jury_Apprenant_api] = useState();
const [Delete_Given_Jury_Apprenant_message, setDelete_Given_Jury_Apprenant_message] = useState();
const [Delete_Given_Jury_Apprenant_result, setDelete_Given_Jury_Apprenant_result] = useState();
@@ -1041,7 +1219,7 @@ registerLocale('fr', fr);
const stored_cookie = getCookie('tokenmysypart');
form.append("token", stored_cookie);
- var myurl = process.env.REACT_APP_API_URL + "myclass/api/Get_List_Jury/";
+ var myurl = process.env.REACT_APP_API_URL + "myclass/api/Get_List_Conseil_Classe/";
axios.post(myurl, form).then(res => {
@@ -1059,12 +1237,15 @@ registerLocale('fr', fr);
var localid = JSON.parse(x).id;
var local_id = JSON.parse(x)._id;
var local_code = JSON.parse(x).code;
+ var local_class_id = JSON.parse(x).class_id;
var local_description = JSON.parse(x).description;
var local_email_jury = JSON.parse(x).email_jury;
var local_chef_jury_id = JSON.parse(x).chef_jury_id;
var local_chef_jury_nom_prenom = JSON.parse(x).chef_jury_nom_prenom;
var local_nb_membre = JSON.parse(x).nb_membre;
var local_session_id = JSON.parse(x).session_id;
+ var local_class_groupe_id = JSON.parse(x).class_groupe_id;
+ var local_class_groupe_type_groupe = JSON.parse(x).class_groupe_type_groupe;
//---
@@ -1073,12 +1254,15 @@ registerLocale('fr', fr);
"id": localid,
"label": local_code,
"code": local_code,
+ "class_id": local_class_id,
"description": local_description,
"email_jury": local_email_jury,
"chef_jury_id": local_chef_jury_id,
"chef_jury_nom_prenom": local_chef_jury_nom_prenom,
"nb_membre": local_nb_membre,
"session_id": local_session_id,
+ "class_groupe_id": local_class_groupe_id,
+ "class_groupe_type_groupe": local_class_groupe_type_groupe,
};
new_data2.push(node);
});
@@ -1090,12 +1274,15 @@ registerLocale('fr', fr);
"id": "",
"label": "",
"code": "",
+ "class_id": "",
"description": "",
"email_jury": "",
"chef_jury_id": "",
"chef_jury_nom_prenom": "",
"nb_membre": "",
"session_id": "",
+ "class_groupe_id": "",
+ "class_groupe_type_groupe": "",
};
new_data2.push(node);
@@ -1123,7 +1310,8 @@ registerLocale('fr', fr);
const New_Option = [
{ "id": "0", "label": "Supprimer", "value": "supprimer" },
- { "id": "2", "label": "Conv. Membre Jury", "value": "convocation_jury" },
+ { "id": "2", "label": "Conv. Membre conseil classe", "value": "convocation_jury" },
+ { "id": "3", "label": "Procès-verbal", "value": "proces_verbal_conseil_class" },
]
@@ -1135,6 +1323,7 @@ registerLocale('fr', fr);
const New_Option_jury_membre = [
{ "id": "delete_jury_membre", "label": "Supprimer les membres", "value": "delete_jury_membre" },
{ "id": "convocation", "label": "Env. Convocation", "value": "convocation" },
+
{ "id": "", "label": "", "value": "" },
]
const [actionmass_ftion_val, setactionmass_ftion_val] = useState();
@@ -1191,6 +1380,9 @@ registerLocale('fr', fr);
const [history_securite_read, sethistory_securite_read] = useState("");
useEffect(() => {
+ Getall_Partner_Class_Reduice_Fields();
+ Getall_Partner_Session_Reduice_Fields();
+ Getall_Partner_List_UE();
Getall_Training_Employee_No_Filter();
Getall_Partner_Jury();
@@ -1465,7 +1657,7 @@ registerLocale('fr', fr);
}
const New_Option_Filter = [
- { "id": "code", "label": "Code Equipe ", "value": "code" },
+ { "id": "code", "label": "Code Conseil Classe", "value": "code" },
{ "id": "description", "label": "Description ", "value": "description" },
{ "id": "membre", "label": "Nom / Prenom membre ", "value": "membre" },
{ "id": "", "label": "", "value": "" },
@@ -1479,7 +1671,8 @@ registerLocale('fr', fr);
var liste_champs = ['detail_code', 'detail_description', 'detail_email_diffusion', 'detail_responsable', 'detail_session_id',
'detail_jury_matiere', 'detail_jury_cible', 'detail_adresse', 'detail_code_postal', 'detail_ville', 'detail_pays',
- 'detail_site_formation', 'detail_salle']
+ 'detail_site_formation', 'detail_salle', 'detail_ftion', 'detail_class_groupe_type', 'detail_class_groupe',
+ 'detail_debut', 'detail_fin']
for (let i = 0; i < liste_champs.length; i++) {
@@ -1550,17 +1743,33 @@ registerLocale('fr', fr);
if (res.data.message.length > 0) {
var mylocal_groupe = JSON.parse(res.data.message);
+ if (mylocal_groupe.session_id) {
+ Getall_Partner_Groupe_Inscrit(mylocal_groupe.session_id, "");
+ }
+
if (mylocal_groupe.code)
setp_detail_code(mylocal_groupe.code);
else
setp_detail_code("");
+ if (mylocal_groupe.class_id)
+ setp_detail_class_id(mylocal_groupe.class_id);
+ else
+ setp_detail_class_id("");
+
if (mylocal_groupe.email_jury) {
setp_detail_email_jury(mylocal_groupe.email_jury);
} else {
setp_detail_email_jury("");
}
+ if (mylocal_groupe.type_groupe_code) {
+ setselected_type_groupe(mylocal_groupe.type_groupe_code);
+ } else {
+ setselected_type_groupe("");
+ }
+
+
if (mylocal_groupe.session_id) {
setselected_session_id(mylocal_groupe.session_id);
} else {
@@ -1580,6 +1789,14 @@ registerLocale('fr', fr);
setp_detail_chef_jury_id("");
}
+ if (mylocal_groupe.class_groupe_id) {
+ setselected_class_groupe_id(mylocal_groupe.class_groupe_id);
+
+ //console.log(" ### setselected_class_groupe_id = ", mylocal_groupe.class_groupe_id)
+ } else {
+ setselected_class_groupe_id("");
+ }
+
if (mylocal_groupe.adresse) {
setp_detail_adresse(mylocal_groupe.adresse);
@@ -1617,6 +1834,39 @@ registerLocale('fr', fr);
setp_detail_salle("");
}
+ if (mylocal_groupe.jury_date_heure_debut) {
+ setp_detail_jury_date_heure_debut(mylocal_groupe.jury_date_heure_debut);
+ }
+
+ if (mylocal_groupe.jury_date_heure_fin)
+ setp_detail_jury_date_heure_fin(mylocal_groupe.jury_date_heure_fin);
+
+
+ if (mylocal_groupe.jury_observation) {
+ setfield_contenu_observation(mylocal_groupe.jury_observation);
+ } else {
+ setfield_contenu_observation("");
+ }
+
+
+ if (mylocal_groupe.jury_comment) {
+ setfield_contenu_comment(mylocal_groupe.jury_comment);
+ } else {
+ setfield_contenu_comment("");
+ }
+
+ if (mylocal_groupe.jury_recommandation) {
+ setfield_contenu_recommandation(mylocal_groupe.jury_recommandation);
+ } else {
+ setfield_contenu_recommandation("");
+ }
+
+ if (mylocal_groupe.jury_decision) {
+ setfield_contenu_decision(mylocal_groupe.jury_decision);
+ } else {
+ setfield_contenu_decision("");
+ }
+
var new_data2 = [];
const new_data = res.data.message.map((x) => {
@@ -1690,6 +1940,202 @@ registerLocale('fr', fr);
}
+ const [Get_Given_Jury_Data_Without_Member_api, setGet_Given_Jury_Data_Without_Member_api] = useState();
+ const [Get_Given_Jury_Data_Without_Member_message, setGet_Given_Jury_Data_Without_Member_message] = useState();
+ const [Get_Given_Jury_Data_Without_Member_result, setGet_Given_Jury_Data_Without_Member_result] = useState([]);
+ function Get_Given_Jury_Data_Without_Member() {
+ setequipe_data_changed("");
+ setequipe_data_edit_mode("");
+
+
+ var form = new FormData();
+
+ const stored_cookie = getCookie('tokenmysypart');
+ form.append("token", stored_cookie);
+ form.append("_id", selected_id);
+
+
+ var myurl = process.env.REACT_APP_API_URL + "myclass/api/Get_Given_Jury_Without_Members/";
+
+ setLoading(true);
+ axios.post(myurl, form).then(res => {
+
+ if (String(res.data.status) === "true") {
+ setLoading(false);
+ //console.log(" In Get_Given_Jury_Data_Without_Member res.data.status = " + res.data.status);
+ //console.log(" In Get_Given_Jury_Data_Without_Member res.data.message r_class = " + res.data.message);
+ setGet_Given_Jury_Data_Without_Member_api("true");
+ setGet_Given_Jury_Data_Without_Member_result(res.data.message);
+
+ if (res.data.message.length > 0) {
+ var mylocal_groupe = JSON.parse(res.data.message);
+
+ if (mylocal_groupe.session_id) {
+ Getall_Partner_Groupe_Inscrit(mylocal_groupe.session_id, "");
+ }
+
+ if (mylocal_groupe.code)
+ setp_detail_code(mylocal_groupe.code);
+ else
+ setp_detail_code("");
+
+ if (mylocal_groupe.class_id)
+ setp_detail_class_id(mylocal_groupe.class_id);
+ else
+ setp_detail_class_id("");
+
+ if (mylocal_groupe.email_jury) {
+ setp_detail_email_jury(mylocal_groupe.email_jury);
+ } else {
+ setp_detail_email_jury("");
+ }
+
+ if (mylocal_groupe.type_groupe_code) {
+ setselected_type_groupe(mylocal_groupe.type_groupe_code);
+ } else {
+ setselected_type_groupe("");
+ }
+
+
+ if (mylocal_groupe.session_id) {
+ setselected_session_id(mylocal_groupe.session_id);
+ } else {
+ setselected_session_id("");
+ }
+
+
+ if (mylocal_groupe.description) {
+ setp_detail_description(mylocal_groupe.description);
+ } else {
+ setp_detail_description("");
+ }
+
+ if (mylocal_groupe.chef_jury_id) {
+ setp_detail_chef_jury_id(mylocal_groupe.chef_jury_id);
+ } else {
+ setp_detail_chef_jury_id("");
+ }
+
+ if (mylocal_groupe.class_groupe_id) {
+ setselected_class_groupe_id(mylocal_groupe.class_groupe_id);
+
+ //console.log(" ### setselected_class_groupe_id = ", mylocal_groupe.class_groupe_id)
+ } else {
+ setselected_class_groupe_id("");
+ }
+
+
+ if (mylocal_groupe.adresse) {
+ setp_detail_adresse(mylocal_groupe.adresse);
+ } else {
+ setp_detail_adresse("");
+ }
+
+ if (mylocal_groupe.code_postal) {
+ setp_detail_code_postal(mylocal_groupe.code_postal);
+ } else {
+ setp_detail_code_postal("");
+ }
+
+ if (mylocal_groupe.ville) {
+ setp_detail_ville(mylocal_groupe.ville);
+ } else {
+ setp_detail_ville("");
+ }
+
+ if (mylocal_groupe.pays) {
+ setp_detail_pays(mylocal_groupe.pays);
+ } else {
+ setp_detail_pays("");
+ }
+
+ if (mylocal_groupe.site_formation_id) {
+ setp_detail_site_formation_id(mylocal_groupe.site_formation_id);
+ } else {
+ setp_detail_site_formation_id("");
+ }
+
+ if (mylocal_groupe.jury_salle) {
+ setp_detail_salle(mylocal_groupe.jury_salle);
+ } else {
+ setp_detail_salle("");
+ }
+
+ if (mylocal_groupe.jury_date_heure_debut) {
+ setp_detail_jury_date_heure_debut(mylocal_groupe.jury_date_heure_debut);
+ }
+
+ if (mylocal_groupe.jury_date_heure_fin)
+ setp_detail_jury_date_heure_fin(mylocal_groupe.jury_date_heure_fin);
+
+
+ if (mylocal_groupe.jury_observation) {
+ setfield_contenu_observation(mylocal_groupe.jury_observation);
+ } else {
+ setfield_contenu_observation("");
+ }
+
+
+ if (mylocal_groupe.jury_comment) {
+ setfield_contenu_comment(mylocal_groupe.jury_comment);
+ } else {
+ setfield_contenu_comment("");
+ }
+
+ if (mylocal_groupe.jury_recommandation) {
+ setfield_contenu_recommandation(mylocal_groupe.jury_recommandation);
+ } else {
+ setfield_contenu_recommandation("");
+ }
+
+ if (mylocal_groupe.jury_decision) {
+ setfield_contenu_decision(mylocal_groupe.jury_decision);
+ } else {
+ setfield_contenu_decision("");
+ }
+
+
+
+ if (document.getElementById('myRef')) {
+ var divh = document.getElementById('myRef').offsetTop;
+ window.scrollTo({
+ top: divh,
+ behavior: "smooth",
+ });
+ }
+
+ Disable_Jury_DetailFields();
+ } else {
+ alert(" Aucune donnée recuperée");
+ }
+
+
+ } else if (String(res.data.status) === String("Err_Connexion")) {
+ alert('Erreur: ' + res.data.message);
+ history.push("/Connexion");
+ }
+
+ else {
+ setLoading(false);
+ setGet_Given_Jury_Data_Without_Member_api("false");
+ setGet_Given_Jury_Data_Without_Member_message(res.data.message);
+ // alert(res.data.message);
+ setdisplay_alert_mysy("1");
+ setalert_message(res.data.message);
+ setalert_type("error");
+ }
+
+ }).catch((error) => {
+ console.warn('Not good man :( Get_Given_Jury_Data_Without_Member = ', error);
+ setGet_Given_Jury_Data_Without_Member_api("false");
+ alert(" Impossible de recuperer les données du jurys");
+ //setmyApimyApiMessage("")
+ })
+ }
+
+
+
+
function clean_all_filters() {
setgridline_id('');
setp_filtre1("");
@@ -1724,6 +2170,7 @@ registerLocale('fr', fr);
form.append("token", stored_cookie);
form.append("code", p_detail_code);
+ form.append("class_id", p_detail_class_id);
form.append("session_id", selected_session_id);
form.append("description", p_detail_description);
form.append("email_jury", p_detail_email_jury);
@@ -1732,6 +2179,8 @@ registerLocale('fr', fr);
form.append("cible", selected_jury_cible);
form.append("ue_id", selected_ue_id);
+ form.append("class_groupe_id", selected_class_groupe_id);
+
form.append("adresse", p_detail_adresse);
form.append("adresse", p_detail_adresse);
form.append("code_postal", p_detail_code_postal);
@@ -1741,13 +2190,63 @@ registerLocale('fr', fr);
form.append("jury_salle", p_detail_salle);
+ var observation = "";
+ if (editorRef_observation.current) {
+ observation = editorRef_observation.current.getContent();
+ }
+ form.append("jury_observation", observation);
+
+ var commentaire = "";
+ if (editorRef_comment.current) {
+ commentaire = editorRef_comment.current.getContent();
+ }
+ form.append("jury_comment", commentaire);
+
+ var recommandation = "";
+ if (editorRef_recommandation.current) {
+ recommandation = editorRef_recommandation.current.getContent();
+ }
+ form.append("jury_recommandation", recommandation);
+
+ var decision = "";
+ if (editorRef_decision.current) {
+ decision = editorRef_decision.current.getContent();
+ }
+ form.append("jury_decision", decision);
+
+
+
+ var new_p_detail_jury_date_heure_debut = "";
+ if (typeof p_detail_jury_date_heure_debut == "object") {
+ var act_deadline = format(p_detail_jury_date_heure_debut, 'dd/MM/yyyy HH:mm');
+ new_p_detail_jury_date_heure_debut = act_deadline;
+ } else {
+ new_p_detail_jury_date_heure_debut = p_detail_jury_date_heure_debut;
+ }
+ form.append("jury_date_heure_debut", new_p_detail_jury_date_heure_debut);
+
+
+
+ var new_p_detail_jury_date_heure_fin = "";
+ if (typeof p_detail_jury_date_heure_fin == "object") {
+ var act_deadline = format(p_detail_jury_date_heure_fin, 'dd/MM/yyyy HH:mm');
+ new_p_detail_jury_date_heure_fin = act_deadline;
+ } else {
+ new_p_detail_jury_date_heure_fin = p_detail_jury_date_heure_fin;
+ }
+
+ form.append("jury_date_heure_fin", new_p_detail_jury_date_heure_fin);
+
+
+
+
var myurl = "";
if (selected_id && String(selected_id).length > 5) {
form.append("_id", selected_id);
- myurl = process.env.REACT_APP_API_URL + "myclass/api/Update_Jury/";
+ myurl = process.env.REACT_APP_API_URL + "myclass/api/Update_Conseil_Class/";
} else {
- myurl = process.env.REACT_APP_API_URL + "myclass/api/Add_Jury/";
+ myurl = process.env.REACT_APP_API_URL + "myclass/api/Add_Conseil_Class/";
}
@@ -1831,6 +2330,130 @@ registerLocale('fr', fr);
}
+
+ const [Add_Update_Jury_Deliberation_api, setAdd_Update_Jury_Deliberation_api] = useState();
+ const [Add_Update_Jury_Deliberation_message, setAdd_Update_Jury_Deliberation_message] = useState();
+ const [Add_Update_Jury_Deliberation_result, setAdd_Update_Jury_Deliberation_result] = useState([]);
+ function Add_Update_Jury_Deliberation() {
+ var form = new FormData();
+ //form.append("token","K3cw63eKokKSbV4spjQ48SUNnfy80yrXfA");
+
+
+ const stored_cookie = getCookie('tokenmysypart');
+ form.append("token", stored_cookie);
+ form.append("_id", selected_id);
+
+
+ var observation = "";
+ if (editorRef_observation.current) {
+ observation = editorRef_observation.current.getContent();
+ }
+ form.append("jury_observation", observation);
+
+ var commentaire = "";
+ if (editorRef_comment.current) {
+ commentaire = editorRef_comment.current.getContent();
+ }
+ form.append("jury_comment", commentaire);
+
+ var recommandation = "";
+ if (editorRef_recommandation.current) {
+ recommandation = editorRef_recommandation.current.getContent();
+ }
+ form.append("jury_recommandation", recommandation);
+
+
+ var decision = "";
+ if (editorRef_decision.current) {
+ decision = editorRef_decision.current.getContent();
+ }
+ form.append("jury_decision", decision);
+
+
+ var myurl = process.env.REACT_APP_API_URL + "myclass/api/Update_Conseil_Class/";
+
+
+
+ setLoading(true);
+ axios.post(myurl, form).then(res => {
+ //console.log(" In Add_Update_Jury_Deliberation res.data.status = " + res.data.status);
+ //console.log(" In Add_Update_Jury_Deliberation res.data.message r_class = " + res.data.message);
+
+ setLoading(false);
+
+ if (String(res.data.status) === String("true")) {
+ setAdd_Update_Jury_Deliberation_api("true");
+ setAdd_Update_Jury_Deliberation_result(res.data.message);
+ Disable_Jury_DetailFields();
+ setequipe_data_changed("");
+ setequipe_data_edit_mode("");
+ clear_DetailFieds();
+
+ if (selected_id && String(selected_id).length > 5) {
+ handleClick_edit_jury_From_Line(gridline_id);
+ Disable_Jury_DetailFields();
+ setequipe_data_changed("");
+ setequipe_data_edit_mode("");
+
+ setdisplay_jury('1');
+ if (document.getElementById('myRef')) {
+ // myRef.current.scrollIntoView({ behavior: "smooth" });
+ var divh = document.getElementById('myRef').offsetTop;
+ window.scrollTo({
+ top: divh,
+ behavior: "smooth",
+ });
+ }
+
+ } else {
+ Disable_Jury_DetailFields();
+ setequipe_data_changed("");
+ setequipe_data_edit_mode("");
+ setdisplay_jury("");
+ setadd_one_jury("");
+ setsubmenu("");
+
+
+ window.scrollTo({
+ top: 0,
+ behavior: "smooth",
+ });
+
+ }
+
+
+ Getall_Partner_Jury();
+
+
+ // alert(res.data.message);
+ setdisplay_alert_mysy("1");
+ setalert_message(res.data.message);
+ setalert_type("success");
+
+
+
+ }
+ else {
+ setAdd_Update_Jury_Deliberation_api("false");
+ setAdd_Update_Jury_Deliberation_message(res.data.message);
+ // alert(res.data.message);
+ setdisplay_alert_mysy("1");
+ setalert_message(res.data.message);
+ setalert_type("error");
+ }
+
+ }).catch((error) => {
+ setLoading(false);
+
+ console.log('UpdateStagiaireData : Not good man :( Add_Update_Jury_Deliberation = ' + error);
+ setAdd_Update_Jury_Deliberation_api("false");
+ alert(" Impossible d'ajouter ou mettre à jour les données de déliberation ");
+
+ })
+ }
+
+
+
const [Add_Update_Jury_Soutenance_Data_api, setAdd_Update_Jury_Soutenance_Data_api] = useState();
const [Add_Update_Jury_Soutenance_Data_message, setAdd_Update_Jury_Soutenance_Data_message] = useState();
const [Add_Update_Jury_Soutenance_Data_result, setAdd_Update_Jury_Soutenance_Data_result] = useState([]);
@@ -1906,20 +2529,26 @@ registerLocale('fr', fr);
tab_rh_ids.push(local_rh_id);
}
-
var form = new FormData();
const stored_cookie = getCookie('tokenmysypart');
form.append("token", stored_cookie);
form.append("_id", selected_id);
- form.append("tab_ressource_humaine_ids", tab_rh_ids);
form.append("role", p_detail_member_role);
+ var myurl = "";
+ //console.log(" ### tab_rh_ids = ", tab_rh_ids);
- var myurl = process.env.REACT_APP_API_URL + "myclass/api/Add_Update_Jury_Membres/";
+ if (selected_type_membre_to_add === "delege_class") {
+ form.append("tab_inscription_ids", tab_rh_ids);
+ myurl = process.env.REACT_APP_API_URL + "myclass/api/Add_Update_Jury_Delegue_Membres/";
+ } else {
+ form.append("tab_ressource_humaine_ids", tab_rh_ids);
+ myurl = process.env.REACT_APP_API_URL + "myclass/api/Add_Update_Jury_Membres/";
+ }
setLoading(true);
axios.post(myurl, form).then(res => {
@@ -1967,88 +2596,53 @@ registerLocale('fr', fr);
}
- const [Add_Apprenant_To_Jury_api, setAdd_Apprenant_To_Jury_api] = useState();
- const [Add_Apprenant_To_Jury_message, setAdd_Apprenant_To_Jury_message] = useState();
- const [Add_Apprenant_To_Jury_result, setAdd_Apprenant_To_Jury_result] = useState([]);
- function Add_Apprenant_To_Jury() {
-
- var tab_inscrit_ids = [];
- for (var i = 0; i < tab_selected_apprenant.length; i++) {
-
- var local_rh_id = tab_selected_apprenant[i]._id;
- tab_inscrit_ids.push(local_rh_id);
- }
-
- if (moment(endDate) <= moment(startDate)) {
- // alert(" Les dates de début et de fin sont incohérentes");
- setdisplay_alert_mysy("1");
- setalert_message("Les dates de début et de fin sont incohérentes");
- setalert_type("error");
- return;
- }
-
- var new_start_date = moment(startDate).format();
- var new_end_date = moment(endDate).format();
-
-
+ const [Update_Jury_Membres_Presence_Absent_api, setUpdate_Jury_Membres_Presence_Absent_api] = useState();
+ const [Update_Jury_Membres_Presence_Absent_message, setUpdate_Jury_Membres_Presence_Absent_message] = useState();
+ const [Update_Jury_Membres_Presence_Absent_result, setUpdate_Jury_Membres_Presence_Absent_result] = useState([]);
+ function Update_Jury_Membres_Presence_Absent(local_tab_jury_membre_ids, local_current_present_status) {
var form = new FormData();
-
const stored_cookie = getCookie('tokenmysypart');
form.append("token", stored_cookie);
- form.append("_id", selected_id);
- form.append("tab_inscriptions_ids", tab_inscrit_ids);
- form.append("agenda_id", selected_agenda_id);
- form.append("jury_soutenance_id", selected_jury_soutenance_id);
- form.append("jury_seance_ue_id", jury_seance_ue_id);
+ form.append("jury_id", selected_id);
+ form.append("tab_jury_membre_ids", local_tab_jury_membre_ids);
+ if (local_current_present_status === "1")
+ form.append("is_present", "0");
+ else
+ form.append("is_present", "1");
- form.append("event_start", new_start_date);
- form.append("event_end", new_end_date);
+ var myurl = process.env.REACT_APP_API_URL + "myclass/api/Update_Jury_Membres_Presence/";
- form.append("jury_soutenance_salle", p_detail_soutenance_salle);
- form.append("jury_soutenance_adresse", p_detail_soutenance_adresse);
- form.append("jury_soutenance_code_postal", p_detail_soutenance_code_postal);
- form.append("jury_soutenance_ville", p_detail_soutenance_ville);
- form.append("jury_soutenance_pays", p_detail_soutenance_pays);
-
-
- Dialog_Jury_Membre_handleClose_buton();
-
-
- var myurl = process.env.REACT_APP_API_URL + "myclass/api/Add_Update_Apprenant_To_Jury/";
setLoading(true);
axios.post(myurl, form).then(res => {
-
- //console.log(" In Add_Apprenant_To_Jury res.data.status = " + res.data.status);
- //console.log(" In Add_Apprenant_To_Jury res.data.message r_class = " + res.data.message);
+ //console.log(" In Update_Jury_Membres_Presence_Absent res.data.status = " + res.data.status);
+ //console.log(" In Update_Jury_Membres_Presence_Absent res.data.message r_class = " + res.data.message);
setLoading(false);
if (String(res.data.status) === String("true")) {
+ setUpdate_Jury_Membres_Presence_Absent_api("true");
+ setUpdate_Jury_Membres_Presence_Absent_result(res.data.message);
+ Disable_Jury_DetailFields();
+ setequipe_data_changed("");
+ setequipe_data_edit_mode("");
+ clear_DetailFieds();
- //console.log(" In Add_Apprenant_To_Jury res.data.message r_class = ", res.data);
- setselected_agenda_id(res.data.agenda_id);
- setselected_jury_soutenance_id(res.data.soutenance_id);
-
- setAdd_Apprenant_To_Jury_api("true");
- setAdd_Apprenant_To_Jury_result(res.data.message);
-
- Get_Jury_List_Apprenant_Seance(res.data.agenda_id, res.data.soutenance_id);
- Get_List_Agenda_Events_For_Given_User(selected_id);
-
-
+ Get_Given_Jury_Data(selected_id);
+ // alert(res.data.message);
setdisplay_alert_mysy("1");
setalert_message(res.data.message);
setalert_type("success");
- settab_selected_apprenant([]);
+
+
}
else {
- setAdd_Apprenant_To_Jury_api("false");
- setAdd_Apprenant_To_Jury_message(res.data.message);
+ setUpdate_Jury_Membres_Presence_Absent_api("false");
+ setUpdate_Jury_Membres_Presence_Absent_message(res.data.message);
// alert(res.data.message);
setdisplay_alert_mysy("1");
setalert_message(res.data.message);
@@ -2058,14 +2652,91 @@ registerLocale('fr', fr);
}).catch((error) => {
setLoading(false);
- console.log('UpdateStagiaireData : Not good man :( Add_Apprenant_To_Jury = ' + error);
- setAdd_Apprenant_To_Jury_api("false");
- alert(" Impossible d'ajouter les membre ou mettre à jour les apprenants du jury");
+ console.log('UpdateStagiaireData : Not good man :( Update_Jury_Membres_Presence_Absent = ' + error);
+ setUpdate_Jury_Membres_Presence_Absent_api("false");
+ alert(" Impossible d'ajouter la présence du membre");
})
}
+
+ const [Add_Apprenant_To_Conseil_Classe_api, setAdd_Apprenant_To_Conseil_Classe_api] = useState();
+ const [Add_Apprenant_To_Conseil_Classe_message, setAdd_Apprenant_To_Conseil_Classe_message] = useState();
+ const [Add_Apprenant_To_Conseil_Classe_result, setAdd_Apprenant_To_Conseil_Classe_result] = useState([]);
+ function Add_Apprenant_To_Conseil_Classe() {
+
+ var tab_inscrit_ids = [];
+ for (var i = 0; i < tab_selected_apprenant.length; i++) {
+
+ var local_rh_id = tab_selected_apprenant[i]._id;
+ tab_inscrit_ids.push(local_rh_id);
+ }
+
+
+ var form = new FormData();
+
+
+ const stored_cookie = getCookie('tokenmysypart');
+ form.append("token", stored_cookie);
+ form.append("_id", selected_id);
+ form.append("tab_inscriptions_ids", tab_inscrit_ids);
+
+
+
+ Dialog_Jury_Membre_handleClose_buton();
+
+
+ var myurl = process.env.REACT_APP_API_URL + "myclass/api/Add_Update_Apprenant_To_Conseil_Class/";
+
+ setLoading(true);
+ axios.post(myurl, form).then(res => {
+
+ //console.log(" In Add_Apprenant_To_Conseil_Classe res.data.status = " + res.data.status);
+ //console.log(" In Add_Apprenant_To_Conseil_Classe res.data.message r_class = " + res.data.message);
+
+ setLoading(false);
+
+ if (String(res.data.status) === String("true")) {
+
+ //console.log(" In Add_Apprenant_To_Conseil_Classe res.data.message r_class = ", res.data);
+ setselected_agenda_id(res.data.agenda_id);
+ setselected_jury_soutenance_id(res.data.soutenance_id);
+
+ setAdd_Apprenant_To_Conseil_Classe_api("true");
+ setAdd_Apprenant_To_Conseil_Classe_result(res.data.message);
+
+ Get_Jury_List_Apprenant_Seance(res.data.agenda_id, res.data.soutenance_id);
+ Get_List_Agenda_Events_For_Given_User(selected_id);
+
+ settab_selected_apprenant([]);
+ Get_Conseil_Class_List_Apprenant_Not_Added();
+
+ setdisplay_alert_mysy("1");
+ setalert_message(res.data.message);
+ setalert_type("success");
+
+ settab_selected_apprenant([]);
+ }
+ else {
+ setAdd_Apprenant_To_Conseil_Classe_api("false");
+ setAdd_Apprenant_To_Conseil_Classe_message(res.data.message);
+ // alert(res.data.message);
+ setdisplay_alert_mysy("1");
+ setalert_message(res.data.message);
+ setalert_type("error");
+ }
+
+ }).catch((error) => {
+ setLoading(false);
+
+ console.log('UpdateStagiaireData : Not good man :( Add_Apprenant_To_Conseil_Classe = ' + error);
+ setAdd_Apprenant_To_Conseil_Classe_api("false");
+ alert(" Impossible d'ajouter ou mettre à jour les apprenants du conseil de classe");
+
+ })
+ }
+
async function submenu_detail() {
setsubmenu("detail_conseil_classe");
@@ -2090,6 +2761,34 @@ registerLocale('fr', fr);
}
+ async function submenu_apprenants() {
+
+ setsubmenu("apprenant");
+ inactive_active_menu_header("apprenant");
+
+
+ if (String(equipe_data_edit_mode) !== "1") {
+ Disable_Jury_DetailFields();
+ }
+
+ Get_Jury_List_Apprenant_Seance("", "");
+
+ }
+
+ async function submenu_deliberation() {
+
+ setedit_deliberation_fields(0);
+ setsubmenu("deliberation");
+ inactive_active_menu_header("deliberation");
+
+
+ if (String(equipe_data_edit_mode) !== "1") {
+ Disable_Jury_DetailFields();
+ }
+
+ }
+
+
async function submenu_piece_jointe() {
setsubmenu("piece_jointe");
@@ -2146,8 +2845,8 @@ registerLocale('fr', fr);
// Cette fontion desactive tous les menu header et reactive just le menu_header concerné
function inactive_active_menu_header(current_menu_header) {
-
- const list_menu_header_names = ['detail_conseil_classe', 'membre', 'piece_jointe', 'historique', 'planning', 'selection']
+ const list_menu_header_names = ['detail_conseil_classe', 'membre', 'piece_jointe', 'historique', 'planning', 'selection',
+ 'apprenant', 'deliberation']
for (let i = 0; i < list_menu_header_names.length; i++) {
if (document.getElementsByName(String(list_menu_header_names[i])) && document.getElementsByName(String(list_menu_header_names[i]))[0]) {
document.getElementsByName(String(list_menu_header_names[i]))[0].style.fontWeight = "400";
@@ -2349,11 +3048,15 @@ registerLocale('fr', fr);
function Enable_Jury_DetailFields() {
+
+ Getall_Partner_Session_Reduice_Fields();
+
setequipe_data_edit_mode("1");
var liste_champs = ['detail_code', 'detail_description', 'detail_email_diffusion', 'detail_responsable', 'detail_session_id',
'detail_jury_matiere', 'detail_jury_cible', 'detail_adresse', 'detail_code_postal', 'detail_ville', 'detail_pays',
- 'detail_site_formation', 'detail_salle']
+ 'detail_site_formation', 'detail_salle', 'detail_ftion', 'detail_class_groupe_type', 'detail_class_groupe',
+ 'detail_debut', 'detail_fin']
for (let i = 0; i < liste_champs.length; i++) {
if (document.getElementsByName(String(liste_champs[i])) && document.getElementsByName(String(liste_champs[i]))[0]) {
@@ -2397,6 +3100,14 @@ registerLocale('fr', fr);
}
+ const [edit_deliberation_fields, setedit_deliberation_fields] = useState(0);
+
+
+ function Enable_conseil_class_deliberation_DetailFields() {
+ setedit_deliberation_fields(1);
+
+ }
+
function Annule_Jury_Soutenance_DetailFields() {
@@ -2413,6 +3124,8 @@ registerLocale('fr', fr);
const [p_detail_email_jury, setp_detail_email_jury] = React.useState("");
const [p_detail_chef_jury_id, setp_detail_chef_jury_id] = React.useState("");
+ const [p_detail_jury_date_heure_debut, setp_detail_jury_date_heure_debut] = useState(new Date());
+ const [p_detail_jury_date_heure_fin, setp_detail_jury_date_heure_fin] = useState(new Date());
const [p_detail_site_formation_id, setp_detail_site_formation_id] = React.useState("");
@@ -2438,10 +3151,16 @@ registerLocale('fr', fr);
function clear_DetailFieds() {
setp_detail_code("");
+ setp_detail_class_id("");
setp_detail_description("");
setselected_session_id("");
setp_detail_email_jury("");
setp_detail_chef_jury_id("");
+ setselected_class_groupe_id("");
+
+ setp_detail_jury_date_heure_debut(new Date());
+ setp_detail_jury_date_heure_fin(new Date());
+
setp_detail_adresse("");
setp_detail_code_postal("");
@@ -2515,7 +3234,7 @@ registerLocale('fr', fr);
if (String(res.data.status) === String("true")) {
//console.log(" In Getall_Partner_Jury_With_Filter res.data.status = " + res.data.status);
- //console.log(" In Getall_Partner_Jury_With_Filter res.data.message r_class = " + res.data.message);
+ console.log(" In Getall_Partner_Jury_With_Filter res.data.message r_class = " + res.data.message);
setGetall_Partner_Jury_With_Filter_api("true");
setGetall_Partner_Jury_With_Filter_result(res.data.message);
@@ -2527,6 +3246,8 @@ registerLocale('fr', fr);
//---
var localid = JSON.parse(x).id;
var local_id = JSON.parse(x)._id;
+ var local_class_id = JSON.parse(x).class_id;
+ var local_session_id = JSON.parse(x).session_id;
var local_code = JSON.parse(x).code;
var local_description = JSON.parse(x).description;
var local_email_jury = JSON.parse(x).email_jury;
@@ -2540,6 +3261,8 @@ registerLocale('fr', fr);
"_id": local_id,
"id": localid,
"label": local_code,
+ "class_id": local_class_id,
+ "session_id": local_session_id,
"code": local_code,
"description": local_description,
"email_jury": local_email_jury,
@@ -2556,6 +3279,8 @@ registerLocale('fr', fr);
"_id": "",
"id": "",
"label": "",
+ "class_id": "",
+ "session_id": "",
"code": "",
"description": "",
"email_jury": "",
@@ -3217,9 +3942,19 @@ registerLocale('fr', fr);
{ "id": "2", "label": "Groupe TP", "value": "grp_tp" },
]
+
+ const New_Option_Type_Membre = [
+ { "id": "employe", "label": "Employé", "value": "employe" },
+ { "id": "delege_class", "label": "Délégue de classe", "value": "delege_class" },
+ ]
+
+
+
+ const [selected_type_membre_to_add, setselected_type_membre_to_add] = useState("");
+
+
+
const New_Option_Cible_Jury = [
- { "id": "soutenance", "label": "Jury Soutenance", "value": "soutenance" },
- { "id": "examen", "label": "Jury Examen", "value": "examen" },
{ "id": "conseil_class", "label": "Conseil Classe", "value": "conseil_class" },
{ "id": "", "label": "", "value": "" },
]
@@ -3430,6 +4165,7 @@ registerLocale('fr', fr);
const stored_cookie = getCookie('tokenmysypart');
form.append("token", stored_cookie);
form.append("archive", "0");
+ form.append("type_session", "1");
var myurl = process.env.REACT_APP_API_URL + "myclass/api/GetAllValideSessionPartner_List/";
@@ -3672,6 +4408,290 @@ registerLocale('fr', fr);
}
+ const [New_Get_Conseil_Class_List_Apprenant_Not_Added_insc_result, setNew_Get_Conseil_Class_List_Apprenant_Not_Added_insc_result] = useState([])
+
+ const [Get_Conseil_Class_List_Apprenant_Not_Added_insc_api, setGet_Conseil_Class_List_Apprenant_Not_Added_insc_api] = useState();
+ const [Get_Conseil_Class_List_Apprenant_Not_Added_insc_meassage, setGet_Conseil_Class_List_Apprenant_Not_Added_insc_meassage] = useState();
+ const [Get_Conseil_Class_List_Apprenant_Not_Added_insc_result, setGet_Conseil_Class_List_Apprenant_Not_Added_insc_result] = useState([])
+ function Get_Conseil_Class_List_Apprenant_Not_Added() {
+
+ var form = new FormData();
+ //form.append("token","K3cw63eKokKSbV4spjQ48SUNnfy80yrXfA");
+ const stored_cookie = getCookie('tokenmysypart');
+ form.append("token", stored_cookie);
+ form.append("jury_id", selected_id);
+ form.append("session_id", selected_session_id);
+
+
+
+ // console.log(" #### OKKKK ")
+ setLoading(true);
+ var myurl = process.env.REACT_APP_API_URL + "myclass/api/Get_List_Inscrit_Not_In_jury_apprenant/";
+
+ fetch(myurl,
+ {
+ method: 'POST',
+ body: form,
+ })
+ .then((data) => data.json())
+ .then((data) => {
+ setLoading(false);
+ // console.log(' Get_Conseil_Class_List_Apprenant_Not_Added : Success:', data['message'], "data['status'] = ", data['status']);
+
+
+ if (String(data['status']) === String("true")) {
+ setGet_Conseil_Class_List_Apprenant_Not_Added_insc_result(data['message']);
+ //console.log("erreur rrrr:" + data['status'])
+ setGet_Conseil_Class_List_Apprenant_Not_Added_insc_api("true");
+
+ var new_data2 = [];
+ const new_data = data['message'].map((x) => {
+
+ //---
+ var localid = JSON.parse(x).id;
+ var local_id = JSON.parse(x).inscrit_id;
+ var apprenant_nom = JSON.parse(x).nom;
+ var apprenant_prenom = JSON.parse(x).prenom;
+ var apprenant_email = JSON.parse(x).email;
+
+ //---
+ var node = {
+ "_id": local_id,
+ "id": localid,
+ "label": apprenant_nom + " " + apprenant_prenom,
+ "apprenant_nom": apprenant_nom,
+ "apprenant_prenom": apprenant_prenom,
+ "apprenant_email": apprenant_email,
+
+ };
+ new_data2.push(node);
+ });
+
+ //---
+ var node = {
+ "_id": "",
+ "id": "",
+ "label": "",
+ "apprenant_nom": "",
+ "apprenant_prenom": "",
+ "apprenant_email": "",
+
+ };
+ new_data2.push(node);
+
+ if (new_data2.length > 0)
+ setNew_Get_Conseil_Class_List_Apprenant_Not_Added_insc_result(new_data2);
+
+
+ } else if (String(data['status']) === String("Err_Connexion")) {
+ alert('Erreur: ' + data['message']);
+ history.push("/Connexion");
+ }
+ else {
+ setGet_Conseil_Class_List_Apprenant_Not_Added_insc_api("false");
+
+ }
+
+ }).catch((error) => {
+ setLoading(false);
+ console.error('Error:', error);
+ setGet_Conseil_Class_List_Apprenant_Not_Added_insc_api("false");
+ });
+
+ }
+
+
+ const [New_Get_Conseil_Class_List_Membres_Not_Added_insc_result, setNew_Get_Conseil_Class_List_Membres_Not_Added_insc_result] = useState([])
+
+ const [Get_Conseil_Class_List_Membres_Not_Added_insc_api, setGet_Conseil_Class_List_Membres_Not_Added_insc_api] = useState();
+ const [Get_Conseil_Class_List_Membres_Not_Added_insc_meassage, setGet_Conseil_Class_List_Membres_Not_Added_insc_meassage] = useState();
+ const [Get_Conseil_Class_List_Membres_Not_Added_insc_result, setGet_Conseil_Class_List_Membres_Not_Added_insc_result] = useState([])
+ function Get_Conseil_Class_List_Membres_Not_Added() {
+
+ var form = new FormData();
+ //form.append("token","K3cw63eKokKSbV4spjQ48SUNnfy80yrXfA");
+ const stored_cookie = getCookie('tokenmysypart');
+ form.append("token", stored_cookie);
+ form.append("jury_id", selected_id);
+
+
+ // console.log(" #### OKKKK ")
+ setLoading(true);
+ var myurl = process.env.REACT_APP_API_URL + "myclass/api/Get_List_RH_Not_In_jury_membre/";
+
+ fetch(myurl,
+ {
+ method: 'POST',
+ body: form,
+ })
+ .then((data) => data.json())
+ .then((data) => {
+ setLoading(false);
+ // console.log(' Get_Conseil_Class_List_Membres_Not_Added : Success:', data['message'], "data['status'] = ", data['status']);
+
+
+ if (String(data['status']) === String("true")) {
+ setGet_Conseil_Class_List_Membres_Not_Added_insc_result(data['message']);
+ //console.log("erreur rrrr:" + data['status'])
+ setGet_Conseil_Class_List_Membres_Not_Added_insc_api("true");
+
+ var new_data2 = [];
+ const new_data = data['message'].map((x) => {
+
+ //---
+ var localid = JSON.parse(x).id;
+ var local_id = JSON.parse(x)._id;
+ var nom = JSON.parse(x).nom;
+ var prenom = JSON.parse(x).prenom;
+ var email = JSON.parse(x).email;
+ var ismanager = JSON.parse(x).ismanager;
+
+ //---
+ var node = {
+ "_id": local_id,
+ "id": localid,
+ "label": nom + " " + prenom,
+ "nom": nom,
+ "prenom": prenom,
+ "email": email,
+ "ismanager": ismanager,
+
+ };
+ new_data2.push(node);
+ });
+
+ //---
+ var node = {
+ "_id": "",
+ "id": "",
+ "label": "",
+ "nom": "",
+ "prenom": "",
+ "email": "",
+ "email": "",
+
+ };
+ new_data2.push(node);
+
+ // console.log("### new_data2 = ", new_data2);
+
+ if (new_data2.length > 0)
+ setNew_Get_Conseil_Class_List_Membres_Not_Added_insc_result(new_data2);
+
+
+ } else if (String(data['status']) === String("Err_Connexion")) {
+ alert('Erreur: ' + data['message']);
+ history.push("/Connexion");
+ }
+ else {
+ setGet_Conseil_Class_List_Membres_Not_Added_insc_api("false");
+
+ }
+
+ }).catch((error) => {
+ setLoading(false);
+ console.error('Error:', error);
+ setGet_Conseil_Class_List_Membres_Not_Added_insc_api("false");
+ });
+
+ }
+
+
+
+ const [New_Get_Conseil_Class_List_Delegue_Class_Not_Added_insc_result, setNew_Get_Conseil_Class_List_Delegue_Class_Not_Added_insc_result] = useState([])
+
+ const [Get_Conseil_Class_List_Delegue_Class_Not_Added_insc_api, setGet_Conseil_Class_List_Delegue_Class_Not_Added_insc_api] = useState();
+ const [Get_Conseil_Class_List_Delegue_Class_Not_Added_insc_meassage, setGet_Conseil_Class_List_Delegue_Class_Not_Added_insc_meassage] = useState();
+ const [Get_Conseil_Class_List_Delegue_Class_Not_Added_insc_result, setGet_Conseil_Class_List_Delegue_Class_Not_Added_insc_result] = useState([])
+ function Get_Conseil_Class_List_Delegue_Class_Not_Added() {
+
+ var form = new FormData();
+ //form.append("token","K3cw63eKokKSbV4spjQ48SUNnfy80yrXfA");
+ const stored_cookie = getCookie('tokenmysypart');
+ form.append("token", stored_cookie);
+ form.append("jury_id", selected_id);
+ form.append("session_id", selected_session_id);
+ form.append("class_groupe_id", selected_class_groupe_id);
+
+
+
+ // console.log(" #### OKKKK ")
+ setLoading(true);
+ var myurl = process.env.REACT_APP_API_URL + "myclass/api/Get_List_Delegue_Classe_Not_In_jury_apprenant/";
+
+ fetch(myurl,
+ {
+ method: 'POST',
+ body: form,
+ })
+ .then((data) => data.json())
+ .then((data) => {
+ setLoading(false);
+ console.log(' Get_Conseil_Class_List_Delegue_Class_Not_Added : Success:', data['message'], "data['status'] = ", data['status']);
+
+
+ if (String(data['status']) === String("true")) {
+ setGet_Conseil_Class_List_Delegue_Class_Not_Added_insc_result(data['message']);
+ //console.log("erreur rrrr:" + data['status'])
+ setGet_Conseil_Class_List_Delegue_Class_Not_Added_insc_api("true");
+
+ var new_data2 = [];
+ const new_data = data['message'].map((x) => {
+
+ //---
+ var localid = JSON.parse(x).id;
+ var local_id = JSON.parse(x).inscrit_id;
+ var apprenant_nom = JSON.parse(x).nom;
+ var apprenant_prenom = JSON.parse(x).prenom;
+ var apprenant_email = JSON.parse(x).email;
+
+ //---
+ var node = {
+ "_id": local_id,
+ "id": localid,
+ "label": apprenant_nom + " " + apprenant_prenom,
+ "apprenant_nom": apprenant_nom,
+ "apprenant_prenom": apprenant_prenom,
+ "apprenant_email": apprenant_email,
+
+ };
+ new_data2.push(node);
+ });
+
+ //---
+ var node = {
+ "_id": "",
+ "id": "",
+ "label": "",
+ "apprenant_nom": "",
+ "apprenant_prenom": "",
+ "apprenant_email": "",
+
+ };
+ new_data2.push(node);
+
+ if (new_data2.length > 0)
+ setNew_Get_Conseil_Class_List_Delegue_Class_Not_Added_insc_result(new_data2);
+
+
+ } else if (String(data['status']) === String("Err_Connexion")) {
+ alert('Erreur: ' + data['message']);
+ history.push("/Connexion");
+ }
+ else {
+ setGet_Conseil_Class_List_Delegue_Class_Not_Added_insc_api("false");
+
+ }
+
+ }).catch((error) => {
+ setLoading(false);
+ console.error('Error:', error);
+ setGet_Conseil_Class_List_Delegue_Class_Not_Added_insc_api("false");
+ });
+
+ }
+
+
const [Get_Jury_List_Apprenant_Soutenance_insc_api, setGet_Jury_List_Apprenant_Soutenance_insc_api] = useState();
const [Get_Jury_List_Apprenant_Soutenance_insc_meassage, setGet_Jury_List_Apprenant_Soutenance_insc_meassage] = useState();
@@ -3918,9 +4938,75 @@ registerLocale('fr', fr);
}
settab_jury_convocation_apprenant_pieces_jointes_result(new_tab);
-
-
}
+
+ const [sessions_file_change_1_conseil_class_pv_api, setsessions_file_change_1_conseil_class_pv_api] = useState();
+ const [sessions_file_change_1_conseil_class_pv_result, setsessions_file_change_1_conseil_class_pv_result] = useState();
+ const [sessions_file_change_1_conseil_class_pv_message, setsessions_file_change_1_conseil_class_pv_message] = useState();
+ const sessions_file_change_1_conseil_class_pv = event => {
+
+
+ const fileUploaded = event.target.files[0];
+ let file_size = event.target.files[0].size;
+ let file_type = event.target.files[0].type;
+
+
+ if (file_type !== "application/pdf") {
+ alert("Le fichier n'est pas de type PDF");
+ return;
+ }
+
+
+
+ if (file_size > 10000000) {
+ alert("Le fichier ne doit pas depasser un 1 Méga octets");
+
+ return;
+ }
+
+ //var new_node = {'name':event.target.files[0].name, 'type':event.target.files[0].type}
+
+
+ var new_tmp = [];
+
+ if (tab_conseil_class_proces_verbal_pieces_jointes_result && tab_conseil_class_proces_verbal_pieces_jointes_result.length > 0) {
+
+ tab_conseil_class_proces_verbal_pieces_jointes_result.map((x) => {
+ new_tmp.push(x);
+
+ });
+
+ }
+
+ new_tmp.push(event.target.files[0])
+
+ settab_conseil_class_proces_verbal_pieces_jointes_result(new_tmp);
+
+ //console.log(" tab_jury_convocation_apprenant_pieces_jointes_result = ", tab_jury_convocation_apprenant_pieces_jointes_result)
+ return;
+ };
+
+ function Delete_Conseil_Class_PV_Attached_Doc(event) {
+
+ var doc_to_del_name = event.target.id;
+ const myArray = tab_conseil_class_proces_verbal_pieces_jointes_result;
+
+ let new_myArray = myArray.filter(file => file.name !== String(doc_to_del_name));
+
+ //console.log(" new_myArray = ", new_myArray);
+
+
+ var new_tab = []
+ for (let i = 0; i < new_myArray.length; i++) {
+ new_tab.push(new_myArray[i]);
+ }
+
+ settab_conseil_class_proces_verbal_pieces_jointes_result(new_tab);
+ }
+
+
+
+
const [New_Get_List_JURY_APPRENANT_Convocations_result, setNew_Get_List_JURY_APPRENANT_Convocations_result] = useState([]);
const [Get_List_JURY_APPRENANT_Convocations_api, setGet_List_JURY_APPRENANT_Convocations_api] = useState();
@@ -4088,6 +5174,89 @@ registerLocale('fr', fr);
}
+ const [New_Get_List_Conseil_Class_PV_modele_result, setNew_Get_List_Conseil_Class_PV_modele_result] = useState([]);
+
+ const [Get_List_Conseil_Class_PV_modele_api, setGet_List_Conseil_Class_PV_modele_api] = useState();
+ const [Get_List_Conseil_Class_PV_modele_message, setGet_List_Conseil_Class_PV_modele_message] = useState();
+ const [Get_List_Conseil_Class_PV_modele_result, setGet_List_Conseil_Class_PV_modele_result] = useState();
+ function Get_List_Conseil_Class_PV_modele(type_doc) {
+
+ var form = new FormData();
+
+ const stored_cookie = getCookie('tokenmysypart');
+ form.append("token", stored_cookie);
+ form.append("ref_interne", "CONSEIL_CLASS_PV");
+ form.append("type_doc", type_doc);
+
+ var myurl = process.env.REACT_APP_API_URL + "myclass/api/Get_List_Partner_Document_with_filter_No_HTML_Fields/";
+ setLoading(true);
+
+ axios.post(myurl, form).then(res => {
+ // console.log(" In Get_List_Conseil_Class_PV_modele res.data.status = " + res.data.status);
+ console.log(" In Get_List_Conseil_Class_PV_modele res.data.message r_class = " + res.data.message);
+ setLoading(false);
+ if (String(res.data.status) === String("true")) {
+
+
+ setGet_List_Conseil_Class_PV_modele_api("true");
+ setGet_List_Conseil_Class_PV_modele_result(res.data.message);
+
+ var new_data2 = [];
+
+ const new_data = res.data.message.map((x) => {
+
+ //---
+ var localid = JSON.parse(x).id;
+ var local_id = JSON.parse(x)._id;
+ var local_ref_interne = JSON.parse(x).ref_interne;
+ var local_nom = JSON.parse(x).nom;
+ var local_sujet = JSON.parse(x).sujet;
+ var local_type_doc = JSON.parse(x).type_doc;
+ var local_cible = JSON.parse(x).cible;
+ var local_joint_pdf = JSON.parse(x).joint_pdf;
+
+
+ //---
+ var node = {
+ "_id": local_id,
+ "id": localid,
+ "label": local_nom,
+ "ref_interne": local_ref_interne,
+ "nom": local_nom,
+ "sujet": local_sujet,
+ "type_doc": local_type_doc,
+ "cible": local_cible,
+ "joint_pdf": local_joint_pdf,
+
+ };
+ new_data2.push(node);
+ });
+
+ if (new_data2.length > 0)
+ setNew_Get_List_Conseil_Class_PV_modele_result(new_data2);
+
+
+ }
+ else {
+ setGet_List_Conseil_Class_PV_modele_api("false");
+ setGet_List_Conseil_Class_PV_modele_message(res.data.message);
+ // alert(res.data.message);
+ setdisplay_alert_mysy("1");
+ setalert_message(res.data.message);
+ setalert_type("error");
+
+ }
+
+ }).catch((error) => {
+ setLoading(false);
+ console.warn('Not good man :( Get_List_Conseil_Class_PV_modele = ', error);
+ setGet_List_Conseil_Class_PV_modele_api("false");
+ alert("Impossible de récupérer les modèles de procès verbal");
+ //setmyApimyApiMessage("")
+ })
+ }
+
+
const New_Option_Type_Document = [
{ "id": "email", "label": "Email", "value": "email" },
{ "id": "pdf", "label": "PDF", "value": "pdf" },
@@ -4145,6 +5314,58 @@ registerLocale('fr', fr);
}
+ function Download_Jury_Conseil_Class_PV_PDF() {
+
+ const stored_cookie = getCookie('tokenmysypart');
+
+ var nom_fichier_cmd = "PV_Conseil_Classe.zip";
+
+ if (String(selected_conseil_class_proces_verbal_id).trim() === "") {
+ alert(" Vous devez choisir un modèle de document ");
+ return;
+ }
+
+
+ // Recuperer la liste des soutenances selectionnées
+ var tab_jury_id = []
+
+ for (var i = 0; i < selectionModel_columns_jury.length; i++) {
+ var myid = parseInt(String(selectionModel_columns_jury[i]));
+ var line = Getall_Partner_Jury_result[myid];
+ //console.log(" ### line = ", line)
+ tab_jury_id.push(JSON.parse(line)._id);
+ }
+
+ var url = process.env.REACT_APP_API_URL + "myclass/api/Send_Conseil_Classe_Proces_Verbal_By_PDF/" + stored_cookie + "/" + tab_jury_id + "/" + selected_conseil_class_proces_verbal_id;
+
+ //console.log(" ### url = ", url);
+
+ setLoading(true);
+ axios.get(url, { responseType: 'blob', },)
+ .then((res) => {
+ setLoading(false);
+ //console.log(" In Download_Stagiaire_Conventions_PDF res.data = " + res.data);
+ if (String(res.data) === String("false")) {
+ alert("Impossible de télécharger la convocation des membres du jury (2) ");
+ } else {
+ fileDownload(res.data, nom_fichier_cmd);
+ // Getall_Editable_Document_By_Partner_By_Collection();
+
+ setselectionModel_columns_jury_seance([]);
+ setselected_jury_soutenance_id("");
+ setactionmass_jury_seance("");
+
+ }
+ }).catch((error) => {
+ setLoading(false);
+ console.error('Error:', error);
+ alert(" Impossible de télécharger la convocation des membres du jury ")
+
+ });
+
+ }
+
+
function Download_Jury_Soutenance_Convocation_Apprenant_PDF() {
@@ -4373,6 +5594,13 @@ registerLocale('fr', fr);
})
}
+ const [selected_conseil_class_proces_verbal_id, setselected_conseil_class_proces_verbal_id] = useState("");
+ const [selected_conseil_class_proces_verbal_type, setselected_conseil_class_proces_verbal_type] = useState("");
+ const [selected_conseil_class_proces_verbal_email_destinataire_prod, setselected_conseil_class_proces_verbal_email_destinataire_prod] = useState("");
+ const [selected_conseil_class_proces_verbal_email_test, setselected_conseil_class_proces_verbal_email_test] = useState("");
+
+ const [tab_conseil_class_proces_verbal_pieces_jointes_result, settab_conseil_class_proces_verbal_pieces_jointes_result] = useState([]);
+
const [selected_jury_convocation_membre_id, setselected_jury_convocation_membre_id] = useState("");
const [selected_jury_convocation_membre_type, setselected_jury_convocation_membre_type] = useState("");
const [selected_jury_convocation_membre_email_destinataire_prod, setselected_jury_convocation_membre_email_destinataire_prod] = useState("");
@@ -4381,6 +5609,8 @@ registerLocale('fr', fr);
const [tab_jury_convocation_membre_pieces_jointes_result, settab_jury_convocation_membre_pieces_jointes_result] = useState([]);
+
+
const [Dialog_CONVOCATION_JURY_MEMBRE_open, setDialog_CONVOCATION_JURY_MEMBRE_open] = React.useState(false);
const Dialog_convocation_membre_MEMBRE_handleClose = () => {
//alert(" Utiliser le bouton 'fermer' ");
@@ -4424,9 +5654,536 @@ registerLocale('fr', fr);
const [type_groupe, settype_groupe] = useState("");
const New_Option_Type_Groupe = [
{ "id": "grp_td", "label": "Grp TD", "value": "grp_td" },
- { "id": "grp_tp", "label": "Grp TP", "value": "grp_tp" },
+ { "id": "grp_tp", "label": "Grp TP", "value": "grp_tp" },
]
+ const [p_detail_class_id, setp_detail_class_id] = React.useState("");
+
+ const [New_Get_List_UE_From_Class_Id_result, setNew_Get_List_UE_From_Class_Id_result] = useState([]);
+
+ const [Get_List_UE_From_Class_Id_api, setGet_List_UE_From_Class_Id_api] = useState();
+ const [Get_List_UE_From_Class_Id_message, setGet_List_UE_From_Class_Id_message] = useState();
+ const [Get_List_UE_From_Class_Id_result, setGet_List_UE_From_Class_Id_result] = useState();
+ function Get_List_UE_From_Class_Id(local_class_id) {
+
+ var form = new FormData();
+
+
+ const stored_cookie = getCookie('tokenmysypart');
+ form.append("token", stored_cookie);
+ form.append("class_id", local_class_id);
+
+ var myurl = process.env.REACT_APP_API_URL + "myclass/api/Get_List_Unite_Enseignement_Of_Given_Class/";
+
+ setLoading(true);
+
+ axios.post(myurl, form).then(res => {
+
+
+ setLoading(false);
+ if (String(res.data.status) === String("true")) {
+ //console.log(" In Get_List_UE_From_Class_Id res.data.status = " + res.data.status);
+ // console.log(" In Get_List_UE_From_Class_Id res.data.message r_class = " + res.data.message);
+ setGet_List_UE_From_Class_Id_api("true");
+ setGet_List_UE_From_Class_Id_result(res.data.message);
+
+ var new_data2 = [];
+ const new_data = res.data.message.map((x) => {
+
+ //---
+ var localid = JSON.parse(x).id;
+ var local_id = JSON.parse(x)._id;
+ var local_code = JSON.parse(x).code;
+ var local_titre = JSON.parse(x).titre;
+
+ var local_class_id = JSON.parse(x).class_id;
+ var local_internal_url = JSON.parse(x).internal_url;
+
+
+ //---
+ var node = {
+ "_id": local_id,
+ "id": localid,
+ "label": local_code,
+ "code": local_code,
+ "titre": local_titre,
+ "class_id": local_class_id,
+ "internal_url": local_internal_url,
+
+ };
+ new_data2.push(node);
+ });
+
+ //---
+ var node = {
+ "_id": "",
+ "id": "",
+ "label": "",
+ "code": "",
+ "titre": "",
+ "class_id": "",
+ "internal_url": "",
+
+ };
+ new_data2.push(node);
+
+ if (new_data2.length > 0)
+ setNew_Get_List_UE_From_Class_Id_result(new_data2);
+ }
+ else {
+ setGet_List_UE_From_Class_Id_api("false");
+ setGet_List_UE_From_Class_Id_message(res.data.message);
+ // alert(res.data.message)
+ setdisplay_alert_mysy("1");
+ setalert_message(res.data.message);
+ setalert_type("error");
+ }
+
+ }).catch((error) => {
+
+ setLoading(false);
+ console.warn('Not good man :( Get_List_UE_From_Class_Id = ', error);
+ setGet_List_UE_From_Class_Id_api("false");
+ // alert(" Impossible de recuperer la liste des UE de la formation");
+ setdisplay_alert_mysy("1");
+ setalert_message(" Impossible de recuperer la liste des UE de la formation");
+ setalert_type("error");
+ //setmyApimyApiMessage("")
+ })
+ }
+
+ const [p_detail_class_internal_url, setp_detail_class_internal_url] = React.useState("");
+ const [evaluation_data_changed, setevaluation_data_changed] = React.useState("");
+ const [p_detail_session_id, setp_detail_session_id] = React.useState("");
+ const [p_detail_class_eu_id, setp_detail_class_eu_id] = React.useState("");
+
+ const [New_Getall_Partner_Session_Reduice_Fields_result, setNew_Getall_Partner_Session_Reduice_Fields_result] = useState([]);
+
+ const [Getall_Partner_Session_Reduice_Fields_api, setGetall_Partner_Session_Reduice_Fields_api] = useState();
+ const [Getall_Partner_Session_Reduice_Fields_message, setGetall_Partner_Session_Reduice_Fields_message] = useState();
+ const [Getall_Partner_Session_Reduice_Fields_result, setGetall_Partner_Session_Reduice_Fields_result] = useState();
+ function Getall_Partner_Session_Reduice_Fields(event) {
+
+ var form = new FormData();
+ const stored_cookie = getCookie('tokenmysypart');
+ form.append("token", stored_cookie);
+ form.append("type_session", "1");
+
+ var myurl = process.env.REACT_APP_API_URL + "myclass/api/Get_Partner_Session_Ftion_Reduice_Fields/";
+
+ axios.post(myurl, form).then(res => {
+
+ if (String(res.data.status) === String("true")) {
+ //console.log(" In Getall_Partner_Session_Reduice_Fields res.data.status = " + res.data.status);
+ // console.log(" In Getall_Partner_Session_Reduice_Fields res.data.message r_class = " + res.data.message);
+ setGetall_Partner_Session_Reduice_Fields_api("true");
+ setGetall_Partner_Session_Reduice_Fields_result(res.data.message);
+ setRows(res.data.message);
+
+ var new_data2 = [];
+ const new_data = res.data.message.map((x) => {
+
+ //---
+ var localid = JSON.parse(x).id;
+ var local_id = JSON.parse(x)._id;
+ var local_code_session = JSON.parse(x).code_session;
+ var local_titre = JSON.parse(x).titre;
+ var local_class_internal_url = JSON.parse(x).class_internal_url;
+ var local_class_id = JSON.parse(x).class_id;
+ var local_date_debut = JSON.parse(x).date_debut;
+ var local_date_fin = JSON.parse(x).date_fin;
+
+
+
+ //---
+ var node = {
+ "_id": local_id,
+ "id": localid,
+ "label": local_code_session,
+ "code_session": local_code_session,
+ "titre": local_titre,
+ "class_internal_url": local_class_internal_url,
+ "class_id": local_class_id,
+ "date_debut": local_date_debut,
+ "date_fin": local_date_fin,
+ };
+ new_data2.push(node);
+ });
+
+
+ //---
+ var node = {
+ "_id": "",
+ "id": "",
+ "label": "",
+ "code_session": "",
+ "titre": "",
+ "class_internal_url": "",
+ "class_id": "",
+ "date_debut": "",
+ "date_fin": "",
+ };
+ new_data2.push(node);
+
+
+ if (new_data2.length > 0)
+ setNew_Getall_Partner_Session_Reduice_Fields_result(new_data2);
+
+
+
+ }
+ else {
+ setGetall_Partner_Session_Reduice_Fields_api("false");
+ setGetall_Partner_Session_Reduice_Fields_message(res.data.message);
+ // alert(res.data.message)
+ setdisplay_alert_mysy("1");
+ setalert_message(res.data.message);
+ setalert_type("error");
+ }
+
+ }).catch((error) => {
+ console.warn('Not good man :( Getall_Partner_Session_Reduice_Fields = ', error);
+ setGetall_Partner_Session_Reduice_Fields_api("false");
+ // alert(" Impossible de recuperer la liste des sessions de formation (classe)");
+ setdisplay_alert_mysy("1");
+ setalert_message(" Impossible de recuperer la liste des sessions de formation (classe)");
+ setalert_type("error");
+ //setmyApimyApiMessage("")
+ })
+ }
+
+ const [New_Getall_Partner_List_UE_result, setNew_Getall_Partner_List_UE_result] = useState([]);
+
+ const [Getall_Partner_List_UE_api, setGetall_Partner_List_UE_api] = useState();
+ const [Getall_Partner_List_UE_message, setGetall_Partner_List_UE_message] = useState();
+ const [Getall_Partner_List_UE_result, setGetall_Partner_List_UE_result] = useState();
+ function Getall_Partner_List_UE(event) {
+
+ var form = new FormData();
+
+
+ const stored_cookie = getCookie('tokenmysypart');
+ form.append("token", stored_cookie);
+
+ var myurl = process.env.REACT_APP_API_URL + "myclass/api/Get_List_Unite_Enseignement_no_filter/";
+
+ setLoading(true);
+
+ axios.post(myurl, form).then(res => {
+
+
+ setLoading(false);
+ if (String(res.data.status) === String("true")) {
+ //console.log(" In Getall_Partner_List_UE res.data.status = " + res.data.status);
+ // console.log(" In Getall_Partner_List_UE res.data.message r_class = " + res.data.message);
+ setGetall_Partner_List_UE_api("true");
+ setGetall_Partner_List_UE_result(res.data.message);
+
+ var new_data2 = [];
+ const new_data = res.data.message.map((x) => {
+
+ //---
+ var localid = JSON.parse(x).id;
+ var local_id = JSON.parse(x)._id;
+ var local_code = JSON.parse(x).code;
+ var local_titre = JSON.parse(x).titre;
+
+
+
+ //---
+ var node = {
+ "_id": local_id,
+ "id": localid,
+ "label": local_code,
+ "code": local_code,
+ "titre": local_titre,
+
+ };
+ new_data2.push(node);
+ });
+
+ //---
+ var node = {
+ "_id": "",
+ "id": "",
+ "label": "",
+ "code": "",
+ "titre": "",
+ "credit": "",
+ "pres_dist_hyp": "",
+ "is_noted": "",
+
+ };
+ new_data2.push(node);
+
+ if (new_data2.length > 0)
+ setNew_Getall_Partner_List_UE_result(new_data2);
+ }
+ else {
+ setGetall_Partner_List_UE_api("false");
+ setGetall_Partner_List_UE_message(res.data.message);
+ // alert(res.data.message)
+ setdisplay_alert_mysy("1");
+ setalert_message(res.data.message);
+ setalert_type("error");
+ }
+
+ }).catch((error) => {
+
+ setLoading(false);
+ console.warn('Not good man :( Getall_Partner_List_UE = ', error);
+ setGetall_Partner_List_UE_api("false");
+ // alert(" Impossible de recuperer la liste des UE de la formation");
+ setdisplay_alert_mysy("1");
+ setalert_message(" Impossible de recuperer la liste des UE de la formation");
+ setalert_type("error");
+ //setmyApimyApiMessage("")
+ })
+ }
+
+
+ const [New_Getall_Partner_Groupe_Inscrit_result, setNew_Getall_Partner_Groupe_Inscrit_result] = useState([]);
+
+ const [Getall_Partner_Groupe_Inscrit_api, setGetall_Partner_Groupe_Inscrit_api] = useState();
+ const [Getall_Partner_Groupe_Inscrit_message, setGetall_Partner_Groupe_Inscrit_message] = useState();
+ const [Getall_Partner_Groupe_Inscrit_result, setGetall_Partner_Groupe_Inscrit_result] = useState([]);
+ function Getall_Partner_Groupe_Inscrit(local_session_id, local_type_groupe_code) {
+
+ var form = new FormData();
+
+
+ const stored_cookie = getCookie('tokenmysypart');
+ form.append("token", stored_cookie);
+ form.append("session_id", local_session_id);
+ if (local_type_groupe_code != "tous")
+ form.append("type_groupe_code", local_type_groupe_code);
+
+
+ var myurl = process.env.REACT_APP_API_URL + "myclass/api/Get_List_Groupe_Inscrit_With_Filter/";
+
+ axios.post(myurl, form).then(res => {
+
+ if (String(res.data.status) === String("true")) {
+ //console.log(" In Getall_Partner_Groupe_Inscrit res.data.status = " + res.data.status);
+ // console.log(" In Getall_Partner_Groupe_Inscrit res.data.message r_class = " + res.data.message);
+ setGetall_Partner_Groupe_Inscrit_api("true");
+ setGetall_Partner_Groupe_Inscrit_result(res.data.message);
+
+
+ var new_data2 = [];
+ const new_data = res.data.message.map((x) => {
+
+ //---
+ var localid = JSON.parse(x).id;
+ var local_id = JSON.parse(x)._id;
+ var local_code = JSON.parse(x).code;
+ var local_nom = JSON.parse(x).nom;
+ var local_type_groupe_code = JSON.parse(x).type_groupe_code;
+ var local_class_id = JSON.parse(x).class_id;
+ var local_session_id = JSON.parse(x).session_id;
+
+
+
+ //---
+ var node = {
+ "_id": local_id,
+ "id": localid,
+ "label": local_code,
+ "code": local_code,
+ "nom": local_nom,
+ "type_groupe_code": local_type_groupe_code,
+ "class_id": local_class_id,
+ "session_id": local_session_id,
+
+
+ };
+ new_data2.push(node);
+ });
+
+ //---
+ var node = {
+ "_id": "",
+ "id": "",
+ "label": "",
+ "code": "",
+ "nom": "",
+ "type_groupe_code": "",
+ "class_id": "",
+ "session_id": "",
+
+ };
+ new_data2.push(node);
+
+ if (new_data2.length > 0)
+ setNew_Getall_Partner_Groupe_Inscrit_result(new_data2);
+
+ }
+ else {
+ setGetall_Partner_Groupe_Inscrit_api("false");
+ setGetall_Partner_Groupe_Inscrit_message(res.data.message);
+ // alert(res.data.message)
+ setdisplay_alert_mysy("1");
+ setalert_message(res.data.message);
+ setalert_type("error");
+ }
+
+ }).catch((error) => {
+ console.warn('Not good man :( Getall_Partner_Groupe_Inscrit = ', error);
+ setGetall_Partner_Groupe_Inscrit_api("false");
+ alert(" Impossible de recuperer la liste des groupes d'inscrits");
+ //setmyApimyApiMessage("")
+ })
+ }
+
+ const New_Option_type_goupe = [
+ { "id": "TD_GRP", "label": "Groupe TD", "value": "TD_GRP" },
+ { "id": "TP_GRP", "label": "Groupe TP", "value": "TP_GRP" },
+ { "id": "PRJ_GRP", "label": "Groupe Projet", "value": "PRJ_GRP" },
+ { "id": "tous", "label": "Tous les groupes", "value": "tous" },
+ { "id": "", "label": "", "value": "" },
+ ]
+ const [selected_type_groupe, setselected_type_groupe] = useState("");
+
+ const [p_detail_class_conseil_observation, setp_detail_class_conseil_observation] = useState("");
+
+ const [Dialog_CLASS_CONSEIL_INFO_open, setDialog_CLASS_CONSEIL_INFO_open] = React.useState(false);
+ const Dialog_CLASS_CONSEIL_INFO_handleClose_buton = () => {
+ setDialog_CLASS_CONSEIL_INFO_open(false);
+ setp_detail_class_conseil_observation("");
+ };
+
+ const [Update_Conseil_Class_Apprenant_Observation_api, setUpdate_Conseil_Class_Apprenant_Observation_api] = useState();
+ const [Update_Conseil_Class_Apprenant_Observation_message, setUpdate_Conseil_Class_Apprenant_Observation_message] = useState();
+ const [Update_Conseil_Class_Apprenant_Observation_result, setUpdate_Conseil_Class_Apprenant_Observation_result] = useState([]);
+ function Update_Conseil_Class_Apprenant_Observation() {
+ var form = new FormData();
+ //form.append("token","K3cw63eKokKSbV4spjQ48SUNnfy80yrXfA");
+
+
+ const stored_cookie = getCookie('tokenmysypart');
+ form.append("token", stored_cookie);
+
+ form.append("conseil_class_id", selected_id);
+ form.append("tab_conseil_class_apprenant_ids", selected_conseil_class_apprenant_id);
+ form.append("conseil_class_observation", p_detail_class_conseil_observation);
+
+ if (String(p_detail_class_conseil_observation).length > 500) {
+ setdisplay_alert_mysy("1");
+ setalert_message("L'observation doit faire moins de 500 caractères");
+ setalert_type("error");
+ return;
+ }
+
+ var myurl = process.env.REACT_APP_API_URL + "myclass/api/Add_Update_Conseil_Class_Apprenant_Observation/";
+
+
+ setLoading(true);
+ axios.post(myurl, form).then(res => {
+ //console.log(" In Update_Conseil_Class_Apprenant_Observation res.data.status = " + res.data.status);
+ //console.log(" In Update_Conseil_Class_Apprenant_Observation res.data.message r_class = " + res.data.message);
+
+ setLoading(false);
+
+ if (String(res.data.status) === String("true")) {
+ setUpdate_Conseil_Class_Apprenant_Observation_api("true");
+ setUpdate_Conseil_Class_Apprenant_Observation_result(res.data.message);
+
+ Get_Jury_List_Apprenant_Seance("", "");
+
+ Dialog_CLASS_CONSEIL_INFO_handleClose_buton();
+
+ setdisplay_alert_mysy("1");
+ setalert_message(res.data.message);
+ setalert_type("success");
+ }
+ else {
+ setUpdate_Conseil_Class_Apprenant_Observation_api("false");
+ setUpdate_Conseil_Class_Apprenant_Observation_message(res.data.message);
+ // alert(res.data.message);
+ setdisplay_alert_mysy("1");
+ setalert_message(res.data.message);
+ setalert_type("error");
+ }
+
+ }).catch((error) => {
+ setLoading(false);
+
+ console.log('UpdateStagiaireData : Not good man :( Update_Conseil_Class_Apprenant_Observation = ' + error);
+ setUpdate_Conseil_Class_Apprenant_Observation_api("false");
+
+ setdisplay_alert_mysy("1");
+ setalert_message(" Impossible d'ajouter ou mettre à jour l'observation ");
+ setalert_type("error");
+
+ })
+ }
+
+ const [Dialog_Conseil_Class_Apprenant_open, setDialog_Conseil_Class_Apprenant_open] = React.useState(false);
+
+
+ const Dialog_Conseil_Class_Apprenant_handleClose = () => {
+ //alert(" Utiliser le bouton 'fermer' ");
+ //setOpen(false);
+ };
+
+ const Dialog_Conseil_Class_Apprenant_handleClose_buton = () => {
+
+ setDialog_Conseil_Class_Apprenant_open(false);
+ // settab_selected_users([]);
+ //setp_detail_member_role("");
+ };
+
+
+ const [Dialog_PV_JURY_MEMBRE_open, setDialog_PV_JURY_MEMBRE_open] = React.useState(false);
+ const Dialog_PV_JURY_handleClose = () => {
+ //alert(" Utiliser le bouton 'fermer' ");
+ //setOpen(false);
+ };
+
+ const Dialog_PV_JURY_MEMBRE_handleClose_buton = () => {
+ setDialog_PV_JURY_MEMBRE_open(false);
+ setselected_conseil_class_proces_verbal_id();
+ setselected_conseil_class_proces_verbal_type("");
+ setselected_conseil_class_proces_verbal_email_destinataire_prod();
+ setselected_conseil_class_proces_verbal_email_test();
+ setactionmass_ftion_val();
+ settab_conseil_class_proces_verbal_pieces_jointes_result([])
+
+ };
+
+ const [field_contenu_observation, setfield_contenu_observation] = useState("");
+ const editorRef_observation = useRef(null);
+ const [editorRef_observation_limite, seteditorRef_observation_limite] = useState(1000);
+
+ function field_contenu_observation_keyup() {
+ setequipe_data_changed("1");
+ }
+
+ const [field_contenu_recommandation, setfield_contenu_recommandation] = useState("");
+ const editorRef_recommandation = useRef(null);
+ const [editorRef_recommandation_limite, seteditorRef_recommandation_limite] = useState(1000);
+
+ function field_contenu_recommandation_keyup() {
+ setequipe_data_changed("1");
+ }
+
+ const [field_contenu_comment, setfield_contenu_comment] = useState("");
+ const editorRef_comment = useRef(null);
+ const [editorRef_comment_limite, seteditorRef_comment_limite] = useState(1000);
+
+ function field_contenu_comment_keyup() {
+ setequipe_data_changed("1");
+ }
+
+
+ const [field_contenu_decision, setfield_contenu_decision] = useState("");
+ const editorRef_decision = useRef(null);
+ const [editorRef_decision_limite, seteditorRef_decision_limite] = useState(1000);
+
+ function field_contenu_decision_keyup() {
+ setequipe_data_changed("1");
+ }
+
return (
@@ -4446,6 +6203,675 @@ registerLocale('fr', fr);
{/*** FIN Affichage des messages d'alerte*/}
+
+ {/* Dialog pour gerer les PV_JURY_MEMBRE */}
+
null}
+
+ PaperProps={{
+
+
+ className: classes.paper, // Apply the paper style
+ style: {
+ overflowY: 'unset',
+ position: 'absolute',
+ top: '7rem',
+ margin: "2px",
+ },
+ }}
+ hideBackdrop={true}
+ disableScrollLock
+ classes={{
+ paper: classes.dialog
+ }}
+
+ PaperComponent={PaperComponent}
+ aria-labelledby="draggable-dialog-title"
+
+ >
+
+ Envoyer le procès verbal
+
+
+ {Dialog_1_message}
+
+
+
+ Type Document
+
+
{
+ if (value && value.value) {
+ setselected_conseil_class_proces_verbal_type(value.value);
+ Get_List_Conseil_Class_PV_modele(String(value.value));
+
+
+ }
+ }}
+ renderInput={(params) =>
+ }
+ />
+
+
+
+
+
+ {(String(selected_conseil_class_proces_verbal_type) === "email" || String(selected_conseil_class_proces_verbal_type) === "pdf") &&
+ Choisir un modèle de PV
+
{
+ if (value && value._id) {
+
+ setselected_conseil_class_proces_verbal_id(value._id);
+
+ if (String(value._id) === "default_mail") {
+ setselected_conseil_class_proces_verbal_type("email");
+ }
+ else if (String(value._id) === "default_pdf") {
+ setselected_conseil_class_proces_verbal_type("pdf");
+ } else {
+ var result2 = Get_List_Conseil_Class_PV_modele_result.filter((local_mymanager) => JSON.parse(local_mymanager)._id === String(value._id))
+
+
+ setselected_conseil_class_proces_verbal_type(JSON.parse(result2).type_doc);
+ }
+ settab_jury_convocation_membre_pieces_jointes_result([]);
+ }
+ }}
+
+ renderInput={(params) =>
+ }
+ />
+
+ }
+
+ {String(selected_conseil_class_proces_verbal_type) === "email" && Type Document
+
+
+
+ {String(selected_conseil_class_proces_verbal_type) === "email" && {
+
+ if (selected_conseil_class_proces_verbal_email_test) {
+ var validRegex = /^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$/;
+ if (!selected_conseil_class_proces_verbal_email_test.match(validRegex)) {
+ alert("L'adresse email de test est invalide.");
+ return;
+ }
+ // Send_JURY_APPRENANT_Conventions_By_Email_Test();
+ } else {
+ alert("L'adresse email de test est invalide.");
+ }
+
+
+
+ }} > Test }
+
+
}
+
+ {String(selected_conseil_class_proces_verbal_type) === "pdf" && Type Document
+
+
+
+
+
}
+
+
+ {String(selected_conseil_class_proces_verbal_type) === "email" &&
+ }
+
+
+ {String(selected_conseil_class_proces_verbal_type) === "email" &&
+ String(actionmass_ftion_val) !== String("convention") && Email destinaitaire
+ {
+ setselected_conseil_class_proces_verbal_email_destinataire_prod(e.target.value);
+ }
+ }
+ />
+
+
+ }
+
+
+
+ {String(selected_conseil_class_proces_verbal_type) === "email" &&
+
+
+
+
+
+
+
+ Pièces jointes Convention
+
+
+
+
+
+
+
+
+
+
+ Ajouter un fichier
+
+
+
+
+
+
+
+
+
+ {tab_conseil_class_proces_verbal_pieces_jointes_result &&
+
+
+ Liste des pièces jointes
+ {
+ {tab_conseil_class_proces_verbal_pieces_jointes_result && tab_conseil_class_proces_verbal_pieces_jointes_result.map((val) => (
+
+ {
+ Delete_Conseil_Class_PV_Attached_Doc(e);
+ }}
+ name={val.name} id={val.name}> Supprimer {val.name}
+
+
+
+ ))}
+
}
+
+
}
+
+
+
+
+
}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {String(selected_conseil_class_proces_verbal_type) === "email" && {
+
+ if (String(selected_conseil_class_proces_verbal_email_test).length > 2) {
+ // On alerte juste l'utilisateur que l'email de test n'est pas vide, juste au cas ou il aurait cliqué par erreur sur l'envoie.
+ const response = window.confirm(" Vous allez envoyer la convention au destinaitaire final. Continuer ?");
+ if (!response) {
+ return;
+ }
+ }
+
+ Send_JURY_MEMBRE_Convocations_By_Email();
+ Dialog_PV_JURY_MEMBRE_handleClose_buton();
+
+ }}
+ className="bton_enreg_dialog">Envoyer mail }
+
+
+ {String(selected_conseil_class_proces_verbal_type) === "pdf" &&
+ {
+ Download_Jury_Conseil_Class_PV_PDF();
+ Dialog_PV_JURY_MEMBRE_handleClose_buton();
+ }}
+ >Télécharger }
+
+
+
+
+ Fermer
+
+
+
+
+
+
+ {/* FIN Dialog pour gerer les PV_JURY_MEMBRE */}
+
+
+
+
+ {/*** Dialog Gestion Apprenant concerné par le conseil de classe */}
+
+
null}
+
+ PaperProps={{
+
+
+ className: classes.paper, // Apply the paper style
+ style: {
+ overflowY: 'unset',
+ position: 'absolute',
+ top: '5rem',
+ margin: "2px",
+ },
+ }}
+ hideBackdrop={true}
+ disableScrollLock
+ classes={{
+ paper: classes.dialog
+ }}
+
+ PaperComponent={PaperComponent}
+ aria-labelledby="draggable-dialog-title"
+ >
+
+ Ajout apprenant
+
+
+
+
+
+
+ Choisir des apprenants
+ {Get_Conseil_Class_List_Apprenant_Not_Added_insc_result && Get_Conseil_Class_List_Apprenant_Not_Added_insc_result.length > 0 &&
+
{
+
+ settab_selected_apprenant([
+ ...fixedVal_apprenant,
+ ...value.filter((i) => fixedVal_apprenant.indexOf(i) === -1),
+ ]);
+
+ // console.log(" ### tab_selected_apprenant = ", tab_selected_apprenant)
+
+
+ }}
+
+ renderInput={(params) =>
+ }
+ />
+ }
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {
+ setselectionModel_jury_seance_participants(newSelectionModel);
+ /*if (newSelectionModel.length === 1)
+ handleClick_edit_employee_From_Line(newSelectionModel);*/
+ if (newSelectionModel.length !== 1) {
+ /* setsubmenu();
+ setdisplay_detail_employe();
+ setadd_One_Employee();*/
+ }
+ }}
+ selectionModel={selectionModel_jury_seance_participants}
+
+ localeText={frFR.components.MuiDataGrid.defaultProps.localeText}
+ rows={Get_Jury_List_Apprenant_Seance_insc_result.map((item, index) => (
+ {
+ id: index,
+ _id: JSON.parse(item)._id,
+ email: JSON.parse(item).email,
+ nom: JSON.parse(item).nom,
+ prenom: JSON.parse(item).prenom,
+
+ }
+ ))}
+
+ columns={columns_jury_seance_participant}
+ pageSize={10}
+ className="datagridclass"
+
+ onRowDoubleClick={(newSelectionModel) => {
+
+ }}
+
+ rowsPerPageOptions={[10]}
+
+ components={{
+ Toolbar: GridToolbar,
+ }}
+ //sx={datagridSx}
+ getCellClassName={(params) => {
+
+ }}
+ getRowClassName={(params) => {
+ // Pour la gestion de la couleur de zone double cliquée
+ if (String(params.row.id) === String(gridline_id)) {
+ return 'line--statut--selected';
+ }
+ else if (parseInt(String(params.row.id)) % 2 === 0) {
+ return 'line--statut--pair';
+ }
+ else if (parseInt(String(params.row.id)) % 2 !== 0) {
+ return 'line--statut--impair';
+ }
+
+
+ }}
+ getEstimatedRowHeight={() => 200}
+ getRowHeight={() => "auto"}
+ sx={{
+ "& .MuiDataGrid-cellContent": {
+ minHeight: 50,
+
+ }
+ }}
+
+ />
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Ajouter
+
+
+
+ Fermer
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {/*** Fin Dialog Gestion Apprenant concerné par le conseil de classe */}
+
+
+ {/* Dialog pour gerer les CLASS_CONSEIL_INFO */}
+
null}
+
+ PaperProps={{
+
+
+ className: classes.paper, // Apply the paper style
+ style: {
+ overflowY: 'unset',
+ position: 'absolute',
+ top: '7rem',
+ margin: "2px",
+ },
+ }}
+ hideBackdrop={true}
+ disableScrollLock
+ classes={{
+ paper: classes.dialog
+ }}
+
+ PaperComponent={PaperComponent}
+ aria-labelledby="draggable-dialog-title"
+
+ >
+
+ Observation conseil de classe
+
+
+ {Dialog_1_message}
+
+
+ Observation
+
+ {
+ setp_detail_class_conseil_observation(e.target.value);
+
+ }}
+
+ />
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {
+ Update_Conseil_Class_Apprenant_Observation();
+
+ }}
+ >Mettre à jour
+
+
+
+
+
+ Fermer
+
+
+
+
+
+
+ {/* FIN Dialog pour gerer les CLASS_CONSEIL_INFO */}
+
+
{/* Dialog pour gerer les JURY_INFO */}
-
+
Pièces jointes Convention
@@ -5109,7 +7538,10 @@ registerLocale('fr', fr);
-
+
Pièces jointes Convention
@@ -5223,434 +7655,6 @@ registerLocale('fr', fr);
- {/*** Dialog Gestion Apprenant concerné par le jury */}
-
-
null}
-
- PaperProps={{
-
-
- className: classes.paper, // Apply the paper style
- style: {
- overflowY: 'unset',
- position: 'absolute',
- top: '5rem',
- margin: "2px",
- },
- }}
- hideBackdrop={true}
- disableScrollLock
- classes={{
- paper: classes.dialog
- }}
-
- PaperComponent={PaperComponent}
- aria-labelledby="draggable-dialog-title"
- >
-
- Ajout apprenant
-
-
-
-
-
- Créneau
-
-
-
- {
- if (String(props.write_access) === "1" && String(p_detail_sequence_session_id) === "")
- return setStartDate(date);
- }
- }
-
-
- className="disabled_style enable_style datepicker_complement"
- locale={'fr'}
- showTimeSelect
- timeFormat="HH:mm"
- timeIntervals={15}
- dateFormat="dd/MM/yyyy HH:mm"
- is24Hour
-
- />
-
-
-
- Au
-
-
-
-
-
- {
- if (String(props.write_access) === "1" && String(p_detail_sequence_session_id) === "")
- return setendDate(date);
- }
- }
-
-
- className="disabled_style enable_style datepicker_complement"
- locale={'fr'}
- showTimeSelect
- timeFormat="HH:mm"
- timeIntervals={15}
- dateFormat="dd/MM/yyyy HH:mm"
- is24Hour
-
- />
-
-
-
-
-
-
- Adresse
-
-
-
-
Salle de soutenance
- {
- setp_detail_soutenance_salle(e.target.value);
-
- }
- }
-
- />
-
-
-
-
Adresse
- {
- setp_detail_soutenance_adresse(e.target.value);
-
- }
- }
-
- />
-
-
-
-
CP
- {
- setp_detail_soutenance_code_postal(e.target.value);
-
- }
- }
-
- />
-
-
-
-
Ville
- {
- setp_detail_soutenance_ville(e.target.value);
-
- }
- }
-
- />
-
-
-
-
Pays
- {
- setp_detail_soutenance_pays(e.target.value);
-
- }
- }
-
- />
-
-
-
-
-
-
-
- Apprenants
-
-
- Choisir des apprenants
- {New_Employee_Not_Member && New_Employee_Not_Member.length > 0 &&
-
{
-
- settab_selected_apprenant([
- ...fixedVal_apprenant,
- ...value.filter((i) => fixedVal_apprenant.indexOf(i) === -1),
- ]);
-
- // console.log(" ### tab_selected_apprenant = ", tab_selected_apprenant)
-
-
- }}
-
- renderInput={(params) =>
- }
- />
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {
- setselectionModel_jury_seance_participants(newSelectionModel);
- /*if (newSelectionModel.length === 1)
- handleClick_edit_employee_From_Line(newSelectionModel);*/
- if (newSelectionModel.length !== 1) {
- /* setsubmenu();
- setdisplay_detail_employe();
- setadd_One_Employee();*/
- }
- }}
- selectionModel={selectionModel_jury_seance_participants}
-
- localeText={frFR.components.MuiDataGrid.defaultProps.localeText}
- rows={Get_Jury_List_Apprenant_Seance_insc_result.map((item, index) => (
- {
- id: index,
- _id: JSON.parse(item)._id,
- email: JSON.parse(item).email,
- nom: JSON.parse(item).nom,
- prenom: JSON.parse(item).prenom,
-
- }
- ))}
-
- columns={columns_jury_seance_participant}
- pageSize={10}
- className="datagridclass"
-
- onRowDoubleClick={(newSelectionModel) => {
-
- }}
-
- rowsPerPageOptions={[10]}
-
- components={{
- Toolbar: GridToolbar,
- }}
- //sx={datagridSx}
- getCellClassName={(params) => {
-
- }}
- getRowClassName={(params) => {
- // Pour la gestion de la couleur de zone double cliquée
- if (String(params.row.id) === String(gridline_id)) {
- return 'line--statut--selected';
- }
- else if (parseInt(String(params.row.id)) % 2 === 0) {
- return 'line--statut--pair';
- }
- else if (parseInt(String(params.row.id)) % 2 !== 0) {
- return 'line--statut--impair';
- }
-
-
- }}
- getEstimatedRowHeight={() => 200}
- getRowHeight={() => "auto"}
- sx={{
- "& .MuiDataGrid-cellContent": {
- minHeight: 50,
-
- }
- }}
-
- />
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {selected_agenda_id && String(selected_agenda_id).length > 5 && Mise à Jour }
- {(!selected_agenda_id || String(selected_agenda_id).length < 5) && Ajouter }
-
-
-
- Fermer
-
-
-
-
-
-
-
-
-
-
-
-
-
- {/*** Fin Dialog Gestion Apprenant concerné par le jury */}
-
{/*** Dialog Gestion membre */}
@@ -5691,8 +7695,121 @@ registerLocale('fr', fr);
+ {New_Option_Type_Membre && New_Option_Type_Membre.length > 0 &&
+
Type de membre
+
Nouveau membre
+ options={New_Option_Type_Membre}
+ onChange={(event, value) => {
+ settab_selected_users([]);
+
+ if (value.value) {
+ setselected_type_membre_to_add(value.value);
+
+ if (value.value === "delege_class") {
+ Get_Conseil_Class_List_Delegue_Class_Not_Added();
+ }
+
+ if (value.value === "employe") {
+ Get_Conseil_Class_List_Membres_Not_Added();
+ }
+ }
+ else {
+ setselected_type_membre_to_add("");
+ }
+
+ }}
+
+ renderInput={(params) =>
+ }
+ />
+
+ }
+
+ {selected_type_membre_to_add && selected_type_membre_to_add === "delege_class" &&
+
Delegué de classe
+ {New_Get_Conseil_Class_List_Delegue_Class_Not_Added_insc_result && New_Get_Conseil_Class_List_Delegue_Class_Not_Added_insc_result.length > 0 &&
+
{
+
+ settab_selected_users([
+ ...fixedVal,
+ ...value.filter((i) => fixedVal.indexOf(i) === -1),
+ ]);
+
+
+ }}
+
+ renderInput={(params) =>
+ }
+ />
+ }
+
+ }
+
+ {selected_type_membre_to_add && selected_type_membre_to_add === "employe" &&
+
+
+
+ Ressouces humains
+
+
+ {New_Get_Conseil_Class_List_Membres_Not_Added_insc_result && New_Get_Conseil_Class_List_Membres_Not_Added_insc_result.length > 0 &&
+
{
+
+ settab_selected_users([
+ ...fixedVal,
+ ...value.filter((i) => fixedVal.indexOf(i) === -1),
+ ]);
+
+
+ }}
+
+ renderInput={(params) =>
+ }
+ />
+ }
+
+ }
+
+
+
+ {/*
Nouveau membre
{New_Employee_Not_Member && New_Employee_Not_Member.length > 0 &&
+ renderInput={(params) =>
}
/>
}
-
+
*/}
Rôle
@@ -5749,7 +7868,6 @@ registerLocale('fr', fr);
-
Ajouter
@@ -5811,7 +7929,7 @@ registerLocale('fr', fr);
{Dialog_1_message}
- {New_Getall_TrainingSession_result &&
+ {New_Getall_TrainingSession_result && New_Getall_TrainingSession_result.length > 0 && selected_session_id &&
Promotion
@@ -5829,7 +7947,7 @@ registerLocale('fr', fr);
}
- {New_Option_Cible_Jury && New_Option_Cible_Jury.length > 0 &&
+ {/*New_Option_Cible_Jury && New_Option_Cible_Jury.length > 0 &&
Cible
@@ -5839,13 +7957,13 @@ registerLocale('fr', fr);
sx={{ '& legend': { display: 'none' }, '& fieldset': { top: 0 }, }}
name="dialog_detail_jury_cible"
id="dialog_detail_jury_cible"
- fullWidth
+
value={New_Option_Cible_Jury.filter((data) => (data).id === String(selected_jury_cible))[0].label}
/>
-
}
+
*/}
@@ -5854,7 +7972,7 @@ registerLocale('fr', fr);
- {New_Get_List_UE_From_Session_Id_result && New_Get_List_UE_From_Session_Id_result.length > 0 &&
+ {New_Get_List_UE_From_Session_Id_result && New_Get_List_UE_From_Session_Id_result.length > 0 && jury_seance_ue_id &&
{
if (value && value.value) {
if (String(value.value) === "supprimer"
- || String(value.value) === "convocation_jury") {
+ || String(value.value) === "convocation_jury"
+ || String(value.value) === "proces_verbal_conseil_class") {
setactionmass_ftion_val(value.value);
}
else {
@@ -6530,8 +8653,21 @@ registerLocale('fr', fr);
}
/>
+ {actionmass_ftion_val && String(actionmass_ftion_val) === "proces_verbal_conseil_class" &&
+ {
+ settab_conseil_class_proces_verbal_pieces_jointes_result([])
+ setselected_conseil_class_proces_verbal_type("");
+ setselected_conseil_class_proces_verbal_email_destinataire_prod();
+ setselected_conseil_class_proces_verbal_email_test();
- {actionmass_ftion_val && String(actionmass_ftion_val) !== "supprimer" &&
+ setDialog_PV_JURY_MEMBRE_open(true);
+ }}>
+ Traiter
+
+
+ }
+
+ {actionmass_ftion_val && String(actionmass_ftion_val) === "convocation_jury" &&
{
settab_jury_convocation_membre_pieces_jointes_result([])
setselected_jury_convocation_membre_type("");
@@ -6633,9 +8769,11 @@ registerLocale('fr', fr);
{
selected_id && String(selected_id).length > 5 &&
-
Détail Jury
+
Détail Conseil Class
Membres
-
Soutenance
+
Apprenants
+
Délibération
+ {/*
Soutenance */}
Pièces Jointes
{String(history_securite_read) === "1" &&
Historique }
@@ -6649,7 +8787,10 @@ registerLocale('fr', fr);
{String(display_jury) === "1" && String(add_one_jury) !== "1" &&
-
Détail Conseil Classe
+
Détail Conseil Classe
{String(equipe_data_edit_mode) !== "1" &&
@@ -6677,47 +8818,69 @@ registerLocale('fr', fr);
+
Formation
+ {New_Getall_Partner_Class_Reduice_Fields_result && New_Getall_Partner_Class_Reduice_Fields_result.length > 0 &&
+ p_detail_class_id && (data)._id === String(p_detail_class_id))[0].label}
+
+ />}
+
+
+
+
Promotion 1
- {New_Getall_TrainingSession_result && New_Getall_TrainingSession_result.length > 0 && 0 && selected_session_id &&
+ (data)._id === String(selected_session_id))[0].label}
+ InputLabelProps={{
+ shrink: true,
+ }}
+ disabled={false}
+ className="disabled_style"
+ value={New_Getall_TrainingSession_result.filter((data) => (data)._id === String(selected_session_id))[0].label}
- />}
+ />}
Cible
- {New_Option_Cible_Jury && New_Option_Cible_Jury.length > 0 && 0 && selected_jury_cible &&
+ (data).id === String(selected_jury_cible))[0].label}
+ InputLabelProps={{
+ shrink: true,
+ }}
+ disabled={false}
+ className="disabled_style"
+ value={New_Option_Cible_Jury.filter((data) => (data).id === String(selected_jury_cible))[0].label}
- />}
+ />}
{selected_jury_cible && New_Option_Cible_Jury &&
New_Get_List_UE_From_Session_Id_result && New_Get_List_UE_From_Session_Id_result.length > 0 &&
-
Matière
+
Unite D'enseignement
-
- Site & Adresse 1
+
+ Groupe d'apprenants - Groupe (TD, TP, etc)
+
+
Type de Groupe
+ {New_Option_type_goupe && New_Option_type_goupe.length > 0 && New_Getall_Partner_Groupe_Inscrit_result.length > 0 &&
+
+ (data).id === String(selected_type_groupe))[0].label}
+
+ />}
+
+
+
+
Groupe
+ {New_Getall_Partner_Groupe_Inscrit_result && New_Getall_Partner_Groupe_Inscrit_result.length > 0 &&
+ (data)._id === String(selected_class_groupe_id))[0].label}
+
+ />}
+
+
+
+
+
+
+ Créneau & Adresse 1
+
+
+
+
Début
+
+
+
+
+
Fin
+
+
+
+
+
+
Salle
- {New_Getall_TrainingSession_result && Promotion 2
-
Formation
+ {New_Getall_Partner_Class_Reduice_Fields_result && New_Getall_Partner_Class_Reduice_Fields_result.length > 0 &&
+
+ (data)._id === String(p_detail_class_id))[0].label}
+ onChange={(event, value) => {
+ if (value && value._id) {
+
+ Get_List_UE_From_Class_Id(value._id);
+ setp_detail_class_id(value._id);
+ setp_detail_class_internal_url(value.internal_url);
+ setevaluation_data_changed("1");
+ } else {
+
+ Get_List_UE_From_Class_Id("");
+ setp_detail_class_id("");
+ setp_detail_class_internal_url("");
+ setevaluation_data_changed("1");
+ }
- options={New_Getall_TrainingSession_result}
- value={New_Getall_TrainingSession_result.filter((data) => (data)._id === String(selected_session_id))[0].label}
- onChange={(event, value) => {
- if (value && value._id) {
- setselected_session_id(value._id);
- Get_List_UE_From_Session_Id(value._id);
- } else {
setselected_session_id("");
- setNew_Get_List_UE_From_Session_Id_result([]);
- setGet_List_UE_From_Session_Id_result([])
+ setselected_ue_id("");
+ setselected_type_groupe("");
+ setselected_class_groupe_id("");
+ setequipe_data_changed("1");
+ }}
+
+ renderInput={(params) =>
}
-
- setselected_jury_cible("");
-
- }}
-
- renderInput={(params) =>
- }
- />
- }
+ }
- {New_Option_Cible_Jury && New_Option_Cible_Jury.length > 0 && Cible
-
+ Promotion
+ {New_Getall_Partner_Session_Reduice_Fields_result && New_Getall_Partner_Session_Reduice_Fields_result.length > 0 &&
+
(data).class_id === String(p_detail_class_id))}
- name="detail_jury_cible"
- id="detail_jury_cible"
+ value={New_Getall_Partner_Session_Reduice_Fields_result.filter((data) => (data)._id === String(selected_session_id))[0].label}
+ onChange={(event, value) => {
+ if (value && value._id) {
+ setselected_session_id(value._id);
+ Get_List_UE_From_Session_Id(value._id);
+ } else {
+ setselected_session_id("");
+ setNew_Get_List_UE_From_Session_Id_result([]);
+ setGet_List_UE_From_Session_Id_result([]);
+
+ }
+ setselected_ue_id("");
+ setequipe_data_changed("1");
+ setNew_Getall_Partner_Groupe_Inscrit_result([]);
+ setGetall_Partner_Groupe_Inscrit_result([]);
+ setselected_type_groupe("");
+ setselected_class_groupe_id("");
+ }}
+
+ renderInput={(params) =>
+ }
+ />
+
+ }
+
+
+
+ {/*New_Option_Cible_Jury && New_Option_Cible_Jury.length > 0 && Cible
+
+ (data).id === String(selected_jury_cible))[0].label}
- onChange={(event, value) => {
- if (value && value.id) {
- setselected_jury_cible(value.id);
- } else {
- setselected_jury_cible("");
- }
- setselected_ue_id("");
-
- }}
-
- renderInput={(params) =>
- }
/>
-
}
+ */}
+
+ Unite D'enseignement
+ {New_Getall_Partner_List_UE_result && New_Getall_Partner_List_UE_result.length > 0 &&
+
+
(data).class_id === String(p_detail_class_id))}
+ value={New_Getall_Partner_List_UE_result.filter((data) => (data)._id === String(selected_ue_id))[0].label}
+
+ onChange={(event, value) => {
+ if (value && value._id) {
+ setselected_ue_id(value._id);
+ } else {
+ setselected_ue_id("");
+ }
+ setequipe_data_changed("1");
+ }}
+
+ renderInput={(params) =>
+ }
+ />
+
+ }
+
+
+
+
{selected_jury_cible && String(selected_jury_cible) === "soutenance" && New_Option_Cible_Jury &&
New_Get_List_UE_From_Session_Id_result && New_Get_List_UE_From_Session_Id_result.length > 0 &&
- Matière
+
Unite D'enseignement
{
setp_detail_description(e.target.value);
setequipe_data_changed("1");
-
}
}
/>
+
Email Diffusion
- Responsable
+
Responsable
{New_Getall_Training_Employee_No_Filter_result && New_Getall_Training_Employee_No_Filter_result.length > 0 &&
+
-
- Site & Adresse 2
+
+ Groupe d'apprenants - Groupe (TD, TP, etc)
+
+
Type de groupe edit
+ {New_Option_type_goupe && New_Option_type_goupe.length > 0 &&
+
(data).id === String(selected_type_groupe))[0].label}
+ onChange={(event, value) => {
+ if (value && value.value) {
+ setselected_type_groupe(value.value);
+ Getall_Partner_Groupe_Inscrit(selected_session_id, value.value);
+ } else {
+ setselected_type_groupe("");
+ setNew_Getall_Partner_Groupe_Inscrit_result([]);
+ setGetall_Partner_Groupe_Inscrit_result([]);
+ }
+ setselected_class_groupe_id("");
+ setequipe_data_changed("1");
+
+ }}
+
+ renderInput={(params) =>
+ }
+ />
+
+ }
+
+
+
+
Groupe
+ {New_Getall_Partner_Groupe_Inscrit_result && New_Getall_Partner_Groupe_Inscrit_result.length > 0 &&
+
+
(data)._id === String(selected_class_groupe_id))[0].label}
+
+ onChange={(event, value) => {
+ if (value && value._id) {
+ setselected_class_groupe_id(value._id);
+
+ } else {
+ setselected_class_groupe_id("");
+
+
+ }
+ setequipe_data_changed("1");
+ }}
+
+ renderInput={(params) =>
+ }
+ />
+
+ }
+
+
+
+
+
+
+
+ Créneau & Adresse
+
+
+
+
Début
+ {
+ setp_detail_jury_date_heure_debut(format(date, 'dd/MM/yyyy HH:mm'));
+ setequipe_data_changed("1");
+ }
+ }
+
+
+ className="disabled_style enable_style"
+ locale={'fr'}
+ showTimeSelect
+ timeFormat="HH:mm"
+ timeIntervals={15}
+ dateFormat="dd/MM/yyyy HH:mm"
+ is24Hour
+
+ />
+
+
+
+
+
Fin
+ {
+
+ setp_detail_jury_date_heure_fin(format(date, 'dd/MM/yyyy HH:mm'));
+ setequipe_data_changed("1");
+ }
+ }
+
+
+ className="disabled_style enable_style"
+ locale={'fr'}
+ showTimeSelect
+ timeFormat="HH:mm"
+ timeIntervals={15}
+ dateFormat="dd/MM/yyyy HH:mm"
+ is24Hour
+
+ />
+
+
+
+
Salle
- Ajouter un conseil
+ Ajouter un conseil
@@ -7424,72 +9879,143 @@ registerLocale('fr', fr);
- {New_Getall_TrainingSession_result &&
Promotion
-
(data)._id === String(selected_session_id))[0].label}
- onChange={(event, value) => {
- if (value && value._id) {
- setselected_session_id(value._id);
- Get_List_UE_From_Session_Id(value._id);
- } else {
+ Formation
+ {New_Getall_Partner_Class_Reduice_Fields_result && New_Getall_Partner_Class_Reduice_Fields_result.length > 0 &&
+
+
(data)._id === String(p_detail_class_id))[0].label}
+ onChange={(event, value) => {
+ if (value && value._id) {
+
+ Get_List_UE_From_Class_Id(value._id);
+ setp_detail_class_id(value._id);
+ setp_detail_class_internal_url(value.internal_url);
+ setevaluation_data_changed("1");
+ } else {
+
+ Get_List_UE_From_Class_Id("");
+
+ setp_detail_class_id("");
+ setp_detail_class_internal_url("");
+ setevaluation_data_changed("1");
+ }
setselected_session_id("");
- setselected_session_id("");
- setNew_Get_List_UE_From_Session_Id_result([]);
- setGet_List_UE_From_Session_Id_result([])
+ setselected_ue_id("");
+ setselected_class_groupe_id("");
+ }}
+
+ renderInput={(params) =>
}
- setselected_jury_cible("");
-
- }}
-
- renderInput={(params) =>
- }
- />
- }
+ }
+
+
+
Promotion
+ {New_Getall_Partner_Session_Reduice_Fields_result && New_Getall_Partner_Session_Reduice_Fields_result.length > 0 &&
+
+
(data).class_id === String(p_detail_class_id))}
+
+ value={New_Getall_Partner_Session_Reduice_Fields_result.filter((data) => (data)._id === String(selected_session_id))[0].label}
+ onChange={(event, value) => {
+ if (value && value._id) {
+ setselected_session_id(value._id);
+ Get_List_UE_From_Session_Id(value._id);
+
+ } else {
+ setselected_session_id("");
+ setNew_Get_List_UE_From_Session_Id_result([]);
+ setGet_List_UE_From_Session_Id_result([]);
+ }
+ setNew_Getall_Partner_Groupe_Inscrit_result([]);
+ setGetall_Partner_Groupe_Inscrit_result([]);
+ setselected_ue_id("");
+ setselected_class_groupe_id("");
+ }}
+
+ renderInput={(params) =>
+ }
+ />
+
+ }
+
+
+
+
Unite D'enseignement
+ {New_Getall_Partner_List_UE_result && New_Getall_Partner_List_UE_result.length > 0 &&
+
+
(data).class_id === String(p_detail_class_id))}
+ value={New_Getall_Partner_List_UE_result.filter((data) => (data)._id === String(selected_ue_id))[0].label}
+
+ onChange={(event, value) => {
+ if (value && value._id) {
+ setselected_ue_id(value._id);
+ setevaluation_data_changed("1");
+ } else {
+ setselected_ue_id("");
+ setevaluation_data_changed("1");
+ }
+ }}
+
+ renderInput={(params) =>
+ }
+ />
+
+ }
+
+
+
+ {/*New_Option_Cible_Jury && New_Option_Cible_Jury.length > 0 &&
Cible
- {New_Option_Cible_Jury && New_Option_Cible_Jury.length > 0 &&
Cible
-
(data).id === String(selected_jury_cible))[0].label}
- onChange={(event, value) => {
- if (value && value.id) {
- setselected_jury_cible(value.id);
- } else {
- setselected_jury_cible("");
- }
- setselected_ue_id("");
-
- }}
-
- renderInput={(params) =>
- }
/>
- }
+
*/}
{selected_jury_cible && String(selected_jury_cible) === "soutenance" && New_Option_Cible_Jury &&
New_Get_List_UE_From_Session_Id_result && New_Get_List_UE_From_Session_Id_result.length > 0 &&
-
Matière
+
Unite D'enseignement
-
- Classe
+
+ Groupe d'apprenants - Groupe (TD, TP, etc)
-
Cible
- Groupe (TD, TP, etc) zzzz
+
+
Type de groupe
+ {New_Option_type_goupe && New_Option_type_goupe.length > 0 &&
+
{
+ if (value && value.value) {
+ setselected_type_groupe(value.value);
+ Getall_Partner_Groupe_Inscrit(selected_session_id, value.value);
+ } else {
+ setselected_type_groupe("");
+ setNew_Getall_Partner_Groupe_Inscrit_result([]);
+ setGetall_Partner_Groupe_Inscrit_result([]);
+ }
+ setselected_class_groupe_id("");
+
+ }}
+
+ renderInput={(params) =>
+ }
+ />
+
+ }
+
Groupe
+ {New_Getall_Partner_Groupe_Inscrit_result && New_Getall_Partner_Groupe_Inscrit_result.length > 0 &&
+ selected_session_id &&
+
(data)._id === String(selected_class_groupe_id))[0].label}
+
+ onChange={(event, value) => {
+ if (value && value._id) {
+ setselected_class_groupe_id(value._id);
+ setevaluation_data_changed("1");
+ } else {
+ setselected_class_groupe_id("");
+ setevaluation_data_changed("1");
+
+ }
+ }}
+
+ renderInput={(params) =>
+ }
+ />
+
+ }
+
+
- Site & Adresse 3
+ Créneau & Adresse 3
+
+
Début
+ {
+ setp_detail_jury_date_heure_debut(format(date, 'dd/MM/yyyy HH:mm'));
+ setevaluation_data_changed("1");
+ }
+ }
+
+
+ className="disabled_style enable_style"
+ locale={'fr'}
+ showTimeSelect
+ timeFormat="HH:mm"
+ timeIntervals={15}
+ dateFormat="dd/MM/yyyy HH:mm"
+ is24Hour
+
+ />
+
+
+
+
+
Fin
+ {
+
+ setp_detail_jury_date_heure_fin(format(date, 'dd/MM/yyyy HH:mm'));
+ setevaluation_data_changed("1");
+ }}
+
+
+ className="disabled_style enable_style"
+ locale={'fr'}
+ showTimeSelect
+ timeFormat="HH:mm"
+ timeIntervals={15}
+ dateFormat="dd/MM/yyyy HH:mm"
+ is24Hour
+
+ />
+
+
+
+
Salle
Membres d'équipe
-
+
}
+ {
+ String(submenu) === "apprenant" &&
+
+
Affichage des apprenants
+
+
+
+
+
+
+
+
+
+
+
+
+ {
+ setselectionModel_jury_seance_participants(newSelectionModel);
+ /*if (newSelectionModel.length === 1)
+ handleClick_edit_employee_From_Line(newSelectionModel);*/
+ if (newSelectionModel.length !== 1) {
+ /* setsubmenu();
+ setdisplay_detail_employe();
+ setadd_One_Employee();*/
+ }
+ }}
+ selectionModel={selectionModel_jury_seance_participants}
+
+ localeText={frFR.components.MuiDataGrid.defaultProps.localeText}
+ rows={Get_Jury_List_Apprenant_Seance_insc_result.map((item, index) => (
+ {
+ id: index,
+ _id: JSON.parse(item)._id,
+ email: JSON.parse(item).email,
+ nom: JSON.parse(item).nom,
+ prenom: JSON.parse(item).prenom,
+ jury_apprenant_observation: JSON.parse(item).jury_apprenant_observation,
+ observation_date: JSON.parse(item).observation_date,
+
+ }
+ ))}
+
+ columns={columns_jury_seance_participant}
+ pageSize={10}
+ className="datagridclass"
+
+ onRowDoubleClick={(newSelectionModel) => {
+
+ }}
+
+ rowsPerPageOptions={[10]}
+
+ components={{
+ Toolbar: GridToolbar,
+ }}
+ //sx={datagridSx}
+ getCellClassName={(params) => {
+
+ }}
+ getRowClassName={(params) => {
+ // Pour la gestion de la couleur de zone double cliquée
+ if (String(params.row.id) === String(gridline_id)) {
+ return 'line--statut--selected';
+ }
+ else if (parseInt(String(params.row.id)) % 2 === 0) {
+ return 'line--statut--pair';
+ }
+ else if (parseInt(String(params.row.id)) % 2 !== 0) {
+ return 'line--statut--impair';
+ }
+
+
+ }}
+ getEstimatedRowHeight={() => 200}
+ getRowHeight={() => "auto"}
+ sx={{
+ "& .MuiDataGrid-cellContent": {
+ minHeight: 50,
+
+ }
+ }}
+
+ />
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {
+ settab_selected_apprenant([]);
+ Get_Conseil_Class_List_Apprenant_Not_Added();
+ setDialog_Conseil_Class_Apprenant_open(true);
+ }}
+
+ className="detail_class_submenu bton_add_session"
+ id='menu_import_participant' name='menu_import_participant'>Ajout Apprenants
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
}
{
String(submenu) === "piece_jointe" &&
@@ -8285,6 +11088,163 @@ registerLocale('fr', fr);
}
+ {String(submenu) === "deliberation" &&
+
+
+
+
+ Bilan & Observation
+
+
+ editorRef_observation.current = editor}
+ initialValue={field_contenu_observation}
+ onKeyUp={field_contenu_observation_keyup}
+ disabled={!Boolean(edit_deliberation_fields)}
+
+ init={{
+ resize: false,
+ height: 300,
+ menubar: false,
+ editable_root: true,
+ plugins: [
+ 'advlist autolink lists link image charmap print preview anchor',
+ 'searchreplace visualblocks code fullscreen',
+ 'insertdatetime media table paste code help wordcount'
+ ],
+
+ content_style: 'body { font-family:DM Sans,sans-serif; font-size:14px; }'
+ }}
+ />
+
+
+
+
+ Décision
+
+
+ editorRef_decision.current = editor}
+ initialValue={field_contenu_decision}
+ onKeyUp={field_contenu_decision_keyup}
+ disabled={!Boolean(edit_deliberation_fields)}
+
+ init={{
+ resize: false,
+ height: 300,
+ menubar: false,
+ editable_root: true,
+ plugins: [
+ 'advlist autolink lists link image charmap print preview anchor',
+ 'searchreplace visualblocks code fullscreen',
+ 'insertdatetime media table paste code help wordcount'
+ ],
+
+ content_style: 'body { font-family:DM Sans,sans-serif; font-size:14px; }'
+ }}
+ />
+
+
+
+
+
+ Recommandation
+
+
+ editorRef_recommandation.current = editor}
+ initialValue={field_contenu_recommandation}
+ onKeyUp={field_contenu_recommandation_keyup}
+ disabled={!Boolean(edit_deliberation_fields)}
+
+ init={{
+ resize: false,
+ height: 300,
+ menubar: false,
+ editable_root: true,
+ plugins: [
+ 'advlist autolink lists link image charmap print preview anchor',
+ 'searchreplace visualblocks code fullscreen',
+ 'insertdatetime media table paste code help wordcount'
+ ],
+
+ content_style: 'body { font-family:DM Sans,sans-serif; font-size:14px; }'
+ }}
+ />
+
+
+
+
+
+
+ Commentaire
+
+
+ editorRef_comment.current = editor}
+ initialValue={field_contenu_comment}
+ onKeyUp={field_contenu_comment_keyup}
+ disabled={!Boolean(edit_deliberation_fields)}
+
+ init={{
+ resize: false,
+ height: 300,
+ menubar: false,
+ editable_root: true,
+ plugins: [
+ 'advlist autolink lists link image charmap print preview anchor',
+ 'searchreplace visualblocks code fullscreen',
+ 'insertdatetime media table paste code help wordcount'
+ ],
+
+ content_style: 'body { font-family:DM Sans,sans-serif; font-size:14px; }'
+ }}
+ />
+
+
+
+
+
+ {String(props.check_user_acces_right("jury", "write")) === "1" && String(edit_deliberation_fields) === "1" && String(equipe_data_changed) === "1" &&
+ /!\ Pensez à enregistrer les modifications
+
}
+
+ {String(props.check_user_acces_right("jury", "write")) === "1" && String(edit_deliberation_fields) === "1" &&
+
+
+
+
+
+ Enregistrer
+
+
+
+
+
+ Annuler
+
+
+
+
+
+
+
+
}
+
+ {String(edit_deliberation_fields) !== "1" &&
+
+ {String(props.check_user_acces_right("jury", "write")) === "1" && Editer
+ }
+
+
}
+
+
+
+
+
+
+
+
}
{
String(submenu) === "planning" &&
@@ -8678,7 +11638,7 @@ registerLocale('fr', fr);
-
Délibération du Jury
+
Délibération du Jury
{String(soutenance_data_edit_mode) !== "1" &&
diff --git a/src/components/DisplayPartnerPromotion.js b/src/components/DisplayPartnerPromotion.js
index a9c781b..5a0e11c 100644
--- a/src/components/DisplayPartnerPromotion.js
+++ b/src/components/DisplayPartnerPromotion.js
@@ -321,6 +321,8 @@ const DisplayPartnerPromotion = (props) => {
},
+ { field: 'entre_scolaire', headerName: 'Entrée Scol.', hide: false, minWidth: 150, flex: 1, renderCell: (params) =>
, },
+
{ field: 'code_session', headerName: 'Code Promo', hide: false, minWidth: 200, flex: 1, renderCell: (params) =>
, },
{ field: 'session_title', headerName: 'Titre', hide: false, flex: 1, minWidth: 250, renderCell: (params) =>
, },
@@ -405,7 +407,7 @@ const DisplayPartnerPromotion = (props) => {
{ field: 'nb_inscrit', headerName: 'Insc', minWidth: 20, align: "center", hide: true, hideable: true, renderCell: (params) =>
, },
{ field: 'nb_preinscrit', headerName: 'Preinsc.', minWidth: 20, align: "center", hide: false, hideable: true, renderCell: (params) =>
, },
{
- field: 'prix_session', headerName: 'Prix', minWidth: 20, align: "center",
+ field: 'prix_session', headerName: 'Prix', minWidth: 20, align: "center", hide: false,
renderCell: (params) =>
,
},
{ field: 'title', headerName: 'Formation', minWidth: 250, flex: 1, align: "center", hide: true, hideable: true, renderCell: (params) =>
, },
@@ -415,13 +417,13 @@ const DisplayPartnerPromotion = (props) => {
{ field: 'site_formation_id', headerName: 'site_formation_id', with: 0, align: "center", hide: true, disableExport: true, },
- { field: 'qty_in_quotation', headerName: 'Place Non validé ', with: 150, align: "center", hide: false, renderCell: (params) =>
, },
- { field: 'qty_in_quotation_list_quotation', headerName: 'List Devis ', with: 150, align: "center", hide: false, renderCell: (params) =>
, },
+ { field: 'qty_in_quotation', headerName: 'Place Non validé ', with: 150, align: "center", hide: true, renderCell: (params) =>
, },
+ { field: 'qty_in_quotation_list_quotation', headerName: 'List Devis ', with: 150, align: "center", hide: true, renderCell: (params) =>
, },
{ field: 'site_formation_nom', headerName: 'Site Ftion', with: 150, align: "center", hide: true, renderCell: (params) =>
, },
{
- field: 'invoiced_statut', headerName: 'Facturé', minWidth: 100, flex: 1, maxWidth: 150, hide: false, editable: false,
+ field: 'invoiced_statut', headerName: 'Facturé', minWidth: 100, flex: 1, maxWidth: 150, hide: true, editable: false,
renderCell: (cellValues) => {
return (
@@ -2199,6 +2201,8 @@ const DisplayPartnerPromotion = (props) => {
var local_archive = JSON.parse(x).archive;
+ var local_entre_scolaire = JSON.parse(x).entre_scolaire;
+
var local_session_nb_participant = JSON.parse(x).nb_participant;
var local_session_nb_inscrit = JSON.parse(x).nb_inscrit;
var local_session_taux_remplissage = String(parseFloat(String(JSON.parse(x).taux_remplissage)).toFixed(2));
@@ -2224,6 +2228,7 @@ const DisplayPartnerPromotion = (props) => {
"nb_inscrit": local_session_nb_inscrit,
"taux_remplissage": local_session_taux_remplissage,
"archive": local_archive,
+ "entre_scolaire": local_entre_scolaire,
};
new_data2.push(node);
setTaskStatus(new_data2);
@@ -2259,6 +2264,7 @@ const DisplayPartnerPromotion = (props) => {
"date_fin": local_date_fin,
"session_etape": local_session_etape,
"archive": local_archive,
+ "entre_scolaire": local_entre_scolaire,
"is_session_alert": local_is_session_alert,
"invoiced_statut": local_invoiced_statut,
"session_alert_message": local_session_alert_message,
@@ -2293,6 +2299,7 @@ const DisplayPartnerPromotion = (props) => {
"session_alert_message": "",
"class_id": "",
"archive": "",
+ "entre_scolaire": "",
};
new_data2.push(node);
@@ -6018,6 +6025,11 @@ const DisplayPartnerPromotion = (props) => {
document.getElementsByName("site_formation")[0].style.backgroundColor = "#ECEFF1";
}
+ if (document.getElementsByName("entree_scolaire")[0]) {
+ document.getElementsByName("entree_scolaire")[0].disabled = true;
+ document.getElementsByName("entree_scolaire")[0].style.backgroundColor = "#ECEFF1";
+ }
+
// Pour les champs spécifiques
if (String(addOneSession) !== "1") {
@@ -6190,6 +6202,11 @@ const DisplayPartnerPromotion = (props) => {
document.getElementsByName("site_formation")[0].style.backgroundColor = "#FFFFFF ";
}
+ if (document.getElementsByName("entree_scolaire")[0]) {
+ document.getElementsByName("entree_scolaire")[0].disabled = false;
+ document.getElementsByName("entree_scolaire")[0].style.backgroundColor = "#FFFFFF ";
+ }
+
// Pour les champs spécifiques
for (let i = 0; i < rows_champs_specifics.length; i++) {
@@ -6580,6 +6597,9 @@ const DisplayPartnerPromotion = (props) => {
form.append("titre", p_detail_titre);
form.append("location_type", p_detail_location_type);
+
+ form.append("entre_scolaire", p_detail_entre_scolaire);
+
form.append("is_bpf", p_detail_is_bpf);
form.append("price_by", p_prix_session_by);
@@ -6863,7 +6883,10 @@ const DisplayPartnerPromotion = (props) => {
//form.append("formateur", p_one_formateur);
form.append("formateur_id", p_one_formateur_id);
form.append("titre", p_one_titre);
- form.append("location_type", p_one_location_type);
+ // form.append("location_type", p_one_location_type);
+
+ form.append("entre_scolaire", p_detail_entre_scolaire);
+
form.append("is_bpf", p_one_is_bpf);
form.append("price_by", p_one_prix_session_by);
@@ -6897,8 +6920,6 @@ const DisplayPartnerPromotion = (props) => {
form.append("date_fin_inscription", "");
}
-
-
form.append("attestation_certif", "");
form.append("type_session", "1");
@@ -7093,7 +7114,7 @@ const DisplayPartnerPromotion = (props) => {
if (String(res.data.status) === "true") {
//console.log(" In GetCurrentSession res.data.status = " + res.data.status);
- //console.log(" In GetCurrentSession res.data.message r_class = " + res.data.message);
+ // console.log(" In GetCurrentSession res.data.message r_class = " + res.data.message);
//console.log(" In GetCurrentSession res.data.message len = " + String(res.data.message).length);
setLoading(false);
@@ -7109,6 +7130,8 @@ const DisplayPartnerPromotion = (props) => {
if (mylocaltraining.session_status) {
setp_session_status(mylocaltraining.session_status);
var result2 = status_tab.filter((local_mymanager) => local_mymanager.value === String((mylocaltraining.session_status)))
+
+ // console.log(" ### session_status = ", result2)
if (result2[0])
setp_session_status_label(result2[0].label);
@@ -7137,6 +7160,13 @@ const DisplayPartnerPromotion = (props) => {
}
}
+ if (mylocaltraining.entre_scolaire) {
+ setp_detail_entre_scolaire(mylocaltraining.entre_scolaire);
+ } else {
+ setp_detail_entre_scolaire("");
+ }
+
+
if (mylocaltraining.nb_valide_inscription_entreprise) {
setnb_valide_inscription_entreprise(mylocaltraining.nb_valide_inscription_entreprise);
} else {
@@ -9318,6 +9348,9 @@ const DisplayPartnerPromotion = (props) => {
const [p_detail_titre, setp_detail_titre] = useState();
+ const [p_detail_entre_scolaire, setp_detail_entre_scolaire] = useState("");
+
+
const [p_detail_location_type, setp_detail_location_type] = useState();
const [p_detail_location_type_label, setp_detail_location_type_label] = useState("");
@@ -9361,6 +9394,16 @@ const DisplayPartnerPromotion = (props) => {
value: '0',
label: 'Inactif',
},
+
+ {
+ value: '2',
+ label: 'Clôturer',
+ },
+
+ {
+ value: '-1',
+ label: 'Annulé',
+ },
];
@@ -13631,7 +13674,8 @@ const DisplayPartnerPromotion = (props) => {
setalert_message("Impossible de générer le QR code (2) ");
setalert_type("error");
} else {
- fileDownload(res.data, nom_fichier_cmd)
+ fileDownload(res.data, nom_fichier_cmd);
+ GetListeEmargement(selected_session_id, selected_internal_url);
}
}).catch((error) => {
@@ -14750,6 +14794,17 @@ const DisplayPartnerPromotion = (props) => {
const [info_affiche_place_disponible, setinfo_affiche_place_disponible] = useState("");
+ const New_Option_Entre_Scolaire = [
+ { "id": "2024", "label": "2024/2025", "value": "2024" },
+ { "id": "2025", "label": "2025/2026", "value": "2025" },
+ { "id": "2026", "label": "2026/2027", "value": "2026" },
+ { "id": "2027", "label": "2027/2028", "value": "2027" },
+ { "id": "2028", "label": "2028/2029", "value": "2028" },
+ { "id": "", "label": "", "value": "" },
+ ]
+
+
+
const New_Option_pres_dist_hyp = [
{ "id": "1", "label": "Distanciel", "value": "1" },
{ "id": "2", "label": "Hybride", "value": "2" },
@@ -20095,6 +20150,7 @@ const DisplayPartnerPromotion = (props) => {
class_id: JSON.parse(item).class_id,
class_lms_class_code: JSON.parse(item).class_lms_class_code,
archive: JSON.parse(item).archive,
+ entre_scolaire: JSON.parse(item).entre_scolaire,
}
@@ -21918,22 +21974,21 @@ const DisplayPartnerPromotion = (props) => {
/>
- {edit_session_form &&
Emplacement
+ {edit_session_form && New_Option_Entre_Scolaire.length > 0 &&
Entrée Scolaire
+
(data).value === String(p_detail_entre_scolaire))[0].label}
onChange={(event, value) => {
if (value && value.value) {
- setp_detail_location_type(value.value);
- setp_detail_location_type_label(value.label);
+ setp_detail_entre_scolaire(value.value);
IssessionChanged();
} else {
- setp_detail_location_type("");
- setp_detail_location_type_label("");
+ setp_detail_entre_scolaire("");
IssessionChanged();
}
}}
@@ -21946,26 +22001,28 @@ const DisplayPartnerPromotion = (props) => {
/>
-
}
- {!edit_session_form &&
Emplacement
+
+ {!edit_session_form && New_Option_Entre_Scolaire.length > 0 &&
Entrée Scolaire
+
(data).value === String(p_detail_entre_scolaire))[0].label}
/>
+
}
@@ -22202,7 +22259,7 @@ const DisplayPartnerPromotion = (props) => {
/>
}
- {!edit_session_form && String(p_session_status) === "0" &&
Statut
+ {!edit_session_form && String(p_session_status) !== "1" &&
Statut
{
filterTime={filterPassedTime_end}
dateFormat="dd/MM/yyyy"
className="disabled_style"
- locale={'fr'}
+ locale={'fr'}
/>
Nombre Places
@@ -22481,7 +22538,7 @@ const DisplayPartnerPromotion = (props) => {
//filterTime={filterPassedTime_end}
dateFormat="dd/MM/yyyy"
className="disabled_style"
- locale={'fr'}
+ locale={'fr'}
/>
}
@@ -22964,22 +23021,21 @@ const DisplayPartnerPromotion = (props) => {
/>
-
Emplacement
+
+ {New_Option_Entre_Scolaire.length > 0 &&
Entrée Scolaire
(data).value === String(p_detail_entre_scolaire))[0].label}
onChange={(event, value) => {
if (value && value.value) {
- setp_one_location_type(value.value);
- setp_one_location_type_label(value.label);
+ setp_detail_entre_scolaire(value.value);
} else {
- setp_one_location_type("");
- setp_one_location_type_label("");
+ setp_detail_entre_scolaire("");
}
}}
@@ -22990,7 +23046,8 @@ const DisplayPartnerPromotion = (props) => {
}
/>
-
+
}
+
Site de Formation
@@ -23272,7 +23329,7 @@ const DisplayPartnerPromotion = (props) => {
filterTime={filterPassedTime_end}
dateFormat="dd/MM/yyyy"
className="disabled_style enable_style"
- locale={'fr'}
+ locale={'fr'}
/>
@@ -23323,7 +23380,7 @@ const DisplayPartnerPromotion = (props) => {
//filterTime={filterPassedTime_end}
dateFormat="dd/MM/yyyy"
className="disabled_style enable_style"
- locale={'fr'}
+ locale={'fr'}
/>
}
@@ -26862,7 +26919,7 @@ const DisplayPartnerPromotion = (props) => {
}}>Imprimer la liste
{
GetListeEmargement(selected_session_id, selected_internal_url);
- }}>Actualiser la liste
+ }}>Actualiser
@@ -27336,12 +27393,12 @@ const DisplayPartnerPromotion = (props) => {
{
Getall_Survey_hot_evaluation_By_Session();
- }}>Actualiser la liste
+ }}>Actualiser
{
Export_survey_hot_eval_datatab_class();
- }}>Exporter (excel)
+ }}>Export excel
diff --git a/src/components/DisplayPartnerSession.js b/src/components/DisplayPartnerSession.js
index 6277b30..0be2eca 100644
--- a/src/components/DisplayPartnerSession.js
+++ b/src/components/DisplayPartnerSession.js
@@ -161,7 +161,7 @@ const useStyles = makeStyles((theme) => ({
const DisplayPartnerSession = (props) => {
- registerLocale('fr', fr);
+ registerLocale('fr', fr);
const stored_cookie_session_display_view = getCookie('mysy_session_display_view');
const stored_cookie_session_data_row_grouped_by = getCookie('mysy_session_data_row_grouped_by');
@@ -1643,10 +1643,8 @@ const DisplayPartnerSession = (props) => {
);
},
},
-
-
]
-
+
const columns_list_emargement = [
{ field: 'id', headerName: 'id', hide: true },
{ field: '_id', headerName: '_id', hide: true },
@@ -1674,6 +1672,8 @@ const DisplayPartnerSession = (props) => {
);
},
},
+ { field: 'mode_envoi', headerName: 'Mode Envoi', minwidth: 200, flex: 1, hide: true, editable: false, renderCell: (params) =>
, },
+
{ field: 'time_in_hour', headerName: 'Nb Heure', minWidth: 100, flex: 1, hide: false, editable: false, renderCell: (params) =>
, },
{
field: 'date_envoi', headerName: 'Envoyé le', width: 180, hide: false, editable: false,
@@ -5200,6 +5200,11 @@ const DisplayPartnerSession = (props) => {
setDialog_convention_open(true);
}
+ else if (String(actionmass_insc_val) === "convention_individuelle") {
+ setDialog_1_message("CONVENTION_STAGIAIRE_INDIVIDUELLE");
+ setDialog_convention_open(true);
+ }
+
else if (String(actionmass_insc_val) === "emarg_qr_code") {
@@ -9430,7 +9435,7 @@ const DisplayPartnerSession = (props) => {
},
];
- const status_tab = [
+ const status_tab = [
{
value: '1',
label: 'Actif',
@@ -9439,9 +9444,20 @@ const DisplayPartnerSession = (props) => {
value: '0',
label: 'Inactif',
},
+
+ {
+ value: '2',
+ label: 'Clôturer',
+ },
+
+ {
+ value: '-1',
+ label: 'Annulé',
+ },
];
+
const session_ondemande_tab = [
{
value: '1',
@@ -11546,7 +11562,8 @@ const DisplayPartnerSession = (props) => {
.then((data) => data.json())
.then((data) => {
setLoading(false);
- //console.log('Success:', data['message'], "data['status'] = ", data['status']);
+ // console.log('Success:', data['message'], "data['status'] = ", data['status']);
+
setGetListePreinscrit_emarg_result(data['message']);
setRows_emarg(data['message']);
if (String(data['status']) === String("Err_Connexion")) {
@@ -12268,8 +12285,6 @@ const DisplayPartnerSession = (props) => {
form.append("type_doc", type_doc);
form.append("courrier_template_type_document_ref_interne", courrier_template_type_document_ref_interne);
-
-
var myurl = process.env.REACT_APP_API_URL + "myclass/api/Get_List_Conventions_Stagiaire_With_Filter/";
setLoading(true);
@@ -12459,8 +12474,8 @@ const DisplayPartnerSession = (props) => {
}
var url = process.env.REACT_APP_API_URL + "myclass/api/Prepare_and_Send_Convention_From_Session_For_Selected_Inscrit_By_PDF/" + stored_cookie + "/" + selected_session_id + "/" + selected_convention_id + "/" + tab_my_inscription_ids;
- console.log(" ### tab_my_inscription_ids = ", tab_my_inscription_ids);
- console.log(" ### url = ", url);
+ // console.log(" ### tab_my_inscription_ids = ", tab_my_inscription_ids);
+ // console.log(" ### url = ", url);
@@ -13019,6 +13034,7 @@ const DisplayPartnerSession = (props) => {
{ "id": "acceslms", "label": "Acces E-Learning", "value": "acceslms" },
{ "id": "convocation", "label": "ConvoCation", "value": "convocation" },
{ "id": "convention_entreprise", "label": "ConVention Entreprise", "value": "convention_entreprise" },
+ { "id": "convention_individuelle", "label": "ConVention Individuelle", "value": "convention_individuelle" },
]
const New_Option_PreInscription = [
@@ -13164,7 +13180,7 @@ const DisplayPartnerSession = (props) => {
if (String(res.data.status) === String("true")) {
// console.log(" In Getall_Survey_hot_evaluation_By_Session res.data.status = " + res.data.status);
- console.log(" In Getall_Survey_hot_evaluation_By_Session res.data.message r_class = " + res.data.message);
+ // console.log(" In Getall_Survey_hot_evaluation_By_Session res.data.message r_class = " + res.data.message);
setGetall_Survey_hot_evaluation_By_Session_api("true");
setGetall_Survey_hot_evaluation_By_Session_result(res.data.message);
setRows_evaluation(res.data.message);
@@ -13705,7 +13721,8 @@ const DisplayPartnerSession = (props) => {
if (String(res.data) === String("false")) {
alert("Impossible de générer le QR code (2) ");
} else {
- fileDownload(res.data, nom_fichier_cmd)
+ fileDownload(res.data, nom_fichier_cmd);
+ GetListeEmargement(selected_session_id, selected_internal_url);
}
}).catch((error) => {
@@ -16627,6 +16644,349 @@ const DisplayPartnerSession = (props) => {
{/* FIN Dialog pour gerer les CONVENTIONS ENTREPRISE*/}
+ {/* Dialog pour gerer les CONVENTIONS INDIVIDUELLE*/}
+
null}
+
+ PaperProps={{
+
+
+ className: classes.paper, // Apply the paper style
+ style: {
+ overflowY: 'unset',
+ position: 'absolute',
+ top: '7rem',
+ margin: "2px",
+ },
+ }}
+ hideBackdrop={true}
+ disableScrollLock
+ classes={{
+ paper: classes.dialog
+ }}
+
+ PaperComponent={PaperComponent}
+ aria-labelledby="draggable-dialog-title"
+
+ >
+
+
+
+
+ {Dialog_1_message}
+
+
+
+
+ Type Document
+
{
+ if (value && value.value) {
+ setselected_convention_type(value.value);
+
+ Get_List_Stagiaire_Conventions(action_server_ref_interne_doc, action_server_nom_doc,
+ String(value.value), Dialog_1_message);
+ }
+ }}
+ renderInput={(params) =>
+ }
+ />
+
+
+
+ {String(partner_digital_signature_status) === "1" && String(selected_convention_type) === "email" &&
+ String(Dialog_1_message) === "CONVENTION_STAGIAIRE_INDIVIDUELLE" && }
+
+ {String(partner_digital_signature_status) !== "1" && String(selected_convention_type) === "email" && String(Dialog_1_message) === "CONVENTION_STAGIAIRE_INDIVIDUELLE" &&
+ Signature Digiale
+
+
+
+
}
+
+ {(String(selected_convention_type) === "email" || String(selected_convention_type) === "pdf") && Choisir une convention
+
{
+ if (value && value._id) {
+
+ setselected_convention_id(value._id);
+
+ if (String(value._id) === "default_mail") {
+ setselected_convention_type("email");
+ }
+ else if (String(value._id) === "default_pdf") {
+ setselected_convention_type("pdf");
+ } else {
+ var result2 = Get_List_Stagiaire_Conventions_result.filter((local_mymanager) => JSON.parse(local_mymanager)._id === String(value._id))
+ setselected_convention_type(JSON.parse(result2).type_doc);
+ }
+ settab_convention_pieces_jointes_result([]);
+ }
+ }}
+
+ renderInput={(params) =>
+ }
+ />
+
+ }
+
+
+
+ {String(selected_convention_type) === "email" &&
+
+
+ Adresse email de test
+
+ {
+ setselected_convention_email_test(e.target.value);
+ }
+ }
+ />
+
+
+ {String(selected_convention_type) === "email" &&
{
+
+ if (selected_convention_email_test) {
+ var validRegex = /^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$/;
+ if (!selected_convention_email_test.match(validRegex)) {
+ // alert("L'adresse email de test est invalide.");
+ setdisplay_alert_mysy("1");
+ setalert_message("L'adresse email de test est invalide.");
+ setalert_type("error");
+
+ return;
+ }
+ Send_Stagiaire_Conventions_By_Email_Test();
+ } else {
+ // alert("L'adresse email de test est invalide.");
+ setdisplay_alert_mysy("1");
+ setalert_message("L'adresse email de test est invalide.");
+ setalert_type("error")
+ }
+
+
+
+ }} > Test }
+
+ }
+
+
+
+ {String(selected_convention_type) === "email" &&
+ String(actionmass_ftion_val) !== String("convention") && Email destinaitaire
+ {
+ setselected_convention_email_destinataire_prod(e.target.value);
+ }
+ }
+ />
+
+
+ }
+
+
+
+ {String(selected_convention_type) === "email" &&
+
+
+
+
+
+
+
+ Pièces jointes Convention
+
+
+
+
+
+
+
+
+
+
+ Ajouter un fichier
+
+
+
+
+
+
+
+
+
+ {tab_convention_pieces_jointes_result &&
+
+
+ Liste des pièces jointes
+ {
+ {tab_convention_pieces_jointes_result && tab_convention_pieces_jointes_result.map((val) => (
+
+ {
+ Delete_Convention_Attached_Doc(e);
+ }}
+ name={val.name} id={val.name}> Supprimer {val.name}
+
+
+
+ ))}
+
}
+
+
}
+
+
+
+
+
}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {String(selected_convention_type) === "email" && {
+
+ if (String(selected_convention_email_test).length > 2) {
+ // On alerte juste l'utilisateur que l'email de test n'est pas vide, juste au cas ou il aurait cliqué par erreur sur l'envoie.
+ const response = window.confirm(" Vous allez envoyer la convention au destinaitaire final. Continuer ?");
+ if (!response) {
+ return;
+ }
+ }
+
+ Dialog_convention_handleClose_buton();
+ Send_Stagiaire_Conventions_By_Email();
+
+ }}
+ className="bton_enreg_dialog">Envoyer mail }
+
+
+ {String(selected_convention_type) === "pdf" &&
+ {
+
+ Dialog_convention_handleClose_buton();
+ Download_Session_Conventions_PDF();
+ }}
+ >Télécharger }
+
+
+
+
+ Fermer
+
+
+
+
+
+
+ {/* FIN Dialog pour gerer les CONVENTIONS INDIVIDUELLE*/}
+
+
{/* Dialog pour gerer les CONVOCATION_STAGIAIRE */}
{
/>
}
- {!edit_session_form && String(p_session_status) === "0" &&
Statut
+ {!edit_session_form && String(p_session_status) !== "1" &&
Statut
{
filterTime={filterPassedTime_start}
dateFormat="dd/MM/yyyy"
className="disabled_style"
- locale={'fr'}
+ locale={'fr'}
/>
-
+
@@ -22474,7 +22834,7 @@ const DisplayPartnerSession = (props) => {
filterTime={filterPassedTime_end}
dateFormat="dd/MM/yyyy"
className="disabled_style"
- locale={'fr'}
+ locale={'fr'}
/>
Nombre Places
@@ -22554,7 +22914,7 @@ const DisplayPartnerSession = (props) => {
//filterTime={filterPassedTime_end}
dateFormat="dd/MM/yyyy"
className="disabled_style"
- locale={'fr'}
+ locale={'fr'}
/>
}
@@ -23343,7 +23703,7 @@ const DisplayPartnerSession = (props) => {
filterTime={filterPassedTime_end}
dateFormat="dd/MM/yyyy"
className="disabled_style enable_style"
- locale={'fr'}
+ locale={'fr'}
/>
@@ -23394,7 +23754,7 @@ const DisplayPartnerSession = (props) => {
//filterTime={filterPassedTime_end}
dateFormat="dd/MM/yyyy"
className="disabled_style enable_style"
- locale={'fr'}
+ locale={'fr'}
/>
}
@@ -25521,7 +25881,8 @@ const DisplayPartnerSession = (props) => {
String(value.value) === "facturer" || String(value.value) === "emarg_qr_code"
|| String(value.value) === "acceslms"
|| String(value.value) === "convocation"
- || String(value.value) === "convention_entreprise") {
+ || String(value.value) === "convention_entreprise"
+ || String(value.value) === "convention_individuelle") {
setactionmass_insc_val(value.value);
}
else {
@@ -25543,6 +25904,7 @@ const DisplayPartnerSession = (props) => {
{actionmass_insc_val && String(actionmass_insc_val).length > 1 && selectionModel_insc.length >= 1 &&
(String(actionmass_insc_val) === "convocation" ||
String(actionmass_insc_val) === "convention_entreprise" ||
+ String(actionmass_insc_val) === "convention_individuelle" ||
String(actionmass_insc_val) === "acceslms" ||
String(actionmass_insc_val) === "facturer")
&&
@@ -25560,6 +25922,7 @@ const DisplayPartnerSession = (props) => {
{actionmass_insc_val && String(actionmass_insc_val).length > 1 && selectionModel_insc.length >= 1 &&
String(actionmass_insc_val) !== "convocation" &&
String(actionmass_insc_val) !== "convention_entreprise" &&
+ String(actionmass_insc_val) !== "convention_individuelle" &&
String(actionmass_insc_val) !== "acceslms" &&
String(actionmass_insc_val) !== "facturer" &&
@@ -26946,7 +27309,7 @@ const DisplayPartnerSession = (props) => {
}}>Imprimer la liste
{
GetListeEmargement(selected_session_id, selected_internal_url);
- }}>Actualiser la liste
+ }}>Actualiser
@@ -27012,6 +27375,7 @@ const DisplayPartnerSession = (props) => {
signature: JSON.parse(item).mysy_manual_signature_img,
comment: JSON.parse(item).comment,
+ mode_envoi: JSON.parse(item).mode_envoi,
}
))}
@@ -27422,12 +27786,12 @@ const DisplayPartnerSession = (props) => {
{
Getall_Survey_hot_evaluation_By_Session();
- }}>Actualiser la liste
+ }}>Actualiser
{
Export_survey_hot_eval_datatab_class();
- }}>Exporter (excel)
+ }}>Export excel
diff --git a/src/components/DisplayPartnerStagiaires.js b/src/components/DisplayPartnerStagiaires.js
index 530dd0b..a5b0f66 100644
--- a/src/components/DisplayPartnerStagiaires.js
+++ b/src/components/DisplayPartnerStagiaires.js
@@ -12339,7 +12339,7 @@ setparticipant_data_changed("1");
{
Export_Inscrit_Notes();
- }}>Exporter (excel)
+ }}>Export excel
diff --git a/src/components/Emarge_QR_Code.js b/src/components/Emarge_QR_Code.js
index 2a18b22..336e31a 100644
--- a/src/components/Emarge_QR_Code.js
+++ b/src/components/Emarge_QR_Code.js
@@ -334,12 +334,25 @@ function Emarge_QR_Code() {
}
+ const [signature_pad_width, setsignature_pad_width] = useState(315);
+ const [signature_pad_height, setsignature_pad_height] = useState(200);
useEffect(() => {
// setselected_e_doc_id(document_id);
// get_E_Document();
+
+ if (window.innerWidth < 720) {
+ setsignature_pad_width(180);
+ setsignature_pad_height(180);
+ } else {
+ setsignature_pad_width(315);
+ setsignature_pad_height(200);
+ }
+
+
+
window.scrollTo({
top: 0,
behavior: "smooth",
@@ -543,7 +556,7 @@ function Emarge_QR_Code() {
style: {
overflowY: 'unset',
position: 'absolute',
- top: '7rem',
+ top: '11rem',
margin: "2px",
},
}}
@@ -560,17 +573,17 @@ function Emarge_QR_Code() {
Signature Manuscrite
-
+
-
+
{
clearCanvas();
@@ -620,7 +633,7 @@ function Emarge_QR_Code() {
{!erreur_recup_e_doc && Signature }
{erreur_recup_e_doc && Signature - Identifiants invalides }
-
+
@@ -694,7 +707,7 @@ function Emarge_QR_Code() {
{!erreur_recup_e_doc &&
Authentification }
{erreur_recup_e_doc &&
Authentification - Identifiants invalides }
-
+
@@ -717,26 +730,6 @@ function Emarge_QR_Code() {
- {/*
-
Télephone
- {
- setselected_e_doc_secret(e.target.value);
-
- }
- }
- />
-
-
*/}
-
@@ -769,8 +762,7 @@ function Emarge_QR_Code() {
-
- Le document a été signée. Vous allez recevoir le document par email
+ Le document a bien été signé. Une copie vous sera envoyée par e-mail.
@@ -796,14 +788,14 @@ function Emarge_QR_Code() {
}
-
Emargement électronique
+
Emargement électronique
-
-
+
+
-
Guide d'utilisation :
+
Guide d'utilisation :
Pour vous permettre d’émarger électroniquement, MySy Training Technology met à disposition ce module.
-
Comment ça marche :
+
Comment ça marche :
étape 1 – Vous accédez au document d'émargement à l’aide de votre adresse email
étape 2 – Apres l’ouverture du document, le système affichera la liste des séquences à émarger
étape 3 – Sélectionnez les lignes l’aide de la case à cocher qui se trouve à gauche du tableau
@@ -816,7 +808,7 @@ function Emarge_QR_Code() {
{is_valide_e_document &&
-
+
@@ -903,7 +895,7 @@ function Emarge_QR_Code() {
-
+
@@ -986,7 +978,7 @@ function Emarge_QR_Code() {
{' '}
- En confirmant cette opération, vous validez votre présence aux {selectionModel_sequence.length} séquence(s)
+ En confirmant cette opération, vous validez votre présence à {selectionModel_sequence.length} séquence(s)
diff --git a/src/components/GestionAdministrative.js b/src/components/GestionAdministrative.js
index 2217535..efe837a 100644
--- a/src/components/GestionAdministrative.js
+++ b/src/components/GestionAdministrative.js
@@ -8073,7 +8073,7 @@ Update du 22/10/2023 - Gestion des champs spécifiques ajoutés par le partenair
- Exporter (excel)
+ Export excel
diff --git a/src/components/Groupe_Apprenant.js b/src/components/Groupe_Apprenant.js
index bc748fc..0055070 100644
--- a/src/components/Groupe_Apprenant.js
+++ b/src/components/Groupe_Apprenant.js
@@ -497,12 +497,18 @@ const Groupe_Apprenant = (props) => {
if (option && String(option) === "Supprimer") {
+
+
setdialogOpen_supp(true);
}
else if (option && String(option) === "Modifier") {
setDialog_GRP_MEMBRE_EDIT_open(true);
+ window.scrollTo({
+ top: 150,
+ behavior: "smooth",
+ });
}
}}
@@ -2559,7 +2565,7 @@ const Groupe_Apprenant = (props) => {
function getExcelData(apiRef) {
// Select rows and columns
const filteredSortedRowIds = gridFilteredSortedRowIdsSelector(apiRef);
- const visibleColumnsField = gridVisibleColumnFieldsSelector(apiRef).filter((data) => (data) !== "__check__" );
+ const visibleColumnsField = gridVisibleColumnFieldsSelector(apiRef).filter((data) => (data) !== "__check__");
// Format the data. Here we only keep the value
const data = filteredSortedRowIds.map((id) => {
@@ -2584,7 +2590,7 @@ const Groupe_Apprenant = (props) => {
function handleExport(apiRef, data_colums) {
const data = getExcelData(apiRef);
- const visibleColumnsField = gridVisibleColumnFieldsSelector(apiRef).filter((data) => (data) !== "__check__" );
+ const visibleColumnsField = gridVisibleColumnFieldsSelector(apiRef).filter((data) => (data) !== "__check__");
const local_config = {
@@ -2776,12 +2782,12 @@ const Groupe_Apprenant = (props) => {
PaperProps={{
-
className: classes.paper, // Apply the paper style
style: {
overflowY: 'unset',
- position: 'relative',
- top: '50rem',
+ position: 'absolute',
+ top: '7rem',
+ margin: "2px",
},
}}
hideBackdrop={true}
@@ -4595,7 +4601,7 @@ const Groupe_Apprenant = (props) => {
-
}
+
}
{String(submenu) === "selection" &&
@@ -4618,11 +4624,11 @@ const Groupe_Apprenant = (props) => {
{
Getall_Groupe_Membres(selected_id);
- }}>Actualiser la liste
+ }}>Actualiser
{
Export_Groupe_Membres_exel();
- }}>Exporter (excel)
+ }}>Export excel
diff --git a/src/components/HebergementLms.js b/src/components/HebergementLms.js
index 16b8d47..95909ad 100644
--- a/src/components/HebergementLms.js
+++ b/src/components/HebergementLms.js
@@ -27,21 +27,11 @@ import { IoIosAddCircleOutline, IoMdTrash } from "react-icons/io";
function HebergementLms(props) {
- const [myApiResponse, setmyApiResponse] = useState("");
const [result, setResult] = useState("");
const [menu, setmenu] = useState("default");
- const [fields1desabled, setfields1desabled] = useState(true);
- const [periode, setperiode] = useState("Mensuel");
- const [testval, settestval] = useState();
- const [gotocheckout, setgotocheckout] = useState("0");
- const [currentpack, setcurrentpack] = useState(props.packs);
- const [periodicity, setperiodicity] = useState(props.periodicity);
- const [packprice, setpackprice] = useState(props.mypackprice);
- const [getpackproducts, setgetpackproducts] = useState();
+
const scrollDiv = useRef(null);
- const [okcommande, setokcommande] = useState();
- const stripe = useStripe();
- const elements = useElements();
+
// recuperation et gestion du token utilisateur
@@ -930,7 +920,7 @@ Le nom du fichier ne contient que des caractères alphanumériques ">
{String(props.check_user_acces_right("lms", "write")) === "1" &&
diff --git a/src/components/Intranet_Mes_Stagiaires.js b/src/components/Intranet_Mes_Stagiaires.js
index bd53997..e13709f 100644
--- a/src/components/Intranet_Mes_Stagiaires.js
+++ b/src/components/Intranet_Mes_Stagiaires.js
@@ -10879,7 +10879,7 @@ registerLocale('fr', fr);
{
Export_Inscrit_Notes();
- }}>Exporter (excel)
+ }}>Export excel
diff --git a/src/components/Jurys.js b/src/components/Jurys.js
index 182dfda..ba3ad03 100644
--- a/src/components/Jurys.js
+++ b/src/components/Jurys.js
@@ -115,7 +115,7 @@ const useStyles = makeStyles((theme) => ({
const Jury = (props) => {
-registerLocale('fr', fr);
+ registerLocale('fr', fr);
const classes = useStyles();
const history = useHistory();
const [submenu, setsubmenu] = useState("");
@@ -2190,7 +2190,7 @@ registerLocale('fr', fr);
function getExcelData(apiRef) {
// Select rows and columns
const filteredSortedRowIds = gridFilteredSortedRowIdsSelector(apiRef);
- const visibleColumnsField = gridVisibleColumnFieldsSelector(apiRef).filter((data) => (data) !== "__check__" );
+ const visibleColumnsField = gridVisibleColumnFieldsSelector(apiRef).filter((data) => (data) !== "__check__");
// Format the data. Here we only keep the value
const data = filteredSortedRowIds.map((id) => {
@@ -2215,7 +2215,7 @@ registerLocale('fr', fr);
function handleExport(apiRef, data_colums) {
const data = getExcelData(apiRef);
- const visibleColumnsField = gridVisibleColumnFieldsSelector(apiRef).filter((data) => (data) !== "__check__" );
+ const visibleColumnsField = gridVisibleColumnFieldsSelector(apiRef).filter((data) => (data) !== "__check__");
const local_config = {
@@ -3428,6 +3428,7 @@ registerLocale('fr', fr);
const stored_cookie = getCookie('tokenmysypart');
form.append("token", stored_cookie);
form.append("archive", "0");
+ form.append("type_session", "1");
var myurl = process.env.REACT_APP_API_URL + "myclass/api/GetAllValideSessionPartner_List/";
diff --git a/src/components/Module_Agenda.js b/src/components/Module_Agenda.js
index 8dd3032..b038b8f 100644
--- a/src/components/Module_Agenda.js
+++ b/src/components/Module_Agenda.js
@@ -1676,7 +1676,7 @@ registerLocale('fr', fr);
{/*** FIn Dialog detail eventement */}
-
Planning
+
Planning
diff --git a/src/components/Module_Attestation_Formation.js b/src/components/Module_Attestation_Formation.js
index 7cb6445..76cc331 100644
--- a/src/components/Module_Attestation_Formation.js
+++ b/src/components/Module_Attestation_Formation.js
@@ -916,7 +916,7 @@ const Module_Attestation_Formation = (props) => {
{
Getall_Attestation_By_Session();
- }}>Actualiser la liste
+ }}>Actualiser
diff --git a/src/components/Module_Editique.js b/src/components/Module_Editique.js
index 8b791ee..0c6fa04 100644
--- a/src/components/Module_Editique.js
+++ b/src/components/Module_Editique.js
@@ -3052,7 +3052,7 @@ registerLocale('fr', fr);
var diff = date_eval.getTime() - Date.now();
if (diff <= 0) {
- setMSG_INFO_TEXT("Cette session a déjà commencé. Il n'est plus possible d'éditer une convention")
+ setMSG_INFO_TEXT("Cette session a déjà commencé. Le traitement en masse n’est plus autorisé. Pour éditer une convention, merci de passer passe le bouton ‘inscription’, puis choisir l’apprenant concernée puis éditer la convention.")
setDialog_MSG_INFO_open(true);
return;
}
@@ -3247,7 +3247,7 @@ registerLocale('fr', fr);
var diff = date_eval.getTime() - Date.now();
if (diff <= 0) {
- setMSG_INFO_TEXT("Cette session a déjà commencé. Il n'est plus possible d'éditer une convention")
+ setMSG_INFO_TEXT("Cette session a déjà commencé. Le traitement en masse n’est plus autorisé. Pour éditer une convention, merci de passer passe le bouton ‘inscription’, puis choisir l’apprenant concernée puis éditer la convention.")
setDialog_MSG_INFO_open(true);
return;
}
@@ -3442,7 +3442,7 @@ registerLocale('fr', fr);
var diff = date_eval.getTime() - Date.now();
if (diff <= 0) {
- setMSG_INFO_TEXT("Cette session a déjà commencé. Il n'est plus possible d'éditer une convention")
+ setMSG_INFO_TEXT("Cette session a déjà commencé. Le traitement en masse n’est plus autorisé. Pour éditer une convention, merci de passer passe le bouton ‘inscription’, puis choisir l’apprenant concernée puis éditer la convention.")
setDialog_MSG_INFO_open(true);
return;
}
@@ -3731,7 +3731,7 @@ registerLocale('fr', fr);
var diff = date_eval.getTime() - Date.now();
if (diff <= 0) {
- setMSG_INFO_TEXT("Cette session a déjà commencé. Il n'est plus possible d'éditer une convention")
+ setMSG_INFO_TEXT("Cette session a déjà commencé. Le traitement en masse n’est plus autorisé. Pour éditer une convention, merci de passer passe le bouton ‘inscription’, puis choisir l’apprenant concernée puis éditer la convention.")
setDialog_MSG_INFO_open(true);
return;
}
diff --git a/src/components/Module_Email_Management.js b/src/components/Module_Email_Management.js
index 9d59bc1..b221f88 100644
--- a/src/components/Module_Email_Management.js
+++ b/src/components/Module_Email_Management.js
@@ -764,7 +764,7 @@ const Module_Email_Management = (props) => {
inputProps={{ ...params.inputProps, style: { fontSize: 12, height: "1.4rem" } }}
/>
- }
+ }
/>}
diff --git a/src/components/Module_Ent_Mes_Formations.js b/src/components/Module_Ent_Mes_Formations.js
index 7cf41c7..a4a2ce7 100644
--- a/src/components/Module_Ent_Mes_Formations.js
+++ b/src/components/Module_Ent_Mes_Formations.js
@@ -2374,7 +2374,7 @@ registerLocale('fr', fr);
{
// Export_Inscrit_Notes();
- }}>Exporter (excel)
+ }}>Export excel
diff --git a/src/components/Module_Evaluation_Positionnement.js b/src/components/Module_Evaluation_Positionnement.js
index 3d60449..db77067 100644
--- a/src/components/Module_Evaluation_Positionnement.js
+++ b/src/components/Module_Evaluation_Positionnement.js
@@ -1125,11 +1125,11 @@ const Module_Evaluation_Positionnement = (props) => {
{
Getall_Survey_Q_Positionnement_By_Session();
- }}>Actualiser la liste
+ }}>Actualiser
{
Export_survey_datatab_class();
- }}>Exporter (excel)
+ }}>Export excel
diff --git a/src/components/Module_Jury_Selection_Apprenants.js b/src/components/Module_Jury_Selection_Apprenants.js
index 16d82ac..29266a3 100644
--- a/src/components/Module_Jury_Selection_Apprenants.js
+++ b/src/components/Module_Jury_Selection_Apprenants.js
@@ -1,6 +1,6 @@
import React, { useRef, useState, useEffect } from "react";
import TextField from '@mui/material/TextField';
-import MenuItem from '@mui/material/MenuItem';
+
import 'react-confirm-alert/src/react-confirm-alert.css'; // Import css
import Button from '@mui/material/Button';
import axios from "axios";
@@ -8,77 +8,23 @@ import { getCookie, setCookie } from 'react-use-cookie';
import { useHistory } from "react-router-dom";
import { DataGrid, GridToolbar, frFR } from '@mui/x-data-grid';
import "react-draft-wysiwyg/dist/react-draft-wysiwyg.css";
-import { Editor } from '@tinymce/tinymce-react';
-import parse from 'html-react-parser';
-import { FcViewDetails, FcDisapprove, FcInfo } from "react-icons/fc";
import 'react-tooltip/dist/react-tooltip.css'
-import { Tooltip } from 'react-tooltip'
-import add_plus from "../mysy_img/plus.png";
-import excel_icone from "../mysy_img/excel_icone.png";
-import participants from "../mysy_img/participants.png";
-import fileDownload from 'js-file-download'
import Popup from 'reactjs-popup';
import 'reactjs-popup/dist/index.css';
-import { FcSearch } from "react-icons/fc";
-import { FcAlarmClock, FcMultipleSmartphones, FcWorkflow } from "react-icons/fc";
import fr from 'date-fns/locale/fr';
import { registerLocale } from 'react-datepicker';
-import DatePicker from "react-datepicker";
import "react-datepicker/dist/react-datepicker.css";
-import { format } from 'date-fns'
-import moment from "moment";
import 'moment/locale/fr';
-
-import InputAdornment from '@mui/material/InputAdornment';
-import { AiFillCloseCircle, AiOutlineConsoleSql } from "react-icons/ai";
import Box from '@mui/material/Box';
-import { Typography, LinearProgress } from '@mui/material';
-import styled from 'styled-components';
-import { CiTrash } from "react-icons/ci";
-import { MdAddCircleOutline, MdRemoveCircleOutline } from "react-icons/md";
-import Dialog from '@mui/material/Dialog';
-import DialogActions from '@mui/material/DialogActions';
-import DialogContent from '@mui/material/DialogContent';
-import DialogContentText from '@mui/material/DialogContentText';
-import DialogTitle from '@mui/material/DialogTitle';
-import { RestoreFromTrashRounded } from "@mui/icons-material";
import img_loading_spin from "./../mysy_img/mysy_spin_loading.gif";
-import { Fab } from "@material-ui/core";
-import { IoMdAddCircle, IoIosRemoveCircleOutline } from "react-icons/io";
-import { AiTwotoneEdit, AiTwotoneSave } from "react-icons/ai";
-import { confirmAlert } from 'react-confirm-alert';
-import ToggleSwitch from "./ToggleSwitch";
-import Module_Historique_Action from "./Module_Historique_Action";
-import { HiDocumentCheck } from "react-icons/hi2";
-import { BsSend } from "react-icons/bs";
import Autocomplete from '@mui/material/Autocomplete';
-import { FcOpenedFolder } from "react-icons/fc";
import { gridClasses } from '@mui/x-data-grid';
import Link from '@mui/material/Link';
import { PiDotsThree } from "react-icons/pi";
-import Module_Editique from "./Module_Editique";
-import Module_Attestation_Formation from "./Module_Attestation_Formation";
-
-import { IoAddCircleOutline, IoCloseCircleOutline } from "react-icons/io5";
-import { FcCancel, FcApproval, FcAcceptDatabase, FcPrint, FcPlanner } from "react-icons/fc";
-import { CiBoxList } from "react-icons/ci";
-import FullCalendar from "@fullcalendar/react";
-import daygridPlugin from "@fullcalendar/daygrid";
-import interactionPlugin from "@fullcalendar/interaction";
-import timeGridPlugin from "@fullcalendar/timegrid";
-import resourceTimeGridPlugin from '@fullcalendar/resource-timegrid';
-import Radio from '@mui/material/Radio';
-import RadioGroup from '@mui/material/RadioGroup';
-import FormControlLabel from '@mui/material/FormControlLabel';
-import FormControl from '@mui/material/FormControl';
-import FormLabel from '@mui/material/FormLabel';
-
-import allLocales from '@fullcalendar/core/locales-all'
-import listPlugin from '@fullcalendar/list';
-import multiMonthPlugin from '@fullcalendar/multimonth'
+import { FcAcceptDatabase, } from "react-icons/fc";
import CheckBoxOutlineBlankIcon from '@mui/icons-material/CheckBoxOutlineBlank';
import CheckBoxIcon from '@mui/icons-material/CheckBox';
-import Checkbox from '@mui/material/Checkbox';
+
const Module_Jury_Selection_Apprenants = (props) => {
@@ -658,7 +604,7 @@ registerLocale('fr', fr);
const [ueChanged, setueChanged] = useState("");
-
+
return (
diff --git a/src/components/Module_Selection_Apprenants.js b/src/components/Module_Selection_Apprenants.js
index ce11f3f..56a449f 100644
--- a/src/components/Module_Selection_Apprenants.js
+++ b/src/components/Module_Selection_Apprenants.js
@@ -771,61 +771,7 @@ const Module_Selection_Apprenants = (props) => {
}
- {/*
-
-
Unite D'enseignement
- {New_Get_List_UE_From_Class_Id_result && New_Get_List_UE_From_Class_Id_result.length > 0 &&
-
-
option.label}
-
- options={New_Get_List_UE_From_Class_Id_result}
- defaultValue={New_Get_List_UE_From_Class_Id_result.filter((data) => {
- if (tab_inscrit_ue_id.includes(String(data._id))) {
-
- return data;
- }
- })}
-
- renderOption={(props, option, { selected }) => (
-
-
- {option.label}
-
- )}
- // style={{ width: 500 }}
-
- onChange={(event, value) => {
- setinscription_list_ue(value)
- setueChanged("1");
- }}
-
- renderInput={(params) =>
- }
- />
-
- }
-
-
-
-
-
-
-*/}
+
diff --git a/src/components/Module_Selection_Evaluation_Apprenants.js b/src/components/Module_Selection_Evaluation_Apprenants.js
index 359ab42..029db3e 100644
--- a/src/components/Module_Selection_Evaluation_Apprenants.js
+++ b/src/components/Module_Selection_Evaluation_Apprenants.js
@@ -200,7 +200,6 @@ const Module_Selection_Evaluation_Apprenants = (props) => {
{ "id": "user", "label": "Personnes Inscrites", "value": "user" },
{ "id": "user_group", "label": "Groupe ", "value": "user_group" },
{ "id": "", "label": "", "value": "" },
-
]
const New_Option_type_goupe = [
@@ -1177,7 +1176,7 @@ const Module_Selection_Evaluation_Apprenants = (props) => {
function clear_display_alert_mysy() {
setdisplay_alert_mysy("");
}
-
+
return (
@@ -1307,61 +1306,6 @@ const Module_Selection_Evaluation_Apprenants = (props) => {
}
- {/*
-
-
Unite D'enseignement
- {New_Get_List_UE_From_Class_Id_result && New_Get_List_UE_From_Class_Id_result.length > 0 &&
-
-
option.label}
-
- options={New_Get_List_UE_From_Class_Id_result}
- defaultValue={New_Get_List_UE_From_Class_Id_result.filter((data) => {
- if (tab_inscrit_ue_id.includes(String(data._id))) {
-
- return data;
- }
- })}
-
- renderOption={(props, option, { selected }) => (
-
-
- {option.label}
-
- )}
- // style={{ width: 500 }}
-
- onChange={(event, value) => {
- setinscription_list_ue(value)
- setueChanged("1");
- }}
-
- renderInput={(params) =>
- }
- />
-
- }
-
-
-
-
-
-
-*/}
diff --git a/src/components/Module_Session_Evaluation.js b/src/components/Module_Session_Evaluation.js
index 3b1a73e..58a46c1 100644
--- a/src/components/Module_Session_Evaluation.js
+++ b/src/components/Module_Session_Evaluation.js
@@ -31,7 +31,7 @@ import DialogActions from '@mui/material/DialogActions';
import DialogContent from '@mui/material/DialogContent';
import DialogContentText from '@mui/material/DialogContentText';
import DialogTitle from '@mui/material/DialogTitle';
-import { ResetTvRounded, RestoreFromTrashRounded } from "@mui/icons-material";
+import { ConstructionOutlined, ResetTvRounded, RestoreFromTrashRounded } from "@mui/icons-material";
import img_loading_spin from "./../mysy_img/mysy_spin_loading.gif";
import Autocomplete from '@mui/material/Autocomplete';
@@ -237,7 +237,7 @@ const Module_Session_Evaluation = (props) => {
const tab_columns_list_evaluation_specific = [
[
{ field: 'id', headerName: 'id', hide: true },
- { field: 'survey_internal_code', headerName: 'id', hide: false },
+ { field: 'survey_internal_code', headerName: 'survey_internal_code', hide: true },
{ field: '_id', headerName: '_id', hide: true },
{ field: 'form_code', headerName: 'Form. Code', hide: true, minwidth: 200, flex: 1, hideable: true, resizable: true, renderCell: (params) =>
, },
{ field: 'email', headerName: 'email', minwidth: 300, flex: 1, hideable: true, resizable: true, renderCell: (params) =>
, },
@@ -283,7 +283,7 @@ const Module_Session_Evaluation = (props) => {
],
[
{ field: 'id', headerName: 'id', hide: true },
- { field: 'survey_internal_code', headerName: 'id', hide: false },
+ { field: 'survey_internal_code', headerName: 'survey_internal_code', hide: true },
{ field: '_id', headerName: '_id', hide: true },
{ field: 'form_code', headerName: 'Form. Code', hide: true, minwidth: 200, flex: 1, hideable: true, resizable: true, renderCell: (params) =>
, },
{ field: 'email', headerName: 'email', minwidth: 300, flex: 1, hideable: true, resizable: true, renderCell: (params) =>
, },
@@ -329,12 +329,13 @@ const Module_Session_Evaluation = (props) => {
],
[
{ field: 'id', headerName: 'id', hide: true },
- { field: 'survey_internal_code', headerName: 'id', hide: true },
+ { field: 'survey_internal_code', headerName: 'survey_internal_code', hide: true },
{ field: '_id', headerName: '_id', hide: true },
{ field: 'form_code', headerName: 'Form. Code', hide: true, minwidth: 200, flex: 1, hideable: true, resizable: true, renderCell: (params) =>
, },
{ field: 'email', headerName: 'email', minwidth: 300, flex: 1, hideable: true, resizable: true, renderCell: (params) =>
, },
{ field: 'nom', headerName: 'nom', minwidth: 300, flex: 1, hide: false, editable: true, renderCell: (params) =>
, },
{ field: 'prenom', headerName: 'prenom', minwidth: 300, flex: 1, hide: false, editable: false, renderCell: (params) =>
, },
+
{
field: 'status', headerName: 'Statut', width: 100, editable: false, flex: true,
valueFormatter: (params) => {
@@ -517,6 +518,63 @@ const Module_Session_Evaluation = (props) => {
})
}
+
+
+ const [Delete_Specific_Survy_With_survey_internal_code_api, setDelete_Specific_Survy_With_survey_internal_code_api] = useState();
+ const [Delete_Specific_Survy_With_survey_internal_code_message, setDelete_Specific_Survy_With_survey_internal_code_message] = useState();
+ const [Delete_Specific_Survy_With_survey_internal_code_result, setDelete_Specific_Survy_With_survey_internal_code_result] = useState();
+ function Delete_Specific_Survy_With_survey_internal_code(local_survey_internal_code) {
+
+ var form = new FormData();
+
+
+ const stored_cookie = getCookie('tokenmysypart');
+ form.append("token", stored_cookie);
+ form.append("survey_internal_code", local_survey_internal_code);
+
+ var myurl = process.env.REACT_APP_API_URL + "myclass/api/Delete_List_Survey_From_survey_internal_code/";
+
+ setLoading(true);
+ axios.post(myurl, form).then(res => {
+
+ setLoading(false);
+ if (String(res.data.status) === String("true")) {
+ //console.log(" In Delete_Specific_Survy_With_survey_internal_code res.data.status = " + res.data.status);
+ //console.log(" In Delete_Specific_Survy_With_survey_internal_code res.data.message r_class = " + res.data.message);
+ Getall_Survey_specific_evaluation_By_Session();
+ setDelete_Specific_Survy_With_survey_internal_code_api("true");
+ setDelete_Specific_Survy_With_survey_internal_code_result(res.data.message);
+
+ // alert(res.data.message);
+ setdisplay_alert_mysy("1");
+ setalert_message(res.data.message);
+ setalert_type("success");
+
+
+ }
+ else {
+ setDelete_Specific_Survy_With_survey_internal_code_api("false");
+ setDelete_Specific_Survy_With_survey_internal_code_message(res.data.message);
+ // alert(res.data.message);
+ setdisplay_alert_mysy("1");
+ setalert_message(res.data.message);
+ setalert_type("error");
+
+ }
+
+ }).catch((error) => {
+ setLoading(false);
+ console.warn('Not good man :( Delete_Specific_Survy_With_survey_internal_code = ', error);
+ setDelete_Specific_Survy_With_survey_internal_code_api("false");
+ // alert(" Impossible de recuperer la liste des employés");
+ setdisplay_alert_mysy("1");
+ setalert_message(" Impossible de recuperer la liste des employés");
+ setalert_type("error");
+ //setmyApimyApiMessage("")
+ })
+ }
+
+
const [New_Getall_Training_Materiel_No_Filter_result, setNew_Getall_Training_Materiel_No_Filter_result] = useState([]);
@@ -783,6 +841,21 @@ const Module_Session_Evaluation = (props) => {
const [selectionModel_evaluation_formateur, setselectionModel_evaluation_formateur] = React.useState([]);
const [rowss_evaluation_formateur, setRows_evaluation_formateur] = useState([]);
+
+ const [selectionModel_evaluation_specific_00, setselectionModel_evaluation_specific_00] = React.useState([]);
+ const [selectionModel_evaluation_specific_01, setselectionModel_evaluation_specific_01] = React.useState([]);
+ const [selectionModel_evaluation_specific_02, setselectionModel_evaluation_specific_02] = React.useState([]);
+ const [selectionModel_evaluation_specific_03, setselectionModel_evaluation_specific_03] = React.useState([]);
+
+
+ const [rowss_evaluation_specific_00, setRows_evaluation_specific_00] = useState([]);
+ const [rowss_evaluation_specific_01, setRows_evaluation_specific_01] = useState([]);
+ const [rowss_evaluation_specific_02, setRows_evaluation_specific_02] = useState([]);
+ const [rowss_evaluation_specific_03, setRows_evaluation_specific_03] = useState([]);
+
+
+
+
/**** Les évaluations a froid */
const [New_Getall_Partner_Formulaires_cold_evaluation_with_Filter, setNew_Getall_Partner_Formulaires_cold_evaluation_with_Filter] = useState([]);
@@ -969,6 +1042,7 @@ const Module_Session_Evaluation = (props) => {
var local_id = JSON.parse(x)._id;
var local_code = JSON.parse(x).code;
var local_nom = JSON.parse(x).nom;
+ var local_type = JSON.parse(x).type;
//---
@@ -978,6 +1052,7 @@ const Module_Session_Evaluation = (props) => {
"label": local_code + " " + local_nom,
"nom": local_nom,
"code": local_code,
+ "type": local_type,
};
new_data2.push(node);
});
@@ -988,6 +1063,7 @@ const Module_Session_Evaluation = (props) => {
"label": "",
"nom": "",
"code": "",
+ "type": "",
};
new_data2.push(node);
@@ -1075,7 +1151,7 @@ const Module_Session_Evaluation = (props) => {
if (String(res.data.status) === String("true")) {
// console.log(" In Getall_Survey_specific_evaluation_By_Session res.data.status = " + res.data.status);
- console.log(" In Getall_Survey_specific_evaluation_By_Session res.data.message r_class = " + res.data.message);
+ // console.log(" In Getall_Survey_specific_evaluation_By_Session res.data.message r_class = " + res.data.message);
setGetall_Survey_specific_evaluation_By_Session_api("true");
setGetall_Survey_specific_evaluation_By_Session_result(res.data.message);
@@ -1408,6 +1484,11 @@ const Module_Session_Evaluation = (props) => {
const [actionmass_eval_froid, setactionmass_eval_froid] = useState();
+ const [actionmass_eval_specific_00, setactionmass_eval_specific_00] = useState();
+ const [actionmass_eval_specific_01, setactionmass_eval_specific_01] = useState();
+ const [actionmass_eval_specific_02, setactionmass_eval_specific_02] = useState();
+ const [actionmass_eval_specific_03, setactionmass_eval_specific_03] = useState();
+
const [actionmass_eval_val, setactionmass_eval_val] = useState();
const actionmass_evaluation = (event) => {
const value = event.target.value;
@@ -1471,6 +1552,85 @@ const Module_Session_Evaluation = (props) => {
}
+ async function actionmass_Specific_00_Traitemet() {
+
+ var tab_ids_survey = []
+ for (var i = 0; i < selectionModel_evaluation_specific_00.length; i++) {
+ var myid = parseInt(String(selectionModel_evaluation_specific_00[i]));
+ var line = JSON.parse(Getall_Survey_specific_evaluation_By_Session_result[0]).list_survey[myid];
+ var line_id = JSON.parse(Getall_Survey_specific_evaluation_By_Session_result[0]).list_survey[myid]._id;
+ tab_ids_survey.push(line_id);
+ }
+
+ //SendEvaluationEmail_Many_Ids(tab_ids_inscription);
+ if (String(actionmass_eval_specific_00) === "demande evaluation") {
+ Send_Survey_By_Email_For_Ids(tab_ids_survey);
+ Getall_Survey_specific_evaluation_By_Session();
+ }
+ else if (String(actionmass_eval_specific_00) === "export_evaluation") {
+ Export_Selected_Survey_PDF(tab_ids_survey, "Evaluation formateur", "formateur");
+ Getall_Survey_specific_evaluation_By_Session();
+ }
+ else if (String(actionmass_eval_specific_00) === "cold_eval_qr_code") {
+ Export_QR_CODE_Formateur_Evaluation(tab_ids_survey);
+ Getall_Survey_specific_evaluation_By_Session();
+ }
+
+ }
+
+
+ async function actionmass_Specific_01_Traitemet() {
+
+ var tab_ids_survey = []
+ for (var i = 0; i < selectionModel_evaluation_specific_01.length; i++) {
+ var myid = parseInt(String(selectionModel_evaluation_specific_01[i]));
+ var line = JSON.parse(Getall_Survey_specific_evaluation_By_Session_result[1]).list_survey[myid];
+ var line_id = JSON.parse(Getall_Survey_specific_evaluation_By_Session_result[1]).list_survey[myid]._id;
+ tab_ids_survey.push(line_id);
+ }
+
+ //SendEvaluationEmail_Many_Ids(tab_ids_inscription);
+ if (String(actionmass_eval_specific_01) === "demande evaluation") {
+ Send_Survey_By_Email_For_Ids(tab_ids_survey);
+ Getall_Survey_specific_evaluation_By_Session();
+ }
+ else if (String(actionmass_eval_specific_01) === "export_evaluation") {
+ Export_Selected_Survey_PDF(tab_ids_survey, "Evaluation formateur", "formateur");
+ Getall_Survey_specific_evaluation_By_Session();
+ }
+ else if (String(actionmass_eval_specific_01) === "cold_eval_qr_code") {
+ Export_QR_CODE_Formateur_Evaluation(tab_ids_survey);
+ Getall_Survey_specific_evaluation_By_Session();
+ }
+
+ }
+
+ async function actionmass_Specific_02_Traitemet() {
+
+ var tab_ids_survey = []
+ for (var i = 0; i < selectionModel_evaluation_specific_02.length; i++) {
+ var myid = parseInt(String(selectionModel_evaluation_specific_02[i]));
+ var line = JSON.parse(Getall_Survey_specific_evaluation_By_Session_result[2]).list_survey[myid];
+ var line_id = JSON.parse(Getall_Survey_specific_evaluation_By_Session_result[2]).list_survey[myid]._id;
+ tab_ids_survey.push(line_id);
+ }
+
+ //SendEvaluationEmail_Many_Ids(tab_ids_inscription);
+ if (String(actionmass_eval_specific_02) === "demande evaluation") {
+ Send_Survey_By_Email_For_Ids(tab_ids_survey);
+ Getall_Survey_specific_evaluation_By_Session();
+ }
+ else if (String(actionmass_eval_specific_02) === "export_evaluation") {
+ Export_Selected_Survey_PDF(tab_ids_survey, "Evaluation formateur", "formateur");
+ Getall_Survey_specific_evaluation_By_Session();
+ }
+ else if (String(actionmass_eval_specific_02) === "cold_eval_qr_code") {
+ Export_QR_CODE_Formateur_Evaluation(tab_ids_survey);
+ Getall_Survey_specific_evaluation_By_Session();
+ }
+
+ }
+
async function actionmass_Evaluation_Traitemet() {
@@ -1713,6 +1873,44 @@ const Module_Session_Evaluation = (props) => {
}
+ function Export_survey_specific_eval_datatab_class(local_survey_internal_code) {
+ const stored_cookie = getCookie('tokenmysypart');
+
+ var nom_fichier_cmd = "export_reponses.xlsx";
+
+ var url = process.env.REACT_APP_API_URL + "myclass/api/Export_To_Excel_Specif_Survey_with_filter_survey_internal_code/" + stored_cookie + "/" + selected_session_id + "/" + local_survey_internal_code + "/";
+
+ console.log(" ### url = ", url)
+
+ setLoading(true);
+ axios.get(url, { responseType: 'blob', },)
+ .then((res) => {
+ setLoading(false);
+ //console.log(" In Export_Dashbord_to_CSV res.data = " + res.data);
+ if (String(res.data) === String("false")) {
+ // alert("Impossible d'exporter les réponses (2) ");
+ setdisplay_alert_mysy("1");
+ setalert_message("Impossible d'exporter les réponses (2) ");
+ setalert_type("error");
+ } else {
+ fileDownload(res.data, nom_fichier_cmd)
+
+ }
+ }).catch((error) => {
+ setLoading(false);
+ console.error('Error:', error);
+ // alert(" Impossible d'exporter les réponses ")
+ setdisplay_alert_mysy("1");
+ setalert_message(" Impossible d'exporter les réponses ");
+ setalert_type("error");
+
+ });
+
+
+ setLoading(false);
+ }
+
+
function Export_survey_formateur_eval_datatab_class() {
const stored_cookie = getCookie('tokenmysypart');
@@ -1750,7 +1948,6 @@ const Module_Session_Evaluation = (props) => {
}
-
function Export_survey_cold_eval_datatab_class() {
const stored_cookie = getCookie('tokenmysypart');
@@ -1812,7 +2009,8 @@ const Module_Session_Evaluation = (props) => {
if (String(res.data) === String("false")) {
alert("Impossible de générer le QR code (2) ");
} else {
- fileDownload(res.data, nom_fichier_cmd)
+ fileDownload(res.data, nom_fichier_cmd);
+ Getall_Survey_hot_evaluation_By_Session();
}
}).catch((error) => {
@@ -1852,7 +2050,8 @@ const Module_Session_Evaluation = (props) => {
if (String(res.data) === String("false")) {
alert("Impossible de générer le QR code (2) ");
} else {
- fileDownload(res.data, nom_fichier_cmd)
+ fileDownload(res.data, nom_fichier_cmd);
+ Getall_Survey_cold_evaluation_By_Session();
}
}).catch((error) => {
@@ -1893,7 +2092,8 @@ const Module_Session_Evaluation = (props) => {
if (String(res.data) === String("false")) {
alert("Impossible de générer le QR code (2) ");
} else {
- fileDownload(res.data, nom_fichier_cmd)
+ fileDownload(res.data, nom_fichier_cmd);
+ Getall_Survey_formateur_evaluation_By_Session();
}
}).catch((error) => {
@@ -1981,6 +2181,9 @@ const Module_Session_Evaluation = (props) => {
const [selected_formulaire_id, setselected_formulaire_id] = useState();
+ const [selected_formulaire_type, setselected_formulaire_type] = useState("");
+
+
const [selected_formateur_id, setselected_formateur_id] = useState("");
const [Dialog_LIST_COLD_EVALUATION_QUESTION_open, setDialog_LIST_COLD_EVALUATION_QUESTION_open] = React.useState(false);
@@ -2029,7 +2232,10 @@ const Module_Session_Evaluation = (props) => {
};
const Dialog_Add_Specefic_Evaluation_handleClose_buton = () => {
+
setDialog_Add_Specefic_Evaluation_open(false);
+ setselected_formateur_id("");
+ setselected_formulaire_type("");
};
@@ -2075,16 +2281,21 @@ const Module_Session_Evaluation = (props) => {
id="event_dialog_version_q_COLD_evaluation"
fullWidth
//className="disabled_style enable_style"
+
options={New_Getall_Partner_Formulaires_Specifique_evaluation_with_Filter}
onChange={(event, value) => {
if (value && value._id) {
setselected_formulaire_id(value._id);
+ setselected_formulaire_type(value.type);
} else {
setselected_formulaire_id("");
+ setselected_formulaire_type("");
}
+
+ setselected_formateur_id("");
}}
renderInput={(params) =>
{
- {New_Getall_Training_Employee_No_Filter_result && New_Getall_Training_Employee_No_Filter_result.length > 0 &&
+ {New_Getall_Training_Employee_No_Filter_result && New_Getall_Training_Employee_No_Filter_result.length > 0
+ && selected_formulaire_type === "human_eval" &&
Choisir un formateur à évaluer
{
value={New_Getall_Training_Employee_No_Filter_result.filter((data) => (data)._id === String(selected_formateur_id))[0].label}
onChange={(event, value) => {
if (value && value._id) {
-
setselected_formateur_id(value._id);
} else {
@@ -2545,12 +2756,12 @@ const Module_Session_Evaluation = (props) => {
{
Getall_Survey_hot_evaluation_By_Session();
- }}>Actualiser la liste
+ }}>Actualiser
{
Export_survey_hot_eval_datatab_class();
- }}>Exporter (excel)
+ }}>Export excel
@@ -2603,7 +2814,7 @@ const Module_Session_Evaluation = (props) => {
if (selectionModel_evaluation.length <= 0) {
setactionmass_eval_val("");
}
-
+
}}
selectionModel={selectionModel_evaluation}
@@ -2843,12 +3054,12 @@ const Module_Session_Evaluation = (props) => {
{
Getall_Survey_cold_evaluation_By_Session();
- }}>Actualiser la liste
+ }}>Actualiser
{
Export_survey_hot_eval_datatab_class();
- }}>Exporter (excel)
+ }}>Export excel
@@ -3150,12 +3361,12 @@ const Module_Session_Evaluation = (props) => {
{
Getall_Survey_formateur_evaluation_By_Session();
- }}>Actualiser la liste
+ }}>Actualiser
{
Export_survey_formateur_eval_datatab_class();
- }}>Exporter (excel)
+ }}>Export excel
@@ -3390,8 +3601,8 @@ const Module_Session_Evaluation = (props) => {
{/* -- début Evaluation specifiques **/}
-
- Evaluation spécifiques zzz
+
+ Ajouter vos propres évaluations
@@ -3399,6 +3610,8 @@ const Module_Session_Evaluation = (props) => {
onClick={(event, value) => {
Getall_Partner_Formulaires_Specifique_evaluation_with_Filter();
+ setselected_formateur_id("");
+ setselected_formulaire_type("");
setDialog_Add_Specefic_Evaluation_open(true); // zzzzz
}}
>Ajouter une évaluation
}
@@ -3406,215 +3619,1080 @@ const Module_Session_Evaluation = (props) => {
-
Evaluation spécifique = {Getall_Survey_specific_evaluation_By_Session_result.length}
-
-
{Getall_Survey_specific_evaluation_By_Session_result && Getall_Survey_specific_evaluation_By_Session_result.length > 0 &&
Getall_Survey_specific_evaluation_By_Session_result.map((specific_eval, index_specific) => (
- survey_internal_code = {(JSON.parse(specific_eval).survey_internal_code)}
- Questionnaire = {(JSON.parse(specific_eval).survey_formulaire_code)}
-
-
-
-
Initialisation
- }
- modal
- nested
- position="center center"
- >
-
- {close => (
-
-
- ×
-
-
MySy Information
-
- {' '}
- Confirmez la (ré)initialisation de la demande.
- /!\ Si une demande d'évaluation existe pour cette session, elle sera supprimée et récréée
-
-
-
-
-
-
- {
- setselected_specific_survey(JSON.parse(specific_eval).survey_internal_code);
-
- Getall_Partner_Formulaires_Specifique_evaluation_with_Filter();
- Getall_Partner_Formulaires_formateur_evaluation_with_Filter();
- setselected_formateur_id("");
- setDialog_Add_Specefic_Evaluation_open(true);
- close();
- }}> Valider
-
-
-
- {
- //console.log('modal closed ');
- close();
- }}
- >
- Annuler
-
-
-
+ {/*** Traitement de l'evaluation spécific 00 */}
+ {index_specific === 0 &&
+
+
+
+
Type Questionnaire : {(JSON.parse(specific_eval).survey_formulaire_code)}
- )}
-
+
+
+
+
+
Initialisation
+ }
+ modal
+ nested
+ position="center center"
+ >
+
+ {close => (
+
+
+ ×
+
+
MySy Information
+
+ {' '}
+
+
+ Confirmez la (ré)initialisation de la demande.
+ /!\ Si une demande d'évaluation existe pour cette session, elle sera supprimée et récréée
+
+
+
+
+
+
+ {
+ setselected_specific_survey(JSON.parse(specific_eval).survey_internal_code);
+
+ Getall_Partner_Formulaires_Specifique_evaluation_with_Filter();
+ Getall_Partner_Formulaires_formateur_evaluation_with_Filter();
+ setselected_formateur_id("");
+ setselected_formulaire_type("");
+ setDialog_Add_Specefic_Evaluation_open(true);
+ close();
+ }}> Valider
+
+
+
+ {
+ //console.log('modal closed ');
+ close();
+ }}
+ >
+ Annuler
+
+
+
+
+ )}
+
-
{
- // Getall_Survey_formateur_evaluation_By_Session();
- alert(" Actualiser la liste survey_internal_code = ", event.target.id)
- }}>Actualiser la liste
+
{
+ Getall_Survey_specific_evaluation_By_Session();
+ }}>Actualiser
-
{
- // Export_survey_formateur_eval_datatab_class();
- alert(" EXPORT survey_internal_code = ", event.target.id)
- // console.log(" ## event.srcElement.id = ", event.target.id)
- }}>Exporter (excel)
-
-
+
{
+ Export_survey_specific_eval_datatab_class(JSON.parse(specific_eval).survey_internal_code);
+ }}>Export excel
-
+
Supprimer
+ }
+ modal
+ nested
+ position="center center"
+ >
- (
+
+
+ ×
+
+
MySy Information
+
+ {' '}
- "& .MuiDataGrid-columnHeaders": {
- backgroundColor: "#c8cfd5",
- color: "black",
- fontSize: 14
- },
+ Confirmez la suppression du tableau d'évaluation
+ /!\ La suppression ne sera effectuée que s'il n'y a aucune réponse
+
- '& .line--statut--pair': {
- backgroundColor: 'rgba(235, 235, 235, .7)',
- color: 'black',
- },
+
+
+
+ {
+ Delete_Specific_Survy_With_survey_internal_code(JSON.parse(specific_eval).survey_internal_code);
+ close();
+ }}> Valider
+
+
+
+ {
+ //console.log('modal closed ');
+ close();
+ }}
+ >
+ Annuler
+
+
+
+
+ )}
+
- [`& .${gridClasses.cell}`]: {
- py: 1,
- },
+
+
- '& .line--positionnement_envoye': {
- backgroundColor: '#F9E79F',
- color: 'black',
+
- },
+
- index_specific = {index_specific} -
- {
- setSelectionModel_evaluation_cold(newSelectionModel_evaluation);
- // console.log("ch selected--" + newSelectionModel_evaluation);
+ "& .MuiDataGrid-columnHeaders": {
+ backgroundColor: "#c8cfd5",
+ color: "black",
+ fontSize: 14
+ },
- if (selectionModel_evaluation_cold.length <= 0) {
- setactionmass_eval_froid("");
- }
- }}
+ '& .line--statut--pair': {
+ backgroundColor: 'rgba(235, 235, 235, .7)',
+ color: 'black',
+ },
- selectionModel={selectionModel_evaluation_cold}
- localeText={frFR.components.MuiDataGrid.defaultProps.localeText}
- rows={JSON.parse(specific_eval).list_survey.map((item, index) => (
- {
- id: index,
- survey_internal_code: (item).survey_internal_code,
- _id: (item)._id,
- email: (item).email,
- nom: (item).nom,
- prenom: (item).prenom,
- status: (item).statut,
- status: (item).statut,
- form_code: (item).formulaire.code,
- date_envoie: (item).date_envoi,
- date_reponse: (item).date_reponse,
- mode_envoi: (item).mode_envoi,
- }
- ))}
- columns={tab_columns_list_evaluation_specific[index_specific]}
- pageSize={10}
- className="datagridclass"
+ [`& .${gridClasses.cell}`]: {
+ py: 1,
+ },
- rowsPerPageOptions={[10]}
- disableSelectionOnClick
- components={{
- Toolbar: GridToolbar,
- }}
+ '& .line--positionnement_envoye': {
+ backgroundColor: '#F9E79F',
+ color: 'black',
- getRowClassName={(params) => {
+ },
- if (String(params.row.status) === "1") {
- return 'line--positionnement_envoye';
- }
+ '& .line--positionnement_repondu': {
+ backgroundColor: '#ABEBC6',
+ color: 'black',
+ fontWeight: '600',
+ },
- if (String(params.row.status) === "2") {
- return 'line--positionnement_repondu';
- }
+ }}
+ >
- // Pour la gestion de la couleur de zone double cliquée
+ {
+ setselectionModel_evaluation_specific_00(newSelectionModel_specific);
- if (parseInt(String(params.row.id)) % 2 === 0) {
- return 'line--statut--pair';
- }
- else if (parseInt(String(params.row.id)) % 2 !== 0) {
- return 'line--statut--impair';
- }
+ if (selectionModel_evaluation_specific_00.length <= 0) {
+ setactionmass_eval_specific_00("");
+ }
- }}
- getEstimatedRowHeight={() => 200}
- getRowHeight={() => "auto"}
- sx={{
- "& .MuiDataGrid-cellContent": {
- minHeight: 50,
+ }}
- },
- [`& .${gridClasses.cell}`]: {
- py: 1,
- },
- }}
+ selectionModel={selectionModel_evaluation_specific_00}
+ localeText={frFR.components.MuiDataGrid.defaultProps.localeText}
+ rows={JSON.parse(specific_eval).list_survey.map((item, index) => (
+ {
+ id: index,
+ survey_internal_code: (item).survey_internal_code,
+ _id: (item)._id,
+ email: (item).email,
+ nom: (item).nom,
+ prenom: (item).prenom,
+ status: (item).statut,
+ status: (item).statut,
+ form_code: (item).formulaire.code,
+ date_envoie: (item).date_envoi,
+ date_reponse: (item).date_reponse,
+ mode_envoi: (item).mode_envoi,
+ }
+ ))}
- />
+ columns={tab_columns_list_evaluation_specific[index_specific]}
+ pageSize={10}
+ className="datagridclass"
+
+ rowsPerPageOptions={[10]}
+ disableSelectionOnClick
+ components={{
+ Toolbar: GridToolbar,
+ }}
+
+ getRowClassName={(params) => {
+
+ if (String(params.row.status) === "1") {
+ return 'line--positionnement_envoye';
+ }
+
+ if (String(params.row.status) === "2") {
+ return 'line--positionnement_repondu';
+ }
+
+ // Pour la gestion de la couleur de zone double cliquée
+
+ if (parseInt(String(params.row.id)) % 2 === 0) {
+ return 'line--statut--pair';
+ }
+ else if (parseInt(String(params.row.id)) % 2 !== 0) {
+ return 'line--statut--impair';
+ }
+
+ }}
+ getEstimatedRowHeight={() => 200}
+ getRowHeight={() => "auto"}
+ sx={{
+ "& .MuiDataGrid-cellContent": {
+ minHeight: 50,
+
+ },
+ [`& .${gridClasses.cell}`]: {
+ py: 1,
+ },
+ }}
+
+ />
-
-
+
+
+ {selectionModel_evaluation_specific_00 && selectionModel_evaluation_specific_00.length > 0 &&
+
+
Traitement en masse / Evaluation spécifique
+
+
+
+
{
+ if (value && value.value) {
+ if (String(value.value) === "demande evaluation"
+ || String(value.value) === "export_evaluation"
+ || String(value.value) === "cold_eval_qr_code") {
+
+ setactionmass_eval_specific_00(value.value);
+
+ }
+ else {
+ setactionmass_eval_specific_00("");
+ }
+
+ }
+ else {
+ setactionmass_eval_specific_00("");
+ }
+
+ }}
+
+ renderInput={(params) =>
+ }
+ />
+ {actionmass_eval_specific_00 && String(actionmass_eval_specific_00) !== "" && actionmass_eval_specific_00.length > 0 &&
+
+ Traiter
+
+ }
+ modal
+ nested
+ position="center center"
+ >
+
+ {close => (
+
+
+ ×
+
+
MySy Information
+
+ {' '}
+
+
+ {actionmass_eval_specific_00 && String(actionmass_eval_specific_00) === "demande evaluation" &&
+ Confirmer l'envoi de la demande d'évaluation pour {selectionModel_evaluation_specific_00.length} ligne(s).
+ }
+
+ {actionmass_eval_specific_00 && String(actionmass_eval_specific_00) === "export_evaluation" &&
+ Confirmer l'export PDF des évaluations pour {selectionModel_evaluation_specific_00.length} ligne(s).
+ }
+
+ {actionmass_eval_specific_00 && String(actionmass_eval_specific_00) === "cold_eval_qr_code" &&
+ Générer le QR d'évaluation {selectionModel_evaluation_specific_00.length} ligne(s).
+ }
+
+
+
+
+ {
+ actionmass_Specific_00_Traitemet();
+ close();
+ }}> Valider
+
+
+
+ {
+ //console.log('modal closed ');
+ close();
+ }}
+ >
+ Annuler
+
+
+
+
+ )}
+
+ }
+
+
+
+
+ }
+
+
+
+
+ }
+
+ {/*** Traitement de l'evaluation spécific 01 */}
+ {index_specific === 1 &&
+
+
+
+
Type Questionnaire : {(JSON.parse(specific_eval).survey_formulaire_code)}
+
+
+
+
+
Initialisation
+ }
+ modal
+ nested
+ position="center center"
+ >
+
+ {close => (
+
+
+ ×
+
+
MySy Information
+
+ {' '}
+
+
+ Confirmez la (ré)initialisation de la demande.
+ /!\ Si une demande d'évaluation existe pour cette session, elle sera supprimée et récréée
+
+
+
+
+
+
+ {
+ setselected_specific_survey(JSON.parse(specific_eval).survey_internal_code);
+
+ Getall_Partner_Formulaires_Specifique_evaluation_with_Filter();
+ Getall_Partner_Formulaires_formateur_evaluation_with_Filter();
+ setselected_formateur_id("");
+ setselected_formulaire_type("");
+ setDialog_Add_Specefic_Evaluation_open(true);
+ close();
+ }}> Valider
+
+
+
+ {
+ //console.log('modal closed ');
+ close();
+ }}
+ >
+ Annuler
+
+
+
+
+ )}
+
+
+
+
+
{
+ Getall_Survey_specific_evaluation_By_Session();
+ }}>Actualiser
+
+
+
{
+ Export_survey_specific_eval_datatab_class(JSON.parse(specific_eval).survey_internal_code);
+ }}>Export excel
+
+
Supprimer
+ }
+ modal
+ nested
+ position="center center"
+ >
+
+ {close => (
+
+
+ ×
+
+
MySy Information
+
+ {' '}
+
+
+ Confirmez la suppression du tableau d'évaluation
+ /!\ La suppression ne sera effectuée que s'il n'y a aucune réponse
+
+
+
+
+
+
+ {
+ Delete_Specific_Survy_With_survey_internal_code(JSON.parse(specific_eval).survey_internal_code);
+ close();
+ }}> Valider
+
+
+
+ {
+ //console.log('modal closed ');
+ close();
+ }}
+ >
+ Annuler
+
+
+
+
+ )}
+
+
+
+
+
+
+
+ {
+ setselectionModel_evaluation_specific_01(newSelectionModel_specific);
+
+ if (selectionModel_evaluation_specific_01.length <= 0) {
+ setactionmass_eval_specific_00("");
+ }
+
+ }}
+
+ selectionModel={selectionModel_evaluation_specific_01}
+ localeText={frFR.components.MuiDataGrid.defaultProps.localeText}
+ rows={JSON.parse(specific_eval).list_survey.map((item, index) => (
+ {
+ id: index,
+ survey_internal_code: (item).survey_internal_code,
+ _id: (item)._id,
+ email: (item).email,
+ nom: (item).nom,
+ prenom: (item).prenom,
+ status: (item).statut,
+ status: (item).statut,
+ form_code: (item).formulaire.code,
+ date_envoie: (item).date_envoi,
+ date_reponse: (item).date_reponse,
+ mode_envoi: (item).mode_envoi,
+ }
+ ))}
+
+ columns={tab_columns_list_evaluation_specific[index_specific]}
+ pageSize={10}
+ className="datagridclass"
+
+ rowsPerPageOptions={[10]}
+ disableSelectionOnClick
+ components={{
+ Toolbar: GridToolbar,
+ }}
+
+ getRowClassName={(params) => {
+
+ if (String(params.row.status) === "1") {
+ return 'line--positionnement_envoye';
+ }
+
+ if (String(params.row.status) === "2") {
+ return 'line--positionnement_repondu';
+ }
+
+ // Pour la gestion de la couleur de zone double cliquée
+
+ if (parseInt(String(params.row.id)) % 2 === 0) {
+ return 'line--statut--pair';
+ }
+ else if (parseInt(String(params.row.id)) % 2 !== 0) {
+ return 'line--statut--impair';
+ }
+
+ }}
+ getEstimatedRowHeight={() => 200}
+ getRowHeight={() => "auto"}
+ sx={{
+ "& .MuiDataGrid-cellContent": {
+ minHeight: 50,
+
+ },
+ [`& .${gridClasses.cell}`]: {
+ py: 1,
+ },
+ }}
+
+ />
+
+
+
+
+
+ {selectionModel_evaluation_specific_01 && selectionModel_evaluation_specific_01.length > 0
+ &&
+
+
Traitement en masse / Evaluation spécifique
+
+
+
+
{
+ if (value && value.value) {
+ if (String(value.value) === "demande evaluation"
+ || String(value.value) === "export_evaluation"
+ || String(value.value) === "cold_eval_qr_code") {
+
+ setactionmass_eval_specific_01(value.value);
+
+ }
+ else {
+ setactionmass_eval_specific_01("");
+ }
+
+ }
+ else {
+ setactionmass_eval_specific_01("");
+ }
+
+ }}
+
+ renderInput={(params) =>
+ }
+ />
+
+
+
+ {actionmass_eval_specific_01 && String(actionmass_eval_specific_01) !== ""
+ && actionmass_eval_specific_01.length > 0 &&
+
+ Traiter
+
+ }
+ modal
+ nested
+ position="center center"
+ >
+
+ {close => (
+
+
+ ×
+
+
MySy Information
+
+ {' '}
+
+
+ {actionmass_eval_specific_01 && String(actionmass_eval_specific_01) === "demande evaluation" &&
+ Confirmer l'envoi de la demande d'évaluation pour {selectionModel_evaluation_specific_01.length} ligne(s).
+ }
+
+ {actionmass_eval_specific_01 && String(actionmass_eval_specific_01) === "export_evaluation" &&
+ Confirmer l'export PDF des évaluations pour {selectionModel_evaluation_specific_01.length} ligne(s).
+ }
+
+ {actionmass_eval_specific_01 && String(actionmass_eval_specific_01) === "cold_eval_qr_code" &&
+ Générer le QR d'évaluation du formateur {selectionModel_evaluation_specific_01.length} ligne(s).
+ }
+
+
+
+
+ {
+ actionmass_Specific_01_Traitemet();
+ close();
+ }}> Valider
+
+
+
+ {
+
+ close();
+ }}
+ >
+ Annuler
+
+
+
+
+ )}
+
+ }
+
+
+
+
+ }
+
+
+
+
}
+
+ {/*** Traitement de l'evaluation spécific 01 */}
+ {index_specific === 2 &&
+
+
+
+
Type Questionnaire : {(JSON.parse(specific_eval).survey_formulaire_code)}
+
+
+
+
+
Initialisation
+ }
+ modal
+ nested
+ position="center center"
+ >
+
+ {close => (
+
+
+ ×
+
+
MySy Information
+
+ {' '}
+
+
+ Confirmez la (ré)initialisation de la demande.
+ /!\ Si une demande d'évaluation existe pour cette session, elle sera supprimée et récréée
+
+
+
+
+
+
+ {
+ setselected_specific_survey(JSON.parse(specific_eval).survey_internal_code);
+
+ Getall_Partner_Formulaires_Specifique_evaluation_with_Filter();
+ Getall_Partner_Formulaires_formateur_evaluation_with_Filter();
+ setselected_formateur_id("");
+ setselected_formulaire_type("");
+ setDialog_Add_Specefic_Evaluation_open(true);
+ close();
+ }}> Valider
+
+
+
+ {
+ //console.log('modal closed ');
+ close();
+ }}
+ >
+ Annuler
+
+
+
+
+ )}
+
+
+
{
+ Getall_Survey_specific_evaluation_By_Session();
+ }}>Actualiser
+
+
+
{
+ Export_survey_specific_eval_datatab_class(JSON.parse(specific_eval).survey_internal_code);
+ }}>Export excel
+
+
Supprimer
+ }
+ modal
+ nested
+ position="center center"
+ >
+
+ {close => (
+
+
+ ×
+
+
MySy Information
+
+ {' '}
+
+
+ Confirmez la suppression du tableau d'évaluation
+ /!\ La suppression ne sera effectuée que s'il n'y a aucune réponse
+
+
+
+
+
+
+ {
+ Delete_Specific_Survy_With_survey_internal_code(JSON.parse(specific_eval).survey_internal_code);
+ close();
+ }}> Valider
+
+
+
+ {
+ //console.log('modal closed ');
+ close();
+ }}
+ >
+ Annuler
+
+
+
+
+ )}
+
+
+
+
+
+
+
+
+
+ {
+ setselectionModel_evaluation_specific_02(newSelectionModel_specific);
+
+ if (selectionModel_evaluation_specific_02.length <= 0) {
+ setactionmass_eval_specific_00("");
+ }
+
+ }}
+
+ selectionModel={selectionModel_evaluation_specific_02}
+ localeText={frFR.components.MuiDataGrid.defaultProps.localeText}
+ rows={JSON.parse(specific_eval).list_survey.map((item, index) => (
+ {
+ id: index,
+ survey_internal_code: (item).survey_internal_code,
+ _id: (item)._id,
+ email: (item).email,
+ nom: (item).nom,
+ prenom: (item).prenom,
+ status: (item).statut,
+ status: (item).statut,
+ form_code: (item).formulaire.code,
+ date_envoie: (item).date_envoi,
+ date_reponse: (item).date_reponse,
+ mode_envoi: (item).mode_envoi,
+ }
+ ))}
+
+ columns={tab_columns_list_evaluation_specific[index_specific]}
+ pageSize={10}
+ className="datagridclass"
+
+ rowsPerPageOptions={[10]}
+ disableSelectionOnClick
+ components={{
+ Toolbar: GridToolbar,
+ }}
+
+ getRowClassName={(params) => {
+
+ if (String(params.row.status) === "1") {
+ return 'line--positionnement_envoye';
+ }
+
+ if (String(params.row.status) === "2") {
+ return 'line--positionnement_repondu';
+ }
+
+ // Pour la gestion de la couleur de zone double cliquée
+
+ if (parseInt(String(params.row.id)) % 2 === 0) {
+ return 'line--statut--pair';
+ }
+ else if (parseInt(String(params.row.id)) % 2 !== 0) {
+ return 'line--statut--impair';
+ }
+
+ }}
+ getEstimatedRowHeight={() => 200}
+ getRowHeight={() => "auto"}
+ sx={{
+ "& .MuiDataGrid-cellContent": {
+ minHeight: 50,
+
+ },
+ [`& .${gridClasses.cell}`]: {
+ py: 1,
+ },
+ }}
+
+ />
+
+
+
+ {selectionModel_evaluation_specific_02 && selectionModel_evaluation_specific_02.length > 0
+ &&
+
+
Traitement en masse / Evaluation spécifique
+
+
+
+
{
+ if (value && value.value) {
+ if (String(value.value) === "demande evaluation"
+ || String(value.value) === "export_evaluation"
+ || String(value.value) === "cold_eval_qr_code") {
+
+ setactionmass_eval_specific_02(value.value);
+
+ }
+ else {
+ setactionmass_eval_specific_02("");
+ }
+
+ }
+ else {
+ setactionmass_eval_specific_02("");
+ }
+
+ }}
+
+ renderInput={(params) =>
+ }
+ />
+
+
+
+ {actionmass_eval_specific_02 && String(actionmass_eval_specific_02) !== ""
+ && actionmass_eval_specific_02.length > 0 &&
+
+ Traiter
+
+ }
+ modal
+ nested
+ position="center center"
+ >
+
+ {close => (
+
+
+ ×
+
+
MySy Information
+
+ {' '}
+
+
+ {actionmass_eval_specific_02 && String(actionmass_eval_specific_02) === "demande evaluation" &&
+ Confirmer l'envoi de la demande d'évaluation pour {selectionModel_evaluation_specific_02.length} ligne(s).
+ }
+
+ {actionmass_eval_specific_02 && String(actionmass_eval_specific_02) === "export_evaluation" &&
+ Confirmer l'export PDF des évaluations pour {selectionModel_evaluation_specific_02.length} ligne(s).
+ }
+
+ {actionmass_eval_specific_02 && String(actionmass_eval_specific_02) === "cold_eval_qr_code" &&
+ Générer le QR d'évaluation du formateur {selectionModel_evaluation_specific_02.length} ligne(s).
+ }
+
+
+
+
+ {
+ actionmass_Specific_02_Traitemet();
+ close();
+ }}> Valider
+
+
+
+ {
+
+ close();
+ }}
+ >
+ Annuler
+
+
+
+
+ )}
+
+ }
+
+
+
+
+ }
+
+
+
+
}
diff --git a/src/components/Module_Session_Notes_Classement.js b/src/components/Module_Session_Notes_Classement.js
index 3af8fe9..3930422 100644
--- a/src/components/Module_Session_Notes_Classement.js
+++ b/src/components/Module_Session_Notes_Classement.js
@@ -2185,8 +2185,10 @@ const Module_Session_Notes_Classement = (props) => {
// console.log(" ### tab_inscrit_ids = ", tab_inscrit_ids)
- var url = process.env.REACT_APP_API_URL + "myclass/api/Prepare_and_Send_Inscrit_Bulletin_Note_By_PDF/" + stored_cookie + "/" + tab_inscrit_ids + "/685ebd41ed392125a88f1574";
+ var url = process.env.REACT_APP_API_URL + "myclass/api/Prepare_and_Send_Inscrit_Bulletin_Note_By_PDF/" + stored_cookie + "/" + tab_inscrit_ids ;
+ console.log(" ## url = ", url);
+
setLoading(true);
axios.get(url, { responseType: 'blob', },)
.then((res) => {
@@ -2671,7 +2673,7 @@ const Module_Session_Notes_Classement = (props) => {
-
+
diff --git a/src/components/Mon_Tableau_De_Bord.js b/src/components/Mon_Tableau_De_Bord.js
index b154f56..b6b2a1b 100644
--- a/src/components/Mon_Tableau_De_Bord.js
+++ b/src/components/Mon_Tableau_De_Bord.js
@@ -28,6 +28,16 @@ import Box from '@mui/material/Box';
import { TbColumns2, TbColumns1 } from "react-icons/tb";
import { BarChart } from '@mui/x-charts';
+import {
+ GridToolbarContainer, GridToolbarExport, GridToolbarColumnsButton,
+ GridToolbarFilterButton, GridToolbarDensitySelector, GridToolbarExportContainer, useGridApiContext,
+ gridFilteredSortedRowIdsSelector,
+ gridVisibleColumnFieldsSelector,
+ GridValueGetterParams,
+ GridPreferencePanelsValue,
+
+} from '@mui/x-data-grid';
+
import 'reactjs-popup/dist/index.css';
import Autocomplete from '@mui/material/Autocomplete';
@@ -38,19 +48,18 @@ import fr from 'date-fns/locale/fr';
import { registerLocale } from 'react-datepicker';
import DatePicker from "react-datepicker";
import "react-datepicker/dist/react-datepicker.css";
-
+import MenuItem from '@mui/material/MenuItem';
import {
useTheme,
} from "@mui/material";
import { tokens } from "../theme";
-import { DataGrid, GridToolbar, frFR } from '@mui/x-data-grid';
import Module_Alert_Confirmation from "./Module_Alert_Confirmation";
-
+import { DataGrid, GridToolbar, frFR } from '@mui/x-data-grid';
import { FcPrint } from "react-icons/fc";
-
+import * as XLSX from 'xlsx';
const Mon_Tableau_De_Bord = (props) => {
-registerLocale('fr', fr);
+ registerLocale('fr', fr);
const theme = useTheme();
const colors = tokens(theme.palette.mode);
const history = useHistory();
@@ -249,6 +258,7 @@ registerLocale('fr', fr);
function submenu_rapport_rh() {
setsubmenu("rapport_rh");
submenu_color_management("rapport_rh");
+ Getall_Training_Employee_No_Filter();
}
function submenu_bpf() {
@@ -903,6 +913,10 @@ registerLocale('fr', fr);
const [Getall_Qry_RH_Data_api, setGetall_Qry_RH_Data_api] = useState();
const [Getall_Qry_RH_Data_message, setGetall_Qry_RH_Data_message] = useState();
const [Getall_Qry_RH_Data_result, setGetall_Qry_RH_Data_result] = useState([]);
+
+ const [Getall_Qry_RH_Data_result_total_duration, setGetall_Qry_RH_Data_result_total_duration] = useState([]);
+
+
function Getall_Qry_RH_Data(event) {
var form = new FormData();
@@ -926,13 +940,22 @@ registerLocale('fr', fr);
}*/
+ var tab_rh_ids = [];
+ for (var i = 0; i < tab_selected_users.length; i++) {
+
+ var local_rh_id = tab_selected_users[i]._id;
+ tab_rh_ids.push(local_rh_id);
+ }
form.append("token", stored_cookie);
form.append("session_start_date", date_from);
form.append("session_end_date", date_to);
form.append("filter_value", filter_value);
- form.append("tab_rh_id", "all");
+ if (tab_rh_ids.length > 0)
+ form.append("tab_rh_id", tab_rh_ids);
+ else
+ form.append("tab_rh_id", "all");
form.append("event_type", event_type);
@@ -946,6 +969,7 @@ registerLocale('fr', fr);
if (String(res.data.status) === String("true")) {
//console.log(" In Getall_Qry_RH_Data res.data.status = " + res.data.status);
//console.log(" In Getall_Qry_RH_Data res.data.message r_class = " + res.data.message);
+ //console.log(" In Getall_Qry_RH_Data res.data.retval_total_duration r_class = " + res.data.retval_total_duration);
setGetall_Qry_RH_Data_result_JSON(JSON.parse('[' + res.data.message + ']'));
@@ -954,6 +978,8 @@ registerLocale('fr', fr);
setGetall_Qry_RH_Data_api("true");
setGetall_Qry_RH_Data_result(res.data.message);
+ setGetall_Qry_RH_Data_result_total_duration(res.data.retval_total_duration);
+
}
else {
@@ -975,6 +1001,8 @@ registerLocale('fr', fr);
const [Getall_Qry_RH_Task_Cost_Data_api, setGetall_Qry_RH_Task_Cost_Data_api] = useState();
const [Getall_Qry_RH_Task_Cost_Data_message, setGetall_Qry_RH_Task_Cost_Data_message] = useState();
const [Getall_Qry_RH_Task_Cost_Data_result, setGetall_Qry_RH_Task_Cost_Data_result] = useState([]);
+ const [Getall_Qry_RH_Task_Cost_Data_result_total_duration, setGetall_Qry_RH_Task_Cost_Data_result_total_duration] = useState([]);
+ const [Getall_Qry_RH_Task_Cost_Data_result_total_cost, setGetall_Qry_RH_Task_Cost_Data_result_total_cost] = useState([]);
function Getall_Qry_RH_Task_Cost_Data(event) {
var form = new FormData();
@@ -999,12 +1027,26 @@ registerLocale('fr', fr);
}*/
+ var tab_rh_ids = [];
+ for (var i = 0; i < tab_selected_users.length; i++) {
+
+ var local_rh_id = tab_selected_users[i]._id;
+ tab_rh_ids.push(local_rh_id);
+ }
+
+
form.append("token", stored_cookie);
form.append("session_start_date", date_from);
form.append("session_end_date", date_to);
form.append("filter_value", filter_value);
- form.append("tab_rh_id", "all");
+ if (tab_rh_ids.length > 0)
+ form.append("tab_rh_id", tab_rh_ids);
+ else
+ form.append("tab_rh_id", "all");
+
+ form.append("event_type", event_type);
+
form.append("event_type", event_type);
@@ -1017,14 +1059,18 @@ registerLocale('fr', fr);
setLoading(false);
if (String(res.data.status) === String("true")) {
//console.log(" In Getall_Qry_RH_Task_Cost_Data res.data.status = " + res.data.status);
- //console.log(" In Getall_Qry_RH_Task_Cost_Data res.data.message r_class = " + res.data.message);
+ // console.log(" In Getall_Qry_RH_Task_Cost_Data res.data.message r_class = " + res.data.message);
+ // console.log(" In Getall_Qry_RH_Task_Cost_Data res.data.retval_node_total_duration r_class = " + res.data.retval_node_total_duration);
+ // console.log(" In Getall_Qry_RH_Task_Cost_Data res.data.retval_node_total_cost r_class = " + res.data.retval_node_total_cost);
- setGetall_Qry_RH_Task_Cost_Data_result_JSON(JSON.parse('[' + res.data.message + ']'));
-
- var jsonObj = JSON.parse('[' + res.data.message + ']');
+ //setGetall_Qry_RH_Task_Cost_Data_result_JSON(JSON.parse('[' + res.data.message + ']'));
setGetall_Qry_RH_Task_Cost_Data_api("true");
setGetall_Qry_RH_Task_Cost_Data_result(res.data.message);
+ setGetall_Qry_RH_Task_Cost_Data_result_total_duration(res.data.retval_node_total_duration);
+ setGetall_Qry_RH_Task_Cost_Data_result_total_cost(res.data.retval_node_total_cost);
+
+
}
@@ -1341,6 +1387,201 @@ registerLocale('fr', fr);
/****** FIN GESTION BPF */
+
+
+ const [New_Getall_Training_Employee_No_Filter_result, setNew_Getall_Training_Employee_No_Filter_result] = useState([]);
+
+ const [Getall_Training_Employee_No_Filter_api, setGetall_Training_Employee_No_Filter_api] = useState();
+ const [Getall_Training_Employee_No_Filter_message, setGetall_Training_Employee_No_Filter_message] = useState();
+ const [Getall_Training_Employee_No_Filter_result, setGetall_Training_Employee_No_Filter_result] = useState();
+ function Getall_Training_Employee_No_Filter(event) {
+
+ var form = new FormData();
+
+
+ const stored_cookie = getCookie('tokenmysypart');
+ form.append("token", stored_cookie);
+
+ var myurl = process.env.REACT_APP_API_URL + "myclass/api/Get_List_Ressource_Humaine_no_filter/";
+
+
+ setLoading(true);
+ axios.post(myurl, form).then(res => {
+
+ setLoading(false);
+
+ if (String(res.data.status) === String("true")) {
+ //console.log(" In Getall_Training_Employee_No_Filter res.data.status = " + res.data.status);
+ //console.log(" In Getall_Training_Employee_No_Filter res.data.message r_class = " + res.data.message);
+ setGetall_Training_Employee_No_Filter_api("true");
+ setGetall_Training_Employee_No_Filter_result(res.data.message);
+
+ var new_data2 = [];
+ const new_data = res.data.message.map((x) => {
+
+ //---
+ var localid = JSON.parse(x).id;
+ var local_id = JSON.parse(x)._id;
+ var local_nom = JSON.parse(x).nom;
+ var local_prenom = JSON.parse(x).prenom;
+ var local_ismanager = JSON.parse(x).ismanager;
+
+
+ //---
+ var node = {
+ "_id": local_id,
+ // "id": localid, cas particulier pour gerer l'affichage timeline, on met id = _id
+ "id": local_id,
+ "label": local_nom + " " + local_prenom,
+ "title": local_nom + " " + String(local_prenom)[0] + ".",
+ "nom": local_nom,
+ "prenom": local_prenom,
+ "ismanager": local_ismanager
+ };
+ new_data2.push(node);
+ });
+
+ if (new_data2.length > 0)
+ setNew_Getall_Training_Employee_No_Filter_result(new_data2);
+
+
+ }
+ else {
+ setGetall_Training_Employee_No_Filter_api("false");
+ setGetall_Training_Employee_No_Filter_message(res.data.message);
+ // alert(res.data.message);
+ setdisplay_alert_mysy("1");
+ setalert_message(res.data.message);
+ setalert_type("error");
+ }
+
+ }).catch((error) => {
+ setLoading(false);
+ console.warn('Not good man :( Getall_Training_Employee_No_Filter = ', error);
+ setGetall_Training_Employee_No_Filter_api("false");
+ alert(" Impossible de recuperer la liste des employés");
+ //setmyApimyApiMessage("")
+ })
+ }
+
+ const fixedVal = [];
+ const [tab_selected_users, settab_selected_users] = useState([...fixedVal]);
+
+ // DEBUT EXPORT EXCEL DATAGRID
+
+ function CustomToolbar(props) {
+
+
+ return (
+
+
+
+
+
+
+
+
+
+
+ );
+ }
+
+ function getExcelData(apiRef) {
+ // Select rows and columns
+ const filteredSortedRowIds = gridFilteredSortedRowIdsSelector(apiRef);
+ const visibleColumnsField = gridVisibleColumnFieldsSelector(apiRef).filter((data) => (data) !== "__check__").
+ filter((data) => (data) !== "Detail").
+ filter((data) => (data) !== "delete");
+
+ // Format the data. Here we only keep the value
+ const data = filteredSortedRowIds.map((id) => {
+ const row = {};
+ visibleColumnsField.forEach((field) => {
+ row[field] = apiRef.current.getCellParams(id, field).value;
+ });
+ return row;
+ });
+
+ return data;
+ }
+
+
+ function ExportButton(props) {
+ return (
+
+
+
+ );
+ }
+
+ function handleExport(apiRef, data_colums) {
+ const data = getExcelData(apiRef);
+ const visibleColumnsField = gridVisibleColumnFieldsSelector(apiRef).filter((data) => (data) !== "__check__").
+ filter((data) => (data) !== "Detail").
+ filter((data) => (data) !== "delete");
+
+
+ const local_config = {
+ keys: visibleColumnsField,
+
+ columnNames: data_colums.filter((mydata) => (mydata).disableExport !== true).map(function (mydata) {
+ if (mydata.headerName && visibleColumnsField.includes(mydata.field)) {
+ if (mydata.headerName) {
+ return mydata.headerName;
+ }
+ }
+
+ }),
+
+ fileName: 'data_' + String(new Date().toJSON().slice(0, 10)).replaceAll("-", "_") + '.xlsx',
+ sheetName: 'Export_' + String(new Date().toJSON().slice(0, 10)).replaceAll("-", "_"),
+ };
+
+ local_config.columnNames = local_config.columnNames.filter(function (element) {
+ return element !== undefined;
+ });
+
+
+ const rows = data.map((row) => {
+ const mRow = {};
+ for (const key of local_config.keys) {
+ mRow[key] = row[key];
+ }
+ return mRow;
+ });
+
+ const worksheet = XLSX.utils.json_to_sheet(rows);
+ XLSX.utils.sheet_add_aoa(worksheet, [[...local_config.columnNames]], {
+ origin: 'A1',
+ });
+
+ const workbook = XLSX.utils.book_new();
+ XLSX.utils.book_append_sheet(workbook, worksheet, local_config.sheetName);
+ XLSX.writeFile(workbook, local_config.fileName, { compression: true });
+ }
+
+ function ExportMenuItem(props) {
+ const apiRef = useGridApiContext();
+ const { hideMenu } = props;
+
+ return (
+
{
+ handleExport(apiRef, props.data_colums);
+ // Hide the export menu after the export
+ hideMenu?.();
+ }}
+ >
+ Export Excel
+
+ );
+ }
+
+ // FIN EXPORT EXCEL DATAGRID
+
+
return (
{isLoading &&
@@ -1441,6 +1682,7 @@ registerLocale('fr', fr);
showTimeSelect={false}
dateFormat="dd/MM/yyyy"
className="disabled_style"
+ locale={'fr'}
/>
@@ -1448,6 +1690,63 @@ registerLocale('fr', fr);
}
+ {String(submenu) === String("rapport_rh") &&
+
+
+
+ Employé
+
{
+
+ // console.log(" ## settab_selected_users = ", tab_selected_users)
+ settab_selected_users([
+ ...fixedVal,
+ ...value.filter((i) => fixedVal.indexOf(i) === -1),
+ ]);
+
+ /*if (value.length > 1) {
+ Get_List_Agenda_Events_For_Many_Users(value, "ressource_humaine");
+ }*/
+ }}
+
+ renderInput={(params) =>
+ }
+ />
+
+
+
+
+
+
+
+
+
+
}
+
+
{
@@ -1472,6 +1771,7 @@ registerLocale('fr', fr);
if (String(submenu) === "rapport_rh") {
Getall_Qry_RH_Data();
Getall_Qry_RH_Task_Cost_Data();
+
}
// Recuperation des rapports ressources humaines
@@ -1681,6 +1981,7 @@ registerLocale('fr', fr);
{String(submenu) === String("rapport_rh") &&
Rapports Ressources Humaines
+
@@ -1715,7 +2016,11 @@ registerLocale('fr', fr);
}}
>
{
setSelectionModel(newSelectionModel);
@@ -1776,9 +2081,7 @@ registerLocale('fr', fr);
rowsPerPageOptions={[10]}
disableSelectionOnClick
- components={{
- Toolbar: GridToolbar,
- }}
+
//sx={datagridSx}
getCellClassName={(params) => {
@@ -1819,8 +2122,8 @@ registerLocale('fr', fr);
- {Getall_Qry_RH_Data_result &&
- Getall_Qry_RH_Data_result.map((my_data) => (
+ {Getall_Qry_RH_Data_result_total_duration &&
+ Getall_Qry_RH_Data_result_total_duration.map((my_data) => (
{JSON.parse(my_data).total_duration &&
@@ -1880,7 +2183,11 @@ registerLocale('fr', fr);
}}
>
{
setSelectionModel_task_cost(newSelectionModel);
@@ -1947,9 +2254,7 @@ registerLocale('fr', fr);
rowsPerPageOptions={[10]}
disableSelectionOnClick
- components={{
- Toolbar: GridToolbar,
- }}
+
//sx={datagridSx}
getCellClassName={(params) => {
@@ -1990,8 +2295,8 @@ registerLocale('fr', fr);
- {Getall_Qry_RH_Task_Cost_Data_result &&
- Getall_Qry_RH_Task_Cost_Data_result.map((my_data) => (
+ {Getall_Qry_RH_Task_Cost_Data_result_total_duration && Getall_Qry_RH_Task_Cost_Data_result_total_duration.length > 0 &&
+ Getall_Qry_RH_Task_Cost_Data_result_total_duration.map((my_data) => (
{JSON.parse(my_data).total_duration &&
@@ -2002,16 +2307,21 @@ registerLocale('fr', fr);
Durée totale : {JSON.parse(my_data).total_duration}
}
+
+ ))}
- {JSON.parse(my_data).total_cost &&
+ {Getall_Qry_RH_Task_Cost_Data_result_total_cost && Getall_Qry_RH_Task_Cost_Data_result_total_cost.length > 0 &&
+ Getall_Qry_RH_Task_Cost_Data_result_total_cost.map((my_data2) => (
+
+
+ {JSON.parse(my_data2).total_cost &&
- Coût total : {JSON.parse(my_data).total_cost}
+ Coût total : {JSON.parse(my_data2).total_cost}
}
-
))}
@@ -2031,7 +2341,7 @@ registerLocale('fr', fr);
Incateurs Qualiopi
-
+
Les indicateurs qualiopi
{
Contact
-
+ {/*
Blog
-
+ */}
Marketplace
@@ -275,9 +275,9 @@ const New_SideBar_2025 = () => {
-
+ {/*
Tarifs
-
+ */}
Contact
diff --git a/src/components/New_Sidebar_Client_Intranet_2025.js b/src/components/New_Sidebar_Client_Intranet_2025.js
index ba09363..5dd0246 100644
--- a/src/components/New_Sidebar_Client_Intranet_2025.js
+++ b/src/components/New_Sidebar_Client_Intranet_2025.js
@@ -152,9 +152,9 @@ const New_Sidebar_Client_Intranet_2025 = () => {
Contact
-
+ {/*
Blog
-
+ */}
Marketplace
@@ -283,9 +283,9 @@ const New_Sidebar_Client_Intranet_2025 = () => {
Contact
-
+ {/*
Blog
-
+ */}
Marketplace
diff --git a/src/components/New_Sidebar_ENT_Student_2025.js b/src/components/New_Sidebar_ENT_Student_2025.js
index a18822c..5f79851 100644
--- a/src/components/New_Sidebar_ENT_Student_2025.js
+++ b/src/components/New_Sidebar_ENT_Student_2025.js
@@ -283,9 +283,9 @@ const New_Sidebar_ENT_Student_2025 = () => {
Contact
-
+ {/*
Blog
-
+ */}
Marketplace
diff --git a/src/components/Notes_Evaluation.js b/src/components/Notes_Evaluation.js
index e7eba15..f79643d 100644
--- a/src/components/Notes_Evaluation.js
+++ b/src/components/Notes_Evaluation.js
@@ -1392,13 +1392,11 @@ const Notes_Evaluation = (props) => {
var local_code_session = JSON.parse(x).code_session;
var local_titre = JSON.parse(x).titre;
var local_class_internal_url = JSON.parse(x).class_internal_url;
-
var local_date_debut = JSON.parse(x).date_debut;
var local_date_fin = JSON.parse(x).date_fin;
-
//---
var node = {
"_id": local_id,
@@ -1932,6 +1930,7 @@ const Notes_Evaluation = (props) => {
} else {
new_p_detail_eval_date_heure_fin = p_detail_eval_date_heure_fin;
}
+
form.append("eval_date_heure_fin", new_p_detail_eval_date_heure_fin);
form.append("statut", p_detail_statut);
@@ -4512,7 +4511,7 @@ const Notes_Evaluation = (props) => {
}
-
+
@@ -5789,11 +5788,11 @@ const Notes_Evaluation = (props) => {
{
Getall_Evaluation_Participant_List(selected_id);
- }}>Actualiser la liste
+ }}>Actualiser
{
Export_evaluation_note_exel();
- }}>Exporter (excel)
+ }}>Export excel
diff --git a/src/components/Partner.js b/src/components/Partner.js
index c7d2de4..8b64d22 100644
--- a/src/components/Partner.js
+++ b/src/components/Partner.js
@@ -1848,12 +1848,12 @@ const Partner = (props) => {
{left_menu === true &&
- {left_menu === true &&
+ {left_menu === true &&
}
+
}
{left_menu === false && */}
{String(formation_initiale) === "1" &&
@@ -2888,10 +2888,10 @@ const Partner = (props) => {
- {left_menu === true &&
+ {left_menu === true &&
}
{left_menu === false &&
diff --git a/src/components/Partner_Commande.js b/src/components/Partner_Commande.js
index 94bf7e4..3aeead4 100644
--- a/src/components/Partner_Commande.js
+++ b/src/components/Partner_Commande.js
@@ -108,7 +108,7 @@ const useStyles = makeStyles((theme) => ({
const Partner_Commande = (props) => {
const { action, orderid } = useParams();
-registerLocale('fr', fr);
+ registerLocale('fr', fr);
const classes = useStyles();
const history = useHistory();
@@ -614,6 +614,9 @@ registerLocale('fr', fr);
setselected_order_line_id(order_line_id);
+
+ setp_add_line_item_internal_url(order_line_formation);
+
setp_add_line_item(order_line_formation);
setp_add_line_item_qty(order_line_qty);
setp_add_line_item_price(order_line_prix_unitaire);
@@ -5751,7 +5754,7 @@ registerLocale('fr', fr);
{New_GetCurrentPartnerClass_result && New_GetCurrentPartnerClass_result.length > 0 &&
(p_add_line_item || String(p_add_line_item) === "") && String(p_detail_header_statut_label).toLowerCase() !== "facturé" &&
-
Formation
+
Formation
{
const columns_question = [
{ field: '_id', headerName: '_id', hide: true },
{ field: 'id', headerName: 'id', hide: true },
- { field: 'updatable', headerName: 'updatable', hide: false },
+ { field: 'updatable', headerName: 'updatable', hide: true },
{ field: 'list_choix', headerName: 'Liste Choix', hide: true },
{ field: 'list_case_cocher', headerName: 'Liste C.A.C', hide: true },
@@ -1125,7 +1125,7 @@ const Partner_Config_Formulaires = (props) => {
function Ajouter_Question() {
setselected_question_id("");
setquestion_rang("99");
- setquestion_updatable('0');
+ setquestion_updatable('1');
setquestion_question("");
setquestion_type("");
setquestion_max_note("2");
@@ -1936,7 +1936,7 @@ const Partner_Config_Formulaires = (props) => {
/>}
-
Rang nn cc
+
Rang
{
const columns = [
{ field: '_id', headerName: '_id', hide: true },
{ field: 'id', headerName: 'id', hide: true },
- { field: 'config_name', headerName: 'Nom Configuration', flex: 1, hide: false, editable: false },
- { field: 'config_value', headerName: 'Valeur config', flex: 1, hide: false, editable: false },
+ { field: 'config_name', headerName: 'Configuration', flex: 1, hide: false, editable: false },
+ { field: 'config_value', headerName: 'Valeur Config.', flex: 1, hide: false, editable: false },
]
const columns_quotation = [
@@ -124,24 +126,57 @@ const Partner_Configuration_Technique = (props) => {
return (
- {String(cellValues.row.related_collection) === "quotation" && "Devis"}
- {String(cellValues.row.related_collection) === "survey" && "Questionnaires"}
+ {String(cellValues.row.related_collection) === "quotation" && "Devis"}
+ {String(cellValues.row.related_collection) === "survey" && "Questionnaires"}
+ {String(cellValues.row.related_collection) === "emargement" && "Emargement"}
+
+
+ );
+ },
+ },
+ {
+ field: 'config_name', headerName: 'Configuration', flex: 1, hide: false, editable: false,
+ renderCell: (cellValues) => {
+ return (
+
+
+ {String(cellValues.row.config_name) === "relance_auto" && Est activé }
+ {String(cellValues.row.config_name) === "frequence_relance_auto" && Frequence Relance }
+ {String(cellValues.row.config_name) === "nb_relance_auto" && Nb Relances }
+
);
},
},
- { field: 'config_name', headerName: 'Nom Configuration', flex: 1, hide: false, editable: false },
- { field: 'config_value', headerName: 'Valeur config', flex: 1, hide: false, editable: false },
+
+ {
+ field: 'config_value', headerName: 'Valeur Config.', flex: 1, hide: false, editable: false,
+ renderCell: (cellValues) => {
+ return (
+
+
+ {String(cellValues.row.config_name) === "relance_auto" && String(cellValues.row.config_value) === "1" && Oui }
+ {String(cellValues.row.config_name) === "relance_auto" && String(cellValues.row.config_value) !== "1" && Non }
+ {String(cellValues.row.config_name) === "frequence_relance_auto" && {cellValues.row.config_value} }
+ {String(cellValues.row.config_name) === "nb_relance_auto" && {cellValues.row.config_value} }
+
+
+
+
+ );
+ },
+
+ },
]
const columns_type_client = [
{ field: '_id', headerName: '_id', hide: true },
{ field: 'id', headerName: 'id', hide: true },
- { field: 'code', headerName: 'Nom Configuration', flex: 1, hide: false, editable: false },
- { field: 'description', headerName: 'Valeur config', flex: 1, hide: false, editable: false },
+ { field: 'code', headerName: 'Configuration', flex: 1, hide: false, editable: false },
+ { field: 'description', headerName: 'Valeur Config.', flex: 1, hide: false, editable: false },
{
field: 'is_financeur', headerName: 'Financeur', flex: 1, hide: false, editable: false,
@@ -251,8 +286,8 @@ const Partner_Configuration_Technique = (props) => {
const columns_groupe_client = [
{ field: '_id', headerName: '_id', hide: true },
{ field: 'id', headerName: 'id', hide: true },
- { field: 'code', headerName: 'Nom Configuration', flex: 1, hide: false, editable: false },
- { field: 'description', headerName: 'Valeur config', flex: 1, hide: false, editable: false },
+ { field: 'code', headerName: 'Configuration', flex: 1, hide: false, editable: false },
+ { field: 'description', headerName: 'Valeur Config.', flex: 1, hide: false, editable: false },
@@ -646,6 +681,113 @@ const Partner_Configuration_Technique = (props) => {
{ field: 'document_type_doc', headerName: 'Type', hide: true },
]
+
+ const columns_email_envoye = [
+ { field: '_id', headerName: '_id', hide: true },
+ { field: 'id', headerName: 'id', hide: true },
+ { field: 'from', headerName: 'De', flex: 1, hide: false, editable: false },
+ { field: 'subject', headerName: 'Sujet', flex: 1, hide: false, editable: false },
+ { field: 'to', headerName: 'A', flex: 1, hide: false, editable: false },
+
+ { field: 'cc', headerName: 'cc', flex: 1, hide: true, editable: false },
+ { field: 'bcc', headerName: 'bcc', flex: 1, hide: true, editable: false },
+
+ {
+ field: 'statut', headerName: 'Statut', flex: 1, hide: false, editable: false,
+ renderCell: (cellValues) => {
+ return (
+
+ {cellValues.row.statut && String(cellValues.row.statut) === "1" && "Env."}
+ {cellValues.row.statut && String(cellValues.row.statut) === "0" && "Init"}
+ {cellValues.row.statut && String(cellValues.row.statut) === "-1" && "Err"}
+
+
+
+ );
+ }
+ },
+ {
+ field: 'sent', headerName: 'Date envoi', flex: 1, hide: false, editable: false,
+ renderCell: (cellValues) => {
+ return (
+
+ {cellValues.row.sent && <> {String(cellValues.row.sent).substring(0, 16)} >}
+
+
+ );
+ },
+ },
+
+ { field: 'message', headerName: 'MEssage', flex: 1, hide: true, editable: false },
+ { field: 'error_message', headerName: 'Erreur', flex: 1, hide: false, editable: false },
+
+ { field: 'smtp_account_From_User', headerName: 'smtp_account_From_User', flex: 1, hide: true, editable: false },
+ { field: 'smtp_account_user', headerName: 'smtp_account_user', flex: 1, hide: true, editable: false },
+ { field: 'smtp_account_port', headerName: 'smtp_account_port', flex: 1, hide: true, editable: false },
+
+
+ {
+ field: "resend", headerName: 'renvoyer',
+ renderCell: (cellValues) => {
+ return (
+
+
+
+
+ }
+ modal
+ nested
+ position="center center"
+ >
+ {close => (
+
+
+ ×
+
+
MySy Information
+
+ {' '}
+
+ En confirmant cette opération, le message sera envoyé
+
+
+
+
+ {
+ handleClick_Renvoyer_Email_Qiueu(cellValues.row._id);
+ //console.log('modal closed ');
+ close();
+ }}> Valider
+
+
+
+ {
+ //console.log('modal closed ');
+ close();
+ }}
+ >
+ Annuler
+
+
+
+
+ )}
+
+
+
+ );
+ }
+ }
+
+
+ ]
+
+
+
const myRef = useRef(null)
const myRef_doc_auto = useRef(null)
@@ -915,7 +1057,7 @@ const Partner_Configuration_Technique = (props) => {
const stored_cookie = getCookie('tokenmysypart');
form.append("token", stored_cookie);
- form.append("tab_related_collection", "quotation,survey");
+ form.append("tab_related_collection", "quotation,survey,emargement");
var myurl = process.env.REACT_APP_API_URL + "myclass/api/Get_List_Partner_Basic_Setup/";
@@ -925,7 +1067,7 @@ const Partner_Configuration_Technique = (props) => {
if (String(res.data.status) === String("true")) {
//console.log(" In Getall_Parter_Devis_Config_Points res.data.status = " + res.data.status);
- //console.log(" In Getall_Parter_Devis_Config_Points res.data.message r_class = " + res.data.message);
+ // console.log(" In Getall_Parter_Devis_Config_Points res.data.message r_class = " + res.data.message);
setGetall_Parter_Devis_Config_Points_api("true");
setGetall_Parter_Devis_Config_Points_result(res.data.message);
setRows(res.data.message);
@@ -1033,6 +1175,46 @@ const Partner_Configuration_Technique = (props) => {
})
}
+ const [Getall_Parter_List_Sent_Email_api, setGetall_Parter_List_Sent_Email_api] = useState();
+ const [Getall_Parter_List_Sent_Email_message, setGetall_Parter_List_Sent_Email_message] = useState();
+ const [Getall_Parter_List_Sent_Email_result, setGetall_Parter_List_Sent_Email_result] = useState([]);
+ function Getall_Parter_List_Sent_Email(event) {
+
+ var form = new FormData();
+
+
+ const stored_cookie = getCookie('tokenmysypart');
+ form.append("token", stored_cookie);
+
+ var myurl = process.env.REACT_APP_API_URL + "myclass/api/Get_List_Message_To_Mail_Queue/";
+ setLoading(true);
+ axios.post(myurl, form).then(res => {
+ setLoading(false);
+ if (String(res.data.status) === String("true")) {
+ //console.log(" In Getall_Parter_List_Sent_Email res.data.status = " + res.data.status);
+ //console.log(" In Getall_Parter_List_Sent_Email res.data.message r_class = " + res.data.message);
+ setGetall_Parter_List_Sent_Email_api("true");
+ setGetall_Parter_List_Sent_Email_result(res.data.message);
+
+ }
+ else {
+ setGetall_Parter_List_Sent_Email_api("false");
+ setGetall_Parter_List_Sent_Email_message(res.data.message);
+ // alert(res.data.message);
+ setdisplay_alert_mysy("1");
+ setalert_message(res.data.message);
+ setalert_type("error");
+ }
+
+ }).catch((error) => {
+ setLoading(false);
+ console.warn('Not good man :( Getall_Parter_List_Sent_Email = ', error);
+ setGetall_Parter_List_Sent_Email_api("false");
+ alert(" Impossible de recuperer la liste des types de client");
+ //setmyApimyApiMessage("")
+ })
+ }
+
const [Getall_Parter_groupe_client_api, setGetall_Parter_groupe_client_api] = useState();
const [Getall_Parter_groupe_client_message, setGetall_Parter_groupe_client_message] = useState();
@@ -1376,8 +1558,6 @@ const Partner_Configuration_Technique = (props) => {
setconfig_quotation_data_edit_mode("1");
-
-
if (document.getElementsByName("detail_config_valeur")[0]) {
document.getElementsByName("detail_config_valeur")[0].disabled = false;
document.getElementsByName("detail_config_valeur")[0].style.backgroundColor = "#FFFFFF";
@@ -1407,12 +1587,12 @@ const Partner_Configuration_Technique = (props) => {
setconfig_data_edit_mode("0");
if (document.getElementsByName("detail_config_point")[0]) {
-
document.getElementsByName("detail_config_point")[0].disabled = true;
document.getElementsByName("detail_config_point")[0].style.backgroundColor = "#ECEFF1";
}
if (document.getElementsByName("detail_config_valeur")[0]) {
+ console.log("coucoucou ");
document.getElementsByName("detail_config_valeur")[0].disabled = true;
document.getElementsByName("detail_config_valeur")[0].style.backgroundColor = "#ECEFF1";
}
@@ -1444,7 +1624,7 @@ const Partner_Configuration_Technique = (props) => {
setp_detail_quotation_config_related_collection(line.related_collection);
- Disable_Config_DetailFields();
+ // Disable_Config_DetailFields();
if (document.getElementById('myRef')) {
var divh = document.getElementById('myRef').offsetTop;
@@ -1495,8 +1675,6 @@ const Partner_Configuration_Technique = (props) => {
setconfig_doc_automatic_data_edit_mode("1");
-
-
if (document.getElementsByName("active_config_document")[0]) {
document.getElementsByName("active_config_document")[0].disabled = false;
document.getElementsByName("active_config_document")[0].style.backgroundColor = "#FFFFFF";
@@ -1869,7 +2047,6 @@ const Partner_Configuration_Technique = (props) => {
-
const [p_groupe_client_code, setp_groupe_client_code] = useState("");
const [p_groupe_client_desc, setp_groupe_client_desc] = useState("");
const [selected_groupe_client_id, setselected_groupe_client_id] = useState("");
@@ -2352,6 +2529,59 @@ const Partner_Configuration_Technique = (props) => {
}
+ const [handleClick_Renvoyer_Email_Qiueu_api, sethandleClick_Renvoyer_Email_Qiueu_api] = useState();
+ const [handleClick_Renvoyer_Email_Qiueu_message, sethandleClick_Renvoyer_Email_Qiueu_message] = useState();
+ const [handleClick_Renvoyer_Email_Qiueu_result, sethandleClick_Renvoyer_Email_Qiueu_result] = useState();
+ function handleClick_Renvoyer_Email_Qiueu(local_message_id) {
+
+ var form = new FormData();
+
+
+ const stored_cookie = getCookie('tokenmysypart');
+ form.append("token", stored_cookie);
+ form.append("tab_mail_queu_id", local_message_id);
+
+ var myurl = process.env.REACT_APP_API_URL + "myclass/api/Resend_List_Mail_Queue/";
+
+ setLoading(true);
+ axios.post(myurl, form).then(res => {
+
+ setLoading(false);
+ if (String(res.data.status) === String("true")) {
+ //console.log(" In handleClick_Renvoyer_Email_Qiueu res.data.status = " + res.data.status);
+ //console.log(" In handleClick_Renvoyer_Email_Qiueu res.data.message r_class = " + res.data.message);
+ sethandleClick_Renvoyer_Email_Qiueu_api("true");
+ sethandleClick_Renvoyer_Email_Qiueu_result(res.data.message);
+ Dialog_email_queu_1_handleClose_buton();
+
+ Getall_Parter_List_Sent_Email();
+
+ // alert(res.data.message)
+ setdisplay_alert_mysy("1");
+ setalert_message(res.data.message);
+ setalert_type("success");
+
+
+ }
+ else {
+ sethandleClick_Renvoyer_Email_Qiueu_api("false");
+ sethandleClick_Renvoyer_Email_Qiueu_message(res.data.message);
+ // alert(res.data.message);
+ setdisplay_alert_mysy("1");
+ setalert_message(res.data.message);
+ setalert_type("error");
+ }
+
+ }).catch((error) => {
+ setLoading(false);
+ console.warn('Not good man :( handleClick_Renvoyer_Email_Qiueu = ', error);
+ sethandleClick_Renvoyer_Email_Qiueu_api("false");
+ alert(" Impossible de renvoyer le message");
+ //setmyApimyApiMessage("")
+ })
+ }
+
+
const [handleClick_delete_Groupe_Client_api, sethandleClick_delete_Groupe_Client_api] = useState();
const [handleClick_delete_Groupe_Client_message, sethandleClick_delete_Groupe_Client_message] = useState();
@@ -2978,6 +3208,8 @@ const Partner_Configuration_Technique = (props) => {
function submenu_devis() {
+ setdisplay_detail_quotation_config("");
+ setconfig_quotation_data_edit_mode("");
Getall_Parter_Devis_Config_Points();
setsubmenu("devis");
submenu_color_management("devis");
@@ -2991,9 +3223,16 @@ const Partner_Configuration_Technique = (props) => {
}
+ function submenu_email() {
+ Getall_Parter_List_Sent_Email();
+ setsubmenu("email");
+ submenu_color_management("email");
+ }
+
+
function submenu_color_management(current_menu) {
const list_sous_menu = ["competence", "technique", "type_client", "site", "condition_paiement", "etape_opportunite",
- "devis", "automatic_doc", "groupe_client"]
+ "devis", "automatic_doc", "groupe_client", "email"]
for (let i = 0; i < list_sous_menu.length; i++) {
@@ -3059,6 +3298,13 @@ const Partner_Configuration_Technique = (props) => {
{ "id": "", "label": "", "value": "" },
]
+ const New_Option_Relance_Auto = [
+ { "id": "relance_auto", "label": "Activer relance auto", "value": "relance_auto" },
+ { "id": "frequence_relance_auto", "label": "Frequence Relance", "value": "frequence_relance_auto" },
+ { "id": "nb_relance_auto", "label": "Nb Relance", "value": "nb_relance_auto" },
+ { "id": "", "label": "", "value": "" },
+ ]
+
const [display_alert_mysy, setdisplay_alert_mysy] = useState("");
const [alert_message, setalert_message] = useState("");
@@ -3076,6 +3322,45 @@ const Partner_Configuration_Technique = (props) => {
}
+ const [p_email_queu_id, setp_email_queu_id] = useState("");
+ const [p_email_queu_from, setp_email_queu_from] = useState("");
+ const [p_email_queu_cc, setp_email_queu_cc] = useState("");
+ const [p_email_queu_bcc, setp_email_queu_bcc] = useState("");
+ const [p_email_queu_subject, setp_email_queu_subject] = useState("");
+ const [p_email_queu_to, setp_email_queu_to] = useState("");
+
+
+ const [p_email_queu_message, setp_email_queu_message] = useState("");
+ const [p_email_queu_error_message, setp_email_queu_error_message] = useState("");
+ const [p_email_queu_sent, setp_email_queu_sent] = useState("");
+ const [p_email_queu_smtp_account_smtpsrv, setp_email_queu_smtp_account_smtpsrv] = useState("");
+ const [p_email_queu_smtp_account_user, setp_email_queu_smtp_account_user] = useState("");
+ const [p_email_queu_smtp_account_From_User, setp_email_queu_smtp_account_From_User] = useState("");
+ const [p_email_queu_smtp_account_port, setp_email_queu_smtp_account_port] = useState("");
+
+ const [Dialog_email_queu_1_open, setDialog_email_queu_1_open] = React.useState(false);
+
+ function Dialog_1_handle_change_email_queu(message) {
+ setDialog_email_queu_1_open(true);
+ }
+
+ const Dialog_email_queu_1_handleClose = () => {
+ //alert(" Utiliser le bouton 'fermer' ");
+ //setOpen(false);
+ };
+
+ const Dialog_email_queu_1_handleClose_buton = () => {
+ setp_email_queu_id("");
+ setDialog_email_queu_1_open(false);
+ };
+
+ const [field_message, setfield_message] = useState("");
+ const one_editorRef_message = useRef(null);
+
+ function editor_keyup() {
+
+ }
+
return (
{isLoading &&
@@ -3094,6 +3379,139 @@ const Partner_Configuration_Technique = (props) => {
{/*** FIN Affichage des messages d'alerte*/}
+ {/*** Email Queue */}
+
null}
+
+ PaperProps={{
+
+ className: classes.paper, // Apply the paper style
+ style: {
+ overflowY: 'unset',
+ position: 'absolute',
+ top: '5rem',
+ margin: "2px",
+ },
+ }}
+ hideBackdrop={true}
+ disableScrollLock
+ classes={{
+ paper: classes.dialog
+ }}
+
+ PaperComponent={PaperComponent}
+ aria-labelledby="draggable-dialog-title"
+
+ >
+
+ Email Queue
+
+
+ {Dialog_type_client_1_message}
+
+
+
+ De
+
+
+
+
+ Destinataire(s)
+
+
+
+
+
+
+
+ one_editorRef_message.current = editor}
+ //initialValue={field_programme_initial_value}
+
+ onKeyUp={editor_keyup}
+ value={p_email_queu_message}
+ disabled={true}
+ init={{
+ resize: false,
+ height: 400,
+ menubar: true,
+ plugins: [
+ 'advlist', 'autolink', 'lists', 'link', 'image', 'charmap', 'print', 'preview', 'anchor', 'searchreplace',
+ 'visualblocks', 'code', 'fullscreen', 'insertdatetime', 'media', 'table', 'paste', 'code', 'help', 'wordcount',
+ 'lists', 'link', 'image', 'charmap', 'preview', 'anchor', 'searchreplace', 'visualblocks',
+
+ ],
+ toolbar: 'undo redo | casechange blocks | bold italic backcolor | ' +
+ 'alignleft aligncenter alignright alignjustify | ' +
+ 'bullist numlist checklist outdent indent | removeformat | a11ycheck code table help',
+
+ content_style: 'body { font-family:DM Sans,sans-serif; font-size:14px; }'
+ }}
+ />
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {
+ handleClick_Renvoyer_Email_Qiueu(p_email_queu_id);
+ }}
+ className="bton_enreg_dialog">Renvoyer
+
+
+
+ Fermer
+
+
+
+
+
+
+
+ {/*** Fin Email Queue */}
+
+
{/*** COMPETENCE */}
@@ -4073,6 +4491,7 @@ const Partner_Configuration_Technique = (props) => {
Relances
Courrier Auto
+
Email
@@ -5383,6 +5802,8 @@ const Partner_Configuration_Technique = (props) => {
className="datagridclass"
onRowDoubleClick={(newSelectionModel) => {
+ setdisplay_detail_quotation_config("");
+ setconfig_quotation_data_edit_mode("");
setgridline_quotation_id(newSelectionModel.row.id);
setselected_row__id(newSelectionModel.row._id)
handleClick_edit_config_quotation_From_Line(newSelectionModel.row.id);
@@ -5467,7 +5888,12 @@ const Partner_Configuration_Technique = (props) => {
{display_detail_quotation_config && String(display_detail_quotation_config) === "1" &&
-
Cible
+ {p_detail_quotation_config_related_collection === "quotation" &&
+
+
+ Cible
+
+
{
InputLabelProps={{
shrink: true,
}}
- disabled={false}
+ disabled={true}
className="disabled_style"
- value={p_detail_quotation_config_related_collection}
+ //value={p_detail_quotation_config_related_collection}
+ value="Les devis"
/>
-
+
}
-
Point de configuration
+ {p_detail_quotation_config_related_collection === "survey" &&
}
+
+ {p_detail_quotation_config_related_collection === "emargement" &&
}
-
- {String(config_quotation_data_edit_mode) === "1" && String(p_detail_quotation_config_point) !== "frequence_relance_auto" &&
+ {New_Option_Relance_Auto && New_Option_Relance_Auto.length > 0 && p_detail_quotation_config_point &&
+ String(p_detail_quotation_config_point) === "relance_auto" &&
+
Relance Automatique
+ (data).value === String(p_detail_quotation_config_point))[0].label}
+ />
+
+ }
+
+ {New_Option_Relance_Auto && New_Option_Relance_Auto.length > 0 && p_detail_quotation_config_point &&
+ String(p_detail_quotation_config_point) === "frequence_relance_auto" &&
+
Fréquence de relance
+ (data).value === String(p_detail_quotation_config_point))[0].label}
+ />
+
+ }
+
+ {New_Option_Relance_Auto && New_Option_Relance_Auto.length > 0 && p_detail_quotation_config_point &&
+ String(p_detail_quotation_config_point) === "nb_relance_auto" &&
+
Nombre maximum de relance
+ (data).value === String(p_detail_quotation_config_point))[0].label}
+ />
+
+ }
+
+
+
+
+
+ {String(config_quotation_data_edit_mode) === "1" && String(p_detail_quotation_config_point) === "relance_auto" &&
+
Valeur de configuration
+
+ {New_Option_Oui_Non && New_Option_Oui_Non.length > 0 &&
(data).value === String(p_detail_quotation_config_valeur))[0].label}
+ onChange={(event, value) => {
+ if (value && value.value) {
+ setp_detail_quotation_config_valeur(value.value);
+ setConfig_quotation_data_changed("1");
+ }
+ }}
+
+ renderInput={(params) =>
+ }
+ />}
+
+
+
+ }
+
+
+
+ {String(config_quotation_data_edit_mode) === "1" && String(p_detail_quotation_config_point) === "nb_relance_auto" &&
+ String(p_detail_quotation_config_point) !== "relance_auto" &&
Valeur de configuration
{
{String(config_quotation_data_edit_mode) === "1" && String(p_detail_quotation_config_point) === "frequence_relance_auto" &&
}
- {String(config_quotation_data_edit_mode) !== "1" && Valeur de configuration
- Valeur de configuration
+
-
}
+ />
+ }
+
+ {String(config_quotation_data_edit_mode) !== "1" && String(p_detail_quotation_config_point) === "nb_relance_auto"
+ &&
Valeur de configuration
+
+
}
+
+ {String(config_quotation_data_edit_mode) !== "1" && String(p_detail_quotation_config_point) === "relance_auto"
+ &&
Valeur de configuration
+ {New_Option_Oui_Non && New_Option_Oui_Non.length > 0 && p_detail_quotation_config_valeur && (data).value === String(p_detail_quotation_config_valeur))[0].label}
+
+ />}
+
}
@@ -6452,6 +7041,197 @@ const Partner_Configuration_Technique = (props) => {
}
+
+ {/**** Table des emails envoyés */}
+ {String(submenu) === "email" &&
+
+
+
+
+
+
+
+
+ {
+ setselectionModel_type_client(newSelectionModel);
+
+ }}
+ selectionModel={selectionModel_type_client}
+
+ localeText={frFR.components.MuiDataGrid.defaultProps.localeText}
+ rows={Getall_Parter_List_Sent_Email_result.map((item, index) => (
+ {
+ id: index,
+ _id: JSON.parse(item)._id,
+ from: JSON.parse(item).from,
+ subject: JSON.parse(item).subject,
+ to: JSON.parse(item).to,
+ cc: JSON.parse(item).cc,
+ bcc: JSON.parse(item).bcc,
+ message: JSON.parse(item).message,
+
+ statut: JSON.parse(item).statut,
+ sent: JSON.parse(item).sent,
+ error_message: JSON.parse(item).error_message,
+ smtp_account_From_User: JSON.parse(item).smtp_account_From_User,
+ smtp_account_user: JSON.parse(item).smtp_account_user,
+ smtp_account_port: JSON.parse(item).smtp_account_port,
+
+ }
+ ))}
+
+ columns={columns_email_envoye}
+ pageSize={10}
+ className="datagridclass"
+
+ onRowDoubleClick={(newSelectionModel) => {
+ //setgridline_id(newSelectionModel.row.id);
+ setp_email_queu_id(newSelectionModel.row._id);
+ setp_email_queu_from(newSelectionModel.row.from);
+ setp_email_queu_subject(newSelectionModel.row.subject);
+ setp_email_queu_to(newSelectionModel.row.to);
+
+ setp_email_queu_cc(newSelectionModel.row.cc);
+ setp_email_queu_bcc(newSelectionModel.row.bcc);
+ setp_email_queu_message(newSelectionModel.row.message);
+
+ setp_email_queu_sent(newSelectionModel.row.sent);
+ setp_email_queu_error_message(newSelectionModel.row.error_message);
+ setp_email_queu_smtp_account_From_User(newSelectionModel.row.smtp_account_From_User);
+ setp_email_queu_smtp_account_user(newSelectionModel.row.smtp_account_user);
+ setp_email_queu_smtp_account_port(newSelectionModel.row.smtp_account_port);
+
+ setDialog_email_queu_1_open(true);
+
+
+ // handleClick_edit_config_From_Client_Groupe(newSelectionModel.row.id);
+
+ }}
+
+
+ rowsPerPageOptions={[10]}
+ //disableSelectionOnClick
+ components={{
+ Toolbar: GridToolbar,
+ }}
+ //sx={datagridSx}
+ getCellClassName={(params) => {
+
+
+ //field === "order_header_status"
+ if (params.field === "order_header_status" && String(params.value) == "0") {
+ return 'cell--status--brouillon';
+ }
+
+ if (params.field === "order_header_status" && String(params.value) == "1") {
+
+ return 'cell--status--encours';
+ }
+
+ if (params.field === "order_header_status" && String(params.value) == "2") {
+ return 'cell--status--traite';
+ }
+
+ if (params.field === "order_header_status" && String(params.value) == "3") {
+ return 'cell--status--facture';
+ }
+
+ }}
+ getRowClassName={(params) => {
+
+ if (String(params.row.status) === "-1") {
+ return 'line--statut--annule';
+ }
+ if (String(params.row.status) === "0") {
+ return 'line--statut--preinscrit';
+ }
+ if (String(params.row.status) === "1") {
+ return 'line--statut--inscrit';
+ }
+
+ // Pour la gestion de la couleur de zone double cliquée
+ if (String(params.row.id) === String(gridline_id)) {
+ return 'line--statut--selected';
+ }
+ else if (parseInt(String(params.row.id)) % 2 === 0) {
+ return 'line--statut--pair';
+ }
+ else if (parseInt(String(params.row.id)) % 2 !== 0) {
+ return 'line--statut--impair';
+ }
+ }}
+
+
+ />
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
}
)
}
diff --git a/src/components/Partner_Securite_Data.js b/src/components/Partner_Securite_Data.js
index aaae15c..bc68593 100644
--- a/src/components/Partner_Securite_Data.js
+++ b/src/components/Partner_Securite_Data.js
@@ -856,10 +856,10 @@ const Partner_Securite_Data = (props) => {
Emails contact
- {updatemainmail === false &&
+ {/*updatemainmail === false &&
Erreur mise à jour.
- }
+ */}
{updatemainmail === true &&
La mise à jour été faite
@@ -1162,7 +1162,7 @@ const Partner_Securite_Data = (props) => {
-
Parametrage SMTP
+ {/*
Parametrage SMTP
*/}
diff --git a/src/components/Pricing.js b/src/components/Pricing.js
index bf783e1..93f88a8 100644
--- a/src/components/Pricing.js
+++ b/src/components/Pricing.js
@@ -897,6 +897,7 @@ registerLocale('fr', fr);
filterTime={filterPassedTime_end}
dateFormat="dd/MM/yyyy"
className="texte_area"
+ locale={'fr'}
/>
@@ -1029,6 +1030,7 @@ registerLocale('fr', fr);
filterTime={filterPassedTime_end}
dateFormat="dd/MM/yyyy"
className="texte_area"
+ locale={'fr'}
/>
diff --git a/src/components/Student_Account.js b/src/components/Student_Account.js
index c047316..c9dda58 100644
--- a/src/components/Student_Account.js
+++ b/src/components/Student_Account.js
@@ -25,7 +25,7 @@ import Module_Ent_Mes_Documents from "./Module_Ent_Mes_Documents";
import Module_Ent_Mon_Planning from "./Module_Ent_Mon_Planning";
import Module_Ent_Mes_Formations from "./Module_Ent_Mes_Formations";
import Module_Ent_Mes_Notes from "./Module_Ent_Mes_Notes";
-
+
function Student_Account() {
const [menu, setmenu] = useState("mes_formations");
const [cookie, setCookie, removeCookie] = useCookies(['tokenmysych']);
diff --git a/src/components/SurveyDocument.js b/src/components/SurveyDocument.js
index 4b0f330..5498bc6 100644
--- a/src/components/SurveyDocument.js
+++ b/src/components/SurveyDocument.js
@@ -20,7 +20,7 @@ import { useParams } from 'react-router-dom'
import RadioGroup from '@mui/material/RadioGroup';
import FormControlLabel from '@mui/material/FormControlLabel';
import FormControl from '@mui/material/FormControl';
-import FormLabel from '@mui/material/FormLabel';
+
import Radio from '@mui/material/Radio';
import Checkbox from '@mui/material/Checkbox';
@@ -58,7 +58,7 @@ function SurveyDocument() {
setLoading(false);
//console.log(" get_Given_Survey_Data : In test res.data.status = " + res.data.status);
- // console.log(" get_Given_Survey_Data: res.data.message = " + res.data.message);
+ // console.log(" get_Given_Survey_Data: res.data.message = " + res.data.message);
if (String(res.data.status) === "true") {
setget_Given_Survey_Data_api("true");
@@ -127,7 +127,7 @@ function SurveyDocument() {
var is_empty_field = 0;
- // console.log(" tab_variable = ", tab_variable);
+ // console.log(" tab_variable = ", tab_variable);
@@ -322,10 +322,10 @@ function SurveyDocument() {
-
+
- Bonjour {JSON.parse(get_Given_Survey_Data_result).prenom} {JSON.parse(get_Given_Survey_Data_result).nom}
+ Bonjour {JSON.parse(get_Given_Survey_Data_result).prenom} {JSON.parse(get_Given_Survey_Data_result).nom}
{JSON.parse(get_Given_Survey_Data_result).message_introduction}
@@ -357,19 +357,21 @@ function SurveyDocument() {
Questionnaire d'évaluation
}
-
- {JSON.parse(get_Given_Survey_Data_result).class_title &&
Formation : {JSON.parse(get_Given_Survey_Data_result).class_title} }
- {JSON.parse(get_Given_Survey_Data_result).session_code &&
Code Session : {JSON.parse(get_Given_Survey_Data_result).session_code} }
- {JSON.parse(get_Given_Survey_Data_result).session_title &&
Titre Session : {JSON.parse(get_Given_Survey_Data_result).session_title} }
- {JSON.parse(get_Given_Survey_Data_result).session_code_date_debut &&
Date début : {JSON.parse(get_Given_Survey_Data_result).session_code_date_debut} }
- {JSON.parse(get_Given_Survey_Data_result).session_code_date_fin &&
Date fin : {JSON.parse(get_Given_Survey_Data_result).session_code_date_fin} }
+
+ {JSON.parse(get_Given_Survey_Data_result).class_title && Formation : {JSON.parse(get_Given_Survey_Data_result).class_title} }
+ {/*JSON.parse(get_Given_Survey_Data_result).session_code && Code Session : {JSON.parse(get_Given_Survey_Data_result).session_code} */}
+ {JSON.parse(get_Given_Survey_Data_result).session_title && Titre Session : {JSON.parse(get_Given_Survey_Data_result).session_title} }
+ {JSON.parse(get_Given_Survey_Data_result).session_code_date_debut && Date début : {JSON.parse(get_Given_Survey_Data_result).session_code_date_debut} }
+ {JSON.parse(get_Given_Survey_Data_result).session_code_date_fin && Date fin : {JSON.parse(get_Given_Survey_Data_result).session_code_date_fin} }
{JSON.parse(get_Given_Survey_Data_result).list_questions && JSON.parse(get_Given_Survey_Data_result).list_questions.length > 0 &&
JSON.parse(get_Given_Survey_Data_result).list_questions.map((question, index) => (
- N° {index + 1}. {question.question}
+
+
+ N° {index + 1}. {question.question}
{question.type && String(question.type) === "text" &&
{
@@ -393,6 +396,7 @@ function SurveyDocument() {
name={question._id}
precision={0.5}
defaultValue={0}
+ componentsProps={{ typography: { fontFamily: 'DM Sans', fontSize: '14px' } }}
max={parseInt(question.max_note)}
onChange={(e) => {
change_survey_data(e.target);
@@ -418,6 +422,7 @@ function SurveyDocument() {
InputLabelProps={{
shrink: true,
}}
+ componentsProps={{ typography: { fontFamily: 'DM Sans', fontSize: '14px' } }}
inputProps={{ min: "0", step: "1" }}
disabled={false}
onChange={(e) => {
@@ -443,8 +448,8 @@ function SurveyDocument() {
}}
name={question._id}
>
- } label="Oui" />
- } label="Non" />
+ } label="Oui" />
+ } label="Non" />
@@ -466,7 +471,9 @@ function SurveyDocument() {
{question.list_choix &&
question.list_choix.map((list_choix, index) => (
- } label={index + ". " + list_choix.reponse_qcm} />
+ }
+ label={index + ". " + list_choix.reponse_qcm} />
))}
@@ -486,7 +493,7 @@ function SurveyDocument() {
>
{question.list_case_cocher &&
question.list_case_cocher.map((case_cocher, index) => (
- } id={question._id + ":" + case_cocher.reponse_checkbox} name={question._id + ":" + case_cocher.reponse_checkbox} onChange={handleChange_checkbox} label={index + ". " + case_cocher.reponse_checkbox} />
+ } id={question._id + ":" + case_cocher.reponse_checkbox} name={question._id + ":" + case_cocher.reponse_checkbox} onChange={handleChange_checkbox} label={index + ". " + case_cocher.reponse_checkbox} />
))}
@@ -511,7 +518,7 @@ function SurveyDocument() {
-
+
@@ -538,7 +545,7 @@ function SurveyDocument() {
-
+ {/*
{get_Given_Survey_Data_result && get_Given_Survey_Data_result.length > 0 && JSON.parse(get_Given_Survey_Data_result).class_internal_url &&
@@ -546,19 +553,17 @@ function SurveyDocument() {
}
-
+
*/}
}
- {String(get_Given_Survey_Data_api) === "false" &&
-
- Le document est invalide
+ {String(get_Given_Survey_Data_api) === "false" &&
+ /!\ Ce document est invalide ou une réponse a déjà été enregistrée pour ce questionnaire. /!\
}
-
-
-
);
diff --git a/src/components/SurveyDocument_Qr_Code.js b/src/components/SurveyDocument_Qr_Code.js
index 7cf6413..db73a8a 100644
--- a/src/components/SurveyDocument_Qr_Code.js
+++ b/src/components/SurveyDocument_Qr_Code.js
@@ -57,7 +57,7 @@ function SurveyDocument_Qr_Code() {
setLoading(false);
//console.log(" get_Given_Survey_Data : In test res.data.status = " + res.data.status);
- // console.log(" get_Given_Survey_Data: res.data.message = " + res.data.message);
+ // console.log(" get_Given_Survey_Data: res.data.message = " + res.data.message);
if (String(res.data.status) === "true") {
setget_Given_Survey_Data_api("true");
@@ -126,7 +126,7 @@ function SurveyDocument_Qr_Code() {
var is_empty_field = 0;
- // console.log(" tab_variable = ", tab_variable);
+ // console.log(" tab_variable = ", tab_variable);
@@ -321,8 +321,8 @@ function SurveyDocument_Qr_Code() {
-
-
+
+
Bonjour {JSON.parse(get_Given_Survey_Data_result).prenom} {JSON.parse(get_Given_Survey_Data_result).nom}
@@ -356,19 +356,20 @@ function SurveyDocument_Qr_Code() {
Questionnaire d'évaluation
}
-
- {JSON.parse(get_Given_Survey_Data_result).class_title &&
Formation : {JSON.parse(get_Given_Survey_Data_result).class_title} }
- {JSON.parse(get_Given_Survey_Data_result).session_code &&
Code Session : {JSON.parse(get_Given_Survey_Data_result).session_code} }
- {JSON.parse(get_Given_Survey_Data_result).session_title &&
Titre Session : {JSON.parse(get_Given_Survey_Data_result).session_title} }
- {JSON.parse(get_Given_Survey_Data_result).session_code_date_debut &&
Date début : {JSON.parse(get_Given_Survey_Data_result).session_code_date_debut} }
- {JSON.parse(get_Given_Survey_Data_result).session_code_date_fin &&
Date fin : {JSON.parse(get_Given_Survey_Data_result).session_code_date_fin} }
+
+ {JSON.parse(get_Given_Survey_Data_result).class_title && Formation : {JSON.parse(get_Given_Survey_Data_result).class_title} }
+ {/*JSON.parse(get_Given_Survey_Data_result).session_code && Code Session : {JSON.parse(get_Given_Survey_Data_result).session_code} */}
+ {JSON.parse(get_Given_Survey_Data_result).session_title && Titre Session : {JSON.parse(get_Given_Survey_Data_result).session_title} }
+ {JSON.parse(get_Given_Survey_Data_result).session_code_date_debut && Date début : {JSON.parse(get_Given_Survey_Data_result).session_code_date_debut} }
+ {JSON.parse(get_Given_Survey_Data_result).session_code_date_fin && Date fin : {JSON.parse(get_Given_Survey_Data_result).session_code_date_fin} }
{JSON.parse(get_Given_Survey_Data_result).list_questions && JSON.parse(get_Given_Survey_Data_result).list_questions.length > 0 &&
JSON.parse(get_Given_Survey_Data_result).list_questions.map((question, index) => (
- N° {index + 1}. {question.question}
+
+ N° {index + 1}. {question.question}
{question.type && String(question.type) === "text" &&
{
@@ -417,6 +419,7 @@ function SurveyDocument_Qr_Code() {
InputLabelProps={{
shrink: true,
}}
+ componentsProps={{ typography: { fontFamily: 'DM Sans', fontSize: '14px' } }}
inputProps={{ min: "0", step: "1" }}
disabled={false}
onChange={(e) => {
@@ -442,8 +445,8 @@ function SurveyDocument_Qr_Code() {
}}
name={question._id}
>
- } label="Oui" />
- } label="Non" />
+ } label="Oui" />
+ } label="Non" />
@@ -465,7 +468,9 @@ function SurveyDocument_Qr_Code() {
{question.list_choix &&
question.list_choix.map((list_choix, index) => (
- } label={index + ". " + list_choix.reponse_qcm} />
+ } label={index + ". " + list_choix.reponse_qcm} />
))}
@@ -485,7 +490,9 @@ function SurveyDocument_Qr_Code() {
>
{question.list_case_cocher &&
question.list_case_cocher.map((case_cocher, index) => (
- } id={question._id + ":" + case_cocher.reponse_checkbox} name={question._id + ":" + case_cocher.reponse_checkbox} onChange={handleChange_checkbox} label={index + ". " + case_cocher.reponse_checkbox} />
+ } id={question._id + ":" + case_cocher.reponse_checkbox} name={question._id + ":" + case_cocher.reponse_checkbox} onChange={handleChange_checkbox} label={index + ". " + case_cocher.reponse_checkbox} />
))}
@@ -537,7 +544,7 @@ function SurveyDocument_Qr_Code() {
-
+ {/*
{get_Given_Survey_Data_result && get_Given_Survey_Data_result.length > 0 && JSON.parse(get_Given_Survey_Data_result).class_internal_url &&
@@ -545,14 +552,18 @@ function SurveyDocument_Qr_Code() {
}
-
+
*/}
}
- {String(get_Given_Survey_Data_api) === "false" &&
- Le document est invalide
+ {String(get_Given_Survey_Data_api) === "false" &&
+
+ /!\ Ce document est invalide ou une réponse a déjà été enregistrée pour ce questionnaire. /!\
}
diff --git a/src/components/Survey_Eval_QR_Code.js b/src/components/Survey_Eval_QR_Code.js
index 10200d2..12424bc 100644
--- a/src/components/Survey_Eval_QR_Code.js
+++ b/src/components/Survey_Eval_QR_Code.js
@@ -21,7 +21,7 @@ import DialogActions from '@mui/material/DialogActions';
import DialogContent from '@mui/material/DialogContent';
import DialogTitle from '@mui/material/DialogTitle';
import { useParams } from 'react-router-dom'
-import { gridClasses } from '@mui/x-data-grid';
+import { gridClasses } from '@mui/x-data-grid';
import Link from '@mui/material/Link';
import { PiDotsThree } from "react-icons/pi";
import SignatureCanvas from 'react-signature-canvas';
@@ -300,11 +300,21 @@ function Survey_Eval_QR_Code() {
}
+ const [signature_pad_width, setsignature_pad_width] = useState(315);
+ const [signature_pad_height, setsignature_pad_height] = useState(200);
useEffect(() => {
// setselected_e_doc_id(document_id);
// get_Survey_Url();
+ if (window.innerWidth < 720) {
+ setsignature_pad_width(180);
+ setsignature_pad_height(180);
+ } else {
+ setsignature_pad_width(315);
+ setsignature_pad_height(200);
+ }
+
if (String(survey_type) === "pos")
seteval_type_label("Questionnaire Positionnement");
@@ -522,7 +532,7 @@ function Survey_Eval_QR_Code() {
style: {
overflowY: 'unset',
position: 'absolute',
- top: '7rem',
+ top: '11rem',
margin: "2px",
},
}}
@@ -539,17 +549,17 @@ function Survey_Eval_QR_Code() {
Signature Manuscrite
-
+
-
+
{
clearCanvas();
@@ -599,7 +609,7 @@ function Survey_Eval_QR_Code() {
{!erreur_recup_e_doc && Signature }
{erreur_recup_e_doc && Signature - Identifiants invalides }
-
+
@@ -673,7 +683,7 @@ function Survey_Eval_QR_Code() {
{!erreur_recup_e_doc &&
Authentification }
{erreur_recup_e_doc &&
Authentification - Identifiants invalides }
-
+
@@ -724,7 +734,7 @@ function Survey_Eval_QR_Code() {
Information
-
+
@@ -758,19 +768,17 @@ function Survey_Eval_QR_Code() {
{eval_type_label} par QR Code }
{String(eval_type_label) === "0" &&
-
Evaluation par QR Code }
+
Evaluation par QR Code }
- Guide d'utilisation : xxxxxxxxxxxxxxxx
- Pour vous permettre d’émarger électroniquement, MySy Training Technology met à disposition ce module. xxxxxxxxxxxxxxxxxxxxxxx
+ Guide d'utilisation :
+ Ce module vous permet de répondre à un questionnaire de manière sécurisée et nominative via un QR code.
Comment ça marche :
- étape 1 – xxxxxxxxxxxxxxxxxxxxxxxxxxxx
- étape 2 – xxxxxxxxxxxxxxxxxxxxxxxxxx
- étape 3 – Sélectionnez les lignes l’aide de la case à cocher qui se trouve à gauche du tableau
- étape 4 – Ajoutez l’image (fichier png) de votre signature manuelle (cette action est optionnelle)
- étape 5 – Cliquez sur « j’étais présent » ou « j’etais absent » pour finaliser l’émargement.
+ étape 1 – Saisissez votre adresse e-mail Utilisez l'adresse e-mail que vous avez fournie lors de votre inscription à la formation.
+ étape 2 – Remplissez le questionnaire Accédez au formulaire et complétez tous les champs demandés avec attention.
+ étape 3 – Validez vos réponses Cliquez sur le bouton Envoyer pour soumettre vos réponses en toute sécurité.
@@ -948,7 +956,7 @@ function Survey_Eval_QR_Code() {
{' '}
- En confirmant cette opération, vous validez votre présence aux {selectionModel_sequence.length} séquence(s)
+ En confirmant cette opération, vous validez votre présence à {selectionModel_sequence.length} séquence(s)
diff --git a/src/components/contact_automatic_files/Header.js b/src/components/contact_automatic_files/Header.js
index edee8b7..4cd6481 100644
--- a/src/components/contact_automatic_files/Header.js
+++ b/src/components/contact_automatic_files/Header.js
@@ -41,7 +41,7 @@ const Header = ({ style = {} }) => {
À propos
Fonctionnalités
Tarifs
-
Blog
+ {/*
Blog */}
Marketplace
diff --git a/src/components/header_automatic_files/Header.jsx b/src/components/header_automatic_files/Header.jsx
index 9f5fa50..96495f2 100644
--- a/src/components/header_automatic_files/Header.jsx
+++ b/src/components/header_automatic_files/Header.jsx
@@ -274,7 +274,7 @@ const Header = () => {
// window.open("/tarif/#debut", "_self");
}}>Tarifs
-
Blog
+ {/*
Blog */}
Marketplace
diff --git a/src/components/header_automatic_files/Header_Client_Intranet.jsx b/src/components/header_automatic_files/Header_Client_Intranet.jsx
index 32b91cf..1354e37 100644
--- a/src/components/header_automatic_files/Header_Client_Intranet.jsx
+++ b/src/components/header_automatic_files/Header_Client_Intranet.jsx
@@ -274,7 +274,7 @@ const Header_Client_Intranet = () => {
// window.open("/tarif/#debut", "_self");
}}>Tarifs
-
Blog
+ {/*
Blog */}
Marketplace
diff --git a/src/components/header_automatic_files/Header_ENT_Student.jsx b/src/components/header_automatic_files/Header_ENT_Student.jsx
index 1b405a8..9c31d4f 100644
--- a/src/components/header_automatic_files/Header_ENT_Student.jsx
+++ b/src/components/header_automatic_files/Header_ENT_Student.jsx
@@ -274,7 +274,7 @@ const Header_ENT_Student = () => {
// window.open("/tarif/#debut", "_self");
}}>Tarifs
-
Blog
+ {/*
Blog */}
Marketplace
diff --git a/src/components/sidebar.js b/src/components/sidebar.js
index 71ab67c..6d771fd 100644
--- a/src/components/sidebar.js
+++ b/src/components/sidebar.js
@@ -301,9 +301,9 @@ const SideBar = () => {
-
+ {/*
Tarifs
-
+ */}
Detail Formation
diff --git a/src/index.js b/src/index.js
index 71d332b..d2a58e3 100644
--- a/src/index.js
+++ b/src/index.js
@@ -1,24 +1,18 @@
-import React from 'react';
+
import ReactDOM from 'react-dom/client';
import 'bootstrap/dist/css/bootstrap.min.css';
import "./styles/index.scss"
import App from './App';
-import Footer from "./pages/footer";
-
import { Elements } from '@stripe/react-stripe-js';
import { loadStripe } from '@stripe/stripe-js';
-const stripePromise = loadStripe('pk_test_51LUUfAAbmaEugrFTI25uZBD3IFjbtaL6jUfRV83diDf7nco8worna4NGKhMHbPP71WCwT5EHFRdDNatxPrJWwgZ300kgH5EO4p');
-
-const stripePromise_PROD = loadStripe('pk_live_51LUUfAAbmaEugrFTyfNe4Dj0vbxc5qXQqNs0rztjAKy8oSlc5EEQyJGjA8Z5kXmP2gvUMcYLUBYCIyWWzLCw59RY00PtGInkVf');
-
window.ela_tocken = "";
-
+const stripePromise_PROD = loadStripe('pk_live_51LUUfAAbmaEugrFTyfNe4Dj0vbxc5qXQqNs0rztjAKy8oSlc5EEQyJGjA8Z5kXmP2gvUMcYLUBYCIyWWzLCw59RY00PtGInkVf');
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
-
-
-
+
+
+
);
diff --git a/src/index_ORIG.js b/src/index_ORIG.js
new file mode 100644
index 0000000..bc6e0a5
--- /dev/null
+++ b/src/index_ORIG.js
@@ -0,0 +1,24 @@
+import React from 'react';
+import ReactDOM from 'react-dom/client';
+import 'bootstrap/dist/css/bootstrap.min.css';
+import "./styles/index.scss"
+import App from './App';
+import Footer from "./pages/footer";
+
+import { Elements } from '@stripe/react-stripe-js';
+import { loadStripe } from '@stripe/stripe-js';
+
+const stripePromise = loadStripe('pk_test_51LUUfAAbmaEugrFTI25uZBD3IFjbtaL6jUfRV83diDf7nco8worna4NGKhMHbPP71WCwT5EHFRdDNatxPrJWwgZ300kgH5EO4p');
+
+const stripePromise_PROD = loadStripe('pk_live_51LUUfAAbmaEugrFTyfNe4Dj0vbxc5qXQqNs0rztjAKy8oSlc5EEQyJGjA8Z5kXmP2gvUMcYLUBYCIyWWzLCw59RY00PtGInkVf');
+
+window.ela_tocken = "";
+
+const root = ReactDOM.createRoot(document.getElementById('root'));
+root.render(
+
+
+
+);
+
+
diff --git a/src/pages/emarge_qr_code.js b/src/pages/emarge_qr_code.js
index 31dc601..bec961f 100644
--- a/src/pages/emarge_qr_code.js
+++ b/src/pages/emarge_qr_code.js
@@ -1,5 +1,4 @@
-import Link from "next/link";
-import Navigation from "../components/Navigation";
+
import Emarge_QR_Code from "../components/Emarge_QR_Code";
import New_Navigation_2025 from "../components/New_Navigation_2025";
diff --git a/src/pages/surveydocument.js b/src/pages/surveydocument.js
index 9744c45..4a822cc 100644
--- a/src/pages/surveydocument.js
+++ b/src/pages/surveydocument.js
@@ -1,5 +1,4 @@
-import Link from "next/link";
-import Navigation from "../components/Navigation";
+
import SurveyDocument from "../components/SurveyDocument"
import New_Navigation_2025 from "../components/New_Navigation_2025";
import New_C_Header_2025_V2 from "../components/header_automatic_files/Header";
diff --git a/src/pages/surveydocument_qr_code.js b/src/pages/surveydocument_qr_code.js
index 2bb14b2..e93378a 100644
--- a/src/pages/surveydocument_qr_code.js
+++ b/src/pages/surveydocument_qr_code.js
@@ -1,5 +1,4 @@
-import Link from "next/link";
-import Navigation from "../components/Navigation";
+
import SurveyDocument_Qr_Code from "../components/SurveyDocument_Qr_Code"
import New_Navigation_2025 from "../components/New_Navigation_2025";
import New_C_Header_2025_V2 from "../components/header_automatic_files/Header";
diff --git a/src/styles/components/_addclassmanual.scss b/src/styles/components/_addclassmanual.scss
index 1244330..7a53a6a 100644
--- a/src/styles/components/_addclassmanual.scss
+++ b/src/styles/components/_addclassmanual.scss
@@ -243,7 +243,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
border: 1px black;
}
@@ -253,7 +253,7 @@
font-size: small;
background: #81BC3A !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
}
@@ -690,7 +690,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
}
@@ -699,7 +699,7 @@
font-size: small;
background: #81BC3A !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
}
@@ -868,7 +868,7 @@
border-radius: 5rem;
font-size: small;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
}
@@ -877,7 +877,7 @@
font-size: small;
background: #81BC3A !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
@@ -888,7 +888,7 @@
border-radius: 5rem;
font-size: small;
text-align: left;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
}
@@ -898,7 +898,7 @@
background: white !important;
text-align: left;
border: solid 1px;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: black;
@@ -1197,7 +1197,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
}
@@ -1206,7 +1206,7 @@
font-size: small;
background: #81BC3A !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
}
@@ -1375,7 +1375,7 @@
border-radius: 5rem;
font-size: small;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
}
@@ -1384,7 +1384,7 @@
font-size: small;
background: #81BC3A !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 60%;
color: white;
@@ -1395,7 +1395,7 @@
border-radius: 5rem;
font-size: small;
text-align: left;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
}
@@ -1406,7 +1406,7 @@
background: white !important;
text-align: left;
border: solid 1px;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: black;
@@ -1718,7 +1718,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 50%;
}
@@ -1727,7 +1727,7 @@
font-size: small;
background: #81BC3A !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 50%;
color: white;
}
@@ -1899,7 +1899,7 @@
border-radius: 5rem;
font-size: small;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
}
@@ -1908,7 +1908,7 @@
font-size: small;
background: #81BC3A !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 50%;
color: white;
@@ -1919,7 +1919,7 @@
border-radius: 5rem;
font-size: small;
text-align: left;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
}
@@ -1929,7 +1929,7 @@
background: white !important;
text-align: left;
border: solid 1px;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: black;
@@ -1940,7 +1940,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_addpartnerclient.scss b/src/styles/components/_addpartnerclient.scss
index cbd98b6..bf73b6e 100644
--- a/src/styles/components/_addpartnerclient.scss
+++ b/src/styles/components/_addpartnerclient.scss
@@ -131,7 +131,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -143,7 +143,7 @@
font-size: small;
background: #81BC3A !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -155,7 +155,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -167,7 +167,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -317,7 +317,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -329,7 +329,7 @@
font-size: small;
background: #81BC3A !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -341,7 +341,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -353,7 +353,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -501,7 +501,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -513,7 +513,7 @@
font-size: small;
background: #81BC3A !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -525,7 +525,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -537,7 +537,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -685,7 +685,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -697,7 +697,7 @@
font-size: small;
background: #81BC3A !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -709,7 +709,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -721,7 +721,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_apprenant.scss b/src/styles/components/_apprenant.scss
index b53c4e8..7921a3f 100644
--- a/src/styles/components/_apprenant.scss
+++ b/src/styles/components/_apprenant.scss
@@ -328,7 +328,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -340,7 +340,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -352,7 +352,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -364,7 +364,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -546,7 +546,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -559,7 +559,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -570,7 +570,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -581,7 +581,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -687,7 +687,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -700,7 +700,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -713,7 +713,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -982,7 +982,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -994,7 +994,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1006,7 +1006,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1018,7 +1018,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1205,7 +1205,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1218,7 +1218,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1231,7 +1231,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1244,7 +1244,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1338,7 +1338,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1351,7 +1351,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1364,7 +1364,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1674,7 +1674,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1686,7 +1686,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1698,7 +1698,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1710,7 +1710,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1912,7 +1912,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1925,7 +1925,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1938,7 +1938,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -2198,7 +2198,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2262,7 +2262,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2326,7 +2326,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2338,7 +2338,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2350,7 +2350,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2362,7 +2362,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2574,7 +2574,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2587,7 +2587,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -2600,7 +2600,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_checkout.scss b/src/styles/components/_checkout.scss
index 30cfef5..3b763b4 100644
--- a/src/styles/components/_checkout.scss
+++ b/src/styles/components/_checkout.scss
@@ -196,7 +196,7 @@
font-size: small;
text-align: left;
border: solid 1px;
- height: 2.5rem;
+ height: 2rem;
color: white;
width: 90%;
}
@@ -365,7 +365,7 @@
font-size: small;
text-align: left;
border: solid 1px;
- height: 2.5rem;
+ height: 2rem;
color: white;
width: 80%;
}
@@ -528,7 +528,7 @@
font-size: small;
text-align: left;
border: solid 1px;
- height: 2.5rem;
+ height: 2rem;
color: white;
width: 80%;
}
@@ -677,7 +677,7 @@
font-size: small;
text-align: left;
border: solid 1px;
- height: 2.5rem;
+ height: 2rem;
color: white;
width: 50%;
diff --git a/src/styles/components/_config_champs_personnalise.scss b/src/styles/components/_config_champs_personnalise.scss
index 2638937..a69be79 100644
--- a/src/styles/components/_config_champs_personnalise.scss
+++ b/src/styles/components/_config_champs_personnalise.scss
@@ -270,7 +270,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -282,7 +282,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -294,7 +294,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -306,7 +306,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -487,7 +487,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -500,7 +500,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -511,7 +511,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -522,7 +522,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -843,7 +843,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -855,7 +855,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -867,7 +867,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -879,7 +879,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1063,7 +1063,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1076,7 +1076,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1089,7 +1089,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1102,7 +1102,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1456,7 +1456,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1468,7 +1468,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1480,7 +1480,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1492,7 +1492,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1897,7 +1897,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -1960,7 +1960,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2023,7 +2023,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2035,7 +2035,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2047,7 +2047,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2059,7 +2059,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_config_document.scss b/src/styles/components/_config_document.scss
index 79dc01b..eafb7fd 100644
--- a/src/styles/components/_config_document.scss
+++ b/src/styles/components/_config_document.scss
@@ -273,7 +273,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -285,7 +285,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -297,7 +297,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -309,7 +309,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -491,7 +491,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -504,7 +504,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -515,7 +515,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -526,7 +526,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -851,7 +851,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -863,7 +863,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -875,7 +875,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -887,7 +887,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1072,7 +1072,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1085,7 +1085,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1098,7 +1098,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1111,7 +1111,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1470,7 +1470,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1482,7 +1482,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1494,7 +1494,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1506,7 +1506,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1915,7 +1915,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -1980,7 +1980,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2043,7 +2043,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2055,7 +2055,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2067,7 +2067,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2079,7 +2079,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_conseil_classe.scss b/src/styles/components/_conseil_classe.scss
index 1197f36..86975f9 100644
--- a/src/styles/components/_conseil_classe.scss
+++ b/src/styles/components/_conseil_classe.scss
@@ -301,7 +301,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -314,7 +314,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -326,7 +326,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -488,7 +488,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -501,7 +501,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -513,7 +513,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -524,7 +524,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -535,7 +535,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -904,7 +904,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -917,7 +917,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -929,7 +929,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1095,7 +1095,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1108,7 +1108,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1121,7 +1121,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -1134,7 +1134,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1147,7 +1147,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1545,7 +1545,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1557,7 +1557,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1569,7 +1569,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -1582,7 +1582,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1594,7 +1594,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -2014,7 +2014,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2079,7 +2079,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2143,7 +2143,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2155,7 +2155,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2167,7 +2167,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -2179,7 +2179,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2191,7 +2191,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2520,7 +2520,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2533,7 +2533,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_contactpartnerclient.scss b/src/styles/components/_contactpartnerclient.scss
index 849f1aa..ef812f5 100644
--- a/src/styles/components/_contactpartnerclient.scss
+++ b/src/styles/components/_contactpartnerclient.scss
@@ -124,7 +124,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -136,7 +136,7 @@
font-size: small;
background: #81BC3A !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -148,7 +148,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -160,7 +160,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_crm_opportunite.scss b/src/styles/components/_crm_opportunite.scss
index 8d60a46..ecfefdb 100644
--- a/src/styles/components/_crm_opportunite.scss
+++ b/src/styles/components/_crm_opportunite.scss
@@ -284,7 +284,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -296,7 +296,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -308,7 +308,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -320,7 +320,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -482,7 +482,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -495,7 +495,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -506,7 +506,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -517,7 +517,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -852,7 +852,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -864,7 +864,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -876,7 +876,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -888,7 +888,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1054,7 +1054,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1067,7 +1067,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1080,7 +1080,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1093,7 +1093,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1471,7 +1471,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1483,7 +1483,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1495,7 +1495,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1507,7 +1507,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1889,7 +1889,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -1953,7 +1953,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2017,7 +2017,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2029,7 +2029,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2041,7 +2041,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2053,7 +2053,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_dashbord_formation.scss b/src/styles/components/_dashbord_formation.scss
index d9a8b8b..8386d80 100644
--- a/src/styles/components/_dashbord_formation.scss
+++ b/src/styles/components/_dashbord_formation.scss
@@ -317,7 +317,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -329,7 +329,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -341,7 +341,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -353,7 +353,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -524,7 +524,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -537,7 +537,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -548,7 +548,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -559,7 +559,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -659,7 +659,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -672,7 +672,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -685,7 +685,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -957,7 +957,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -969,7 +969,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -981,7 +981,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -993,7 +993,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1169,7 +1169,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1182,7 +1182,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1195,7 +1195,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1208,7 +1208,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1296,7 +1296,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1309,7 +1309,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1322,7 +1322,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1632,7 +1632,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1644,7 +1644,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1656,7 +1656,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1668,7 +1668,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1856,7 +1856,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1869,7 +1869,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1882,7 +1882,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -2131,7 +2131,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2192,7 +2192,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2255,7 +2255,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2267,7 +2267,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2279,7 +2279,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2291,7 +2291,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2488,7 +2488,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2501,7 +2501,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -2514,7 +2514,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_dashbord_session.scss b/src/styles/components/_dashbord_session.scss
index fc12289..5308faf 100644
--- a/src/styles/components/_dashbord_session.scss
+++ b/src/styles/components/_dashbord_session.scss
@@ -317,7 +317,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -329,7 +329,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -341,7 +341,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -353,7 +353,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -524,7 +524,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -537,7 +537,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -548,7 +548,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -559,7 +559,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -659,7 +659,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -672,7 +672,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -685,7 +685,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -957,7 +957,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -969,7 +969,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -981,7 +981,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -993,7 +993,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1169,7 +1169,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1182,7 +1182,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1195,7 +1195,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1208,7 +1208,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1296,7 +1296,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1309,7 +1309,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1322,7 +1322,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1632,7 +1632,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1644,7 +1644,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1656,7 +1656,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1668,7 +1668,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1856,7 +1856,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1869,7 +1869,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1882,7 +1882,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -2131,7 +2131,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2192,7 +2192,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2256,7 +2256,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2268,7 +2268,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2280,7 +2280,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2292,7 +2292,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2489,7 +2489,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2502,7 +2502,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -2515,7 +2515,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_displayPartnerunite_enseignement.scss b/src/styles/components/_displayPartnerunite_enseignement.scss
index 6757aa0..e9ec708 100644
--- a/src/styles/components/_displayPartnerunite_enseignement.scss
+++ b/src/styles/components/_displayPartnerunite_enseignement.scss
@@ -318,7 +318,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -330,7 +330,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -342,7 +342,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -354,7 +354,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -525,7 +525,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -538,7 +538,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -549,7 +549,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -560,7 +560,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -683,7 +683,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -696,7 +696,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -709,7 +709,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -988,7 +988,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -1000,7 +1000,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1012,7 +1012,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1024,7 +1024,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1200,7 +1200,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1213,7 +1213,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1226,7 +1226,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1239,7 +1239,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1350,7 +1350,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1363,7 +1363,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1376,7 +1376,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1716,7 +1716,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1728,7 +1728,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1740,7 +1740,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1752,7 +1752,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1958,7 +1958,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1971,7 +1971,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1984,7 +1984,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -2286,7 +2286,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2350,7 +2350,7 @@
width: 40%;
background: #81BC3A !important;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white !important;
}
@@ -2362,7 +2362,7 @@
width: 40%;
background: #81BC3A !important;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white !important;
}
@@ -2443,7 +2443,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2455,7 +2455,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2467,7 +2467,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2479,7 +2479,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2696,7 +2696,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2709,7 +2709,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -2722,7 +2722,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_displaydetailclass.scss b/src/styles/components/_displaydetailclass.scss
index 07f50ac..d39b1f4 100644
--- a/src/styles/components/_displaydetailclass.scss
+++ b/src/styles/components/_displaydetailclass.scss
@@ -62,6 +62,7 @@
font-size: medium !important;
background: black !important;
color: white !important;
+ min-width: 300px !important;
}
.avisformation {
@@ -2259,6 +2260,7 @@
border: 1px solid black !important;
background: white !important;
padding-bottom: 10px;
+ min-width: 300px !important;
}
.gest_header {
diff --git a/src/styles/components/_displaypartnersession.scss b/src/styles/components/_displaypartnersession.scss
index 7b68f10..9c9c0fb 100644
--- a/src/styles/components/_displaypartnersession.scss
+++ b/src/styles/components/_displaypartnersession.scss
@@ -310,6 +310,7 @@
color: black;
width: 100%;
height: 2rem !important;
+ font-family: 'DM Sans';
}
.bton_import_excel {
@@ -317,6 +318,7 @@
color: black;
width: 100% !important;
height: 2rem !important;
+ font-family: 'DM Sans';
}
.div_row_gauche_etendu {
@@ -334,10 +336,11 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
+ font-family: 'DM Sans';
}
.bton_enreg {
@@ -346,11 +349,12 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
margin-right: 10px;
+ font-family: 'DM Sans';
}
.bton_edit {
@@ -358,11 +362,12 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
margin-right: 10px;
+ font-family: 'DM Sans';
}
.bton_annule {
@@ -370,11 +375,12 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
margin-right: 10px;
+ font-family: 'DM Sans';
}
.div_row_gauche_image {
@@ -430,10 +436,12 @@
margin-top: 0.5rem;
width: 10rem;
cursor: pointer;
+ font-family: 'DM Sans';
}
.bton_supprime_image_class:hover {
box-shadow: 5px 1px 5px 1px rgb(0 0 0 / 25%);
+ font-family: 'DM Sans';
}
.bton_image_class {
@@ -448,10 +456,12 @@
border-radius: 10px;
width: 10rem;
cursor: pointer;
+ font-family: 'DM Sans';
}
.bton_image_class:hover {
box-shadow: 5px 1px 5px 1px rgb(0 0 0 / 25%);
+ font-family: 'DM Sans';
}
.tick_ok_ko {
@@ -541,11 +551,12 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
margin-bottom: 1rem !important;
+ font-family: 'DM Sans';
}
.bton_enreg {
@@ -554,10 +565,11 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
+ font-family: 'DM Sans';
}
.bton_edit {
@@ -565,10 +577,11 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
+ font-family: 'DM Sans';
}
.bton_annule {
@@ -576,10 +589,11 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
+ font-family: 'DM Sans';
}
@@ -684,11 +698,12 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
margin-right: 10px;
+ font-family: 'DM Sans';
}
@@ -697,11 +712,12 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
margin-right: 10px;
+ font-family: 'DM Sans';
}
@@ -710,13 +726,14 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
margin-right: 10px;
padding-right: 5px;
padding-left: 5px;
+ font-family: 'DM Sans';
}
.DialogContent_width {
@@ -984,6 +1001,7 @@
color: black;
width: 50%;
height: 2rem !important;
+ font-family: 'DM Sans';
}
@@ -993,6 +1011,7 @@
color: black;
width: 65% !important;
height: 2rem !important;
+ font-family: 'DM Sans';
}
.div_row_gauche_etendu {
@@ -1010,10 +1029,11 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
+ font-family: 'DM Sans';
}
.bton_enreg {
@@ -1022,11 +1042,12 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
margin-right: 10px;
+ font-family: 'DM Sans';
}
.bton_edit {
@@ -1034,11 +1055,12 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
margin-right: 10px;
+ font-family: 'DM Sans';
}
.bton_annule {
@@ -1046,11 +1068,12 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
margin-right: 10px;
+ font-family: 'DM Sans';
}
.div_row_gauche_image {
@@ -1105,10 +1128,12 @@
margin-top: 0.5rem;
width: 15rem;
cursor: pointer;
+ font-family: 'DM Sans';
}
.bton_supprime_image_class:hover {
box-shadow: 5px 1px 5px 1px rgb(0 0 0 / 25%);
+ font-family: 'DM Sans';
}
.bton_image_class {
@@ -1123,10 +1148,12 @@
border-radius: 10px;
width: 15rem;
cursor: pointer;
+ font-family: 'DM Sans';
}
.bton_image_class:hover {
box-shadow: 5px 1px 5px 1px rgb(0 0 0 / 25%);
+ font-family: 'DM Sans';
}
.tick_ok_ko {
@@ -1222,11 +1249,12 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
min-width: 15rem;
+ font-family: 'DM Sans';
}
.bton_enreg {
@@ -1235,12 +1263,13 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
margin-right: 10px;
min-width: 15rem;
+ font-family: 'DM Sans';
}
.bton_edit {
@@ -1248,12 +1277,13 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
margin-right: 10px;
min-width: 15rem;
+ font-family: 'DM Sans';
}
.bton_annule {
@@ -1261,12 +1291,13 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
margin-right: 10px;
min-width: 15rem;
+ font-family: 'DM Sans';
}
@@ -1357,11 +1388,12 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
margin-right: 10px;
+ font-family: 'DM Sans';
}
@@ -1370,11 +1402,12 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
margin-right: 10px;
+ font-family: 'DM Sans';
}
@@ -1383,13 +1416,14 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
margin-right: 10px;
padding-right: 5px;
padding-left: 5px;
+ font-family: 'DM Sans';
}
.DialogContent_width {
@@ -1691,6 +1725,7 @@
color: black;
width: 40%;
height: 2rem !important;
+ font-family: 'DM Sans';
}
.bton_add_session_create_automatic {
@@ -1698,6 +1733,7 @@
color: black;
width: 60% !important;
height: 2rem !important;
+ font-family: 'DM Sans';
}
.bton_import_excel {
@@ -1705,6 +1741,7 @@
color: black;
width: 50% !important;
height: 2rem !important;
+ font-family: 'DM Sans';
}
.div_row_gauche_etendu {
@@ -1722,10 +1759,11 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
+ font-family: 'DM Sans';
}
.bton_enreg {
@@ -1734,11 +1772,12 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
margin-right: 10px;
+ font-family: 'DM Sans';
}
.bton_edit {
@@ -1746,11 +1785,12 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
margin-right: 10px;
+ font-family: 'DM Sans';
}
.bton_annule {
@@ -1758,11 +1798,12 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
margin-right: 10px;
+ font-family: 'DM Sans';
}
@@ -1818,10 +1859,12 @@
margin-top: 0.5rem;
width: 15rem;
cursor: pointer;
+ font-family: 'DM Sans';
}
.bton_supprime_image_class:hover {
box-shadow: 5px 1px 5px 1px rgb(0 0 0 / 25%);
+ font-family: 'DM Sans';
}
.bton_image_class {
@@ -1836,10 +1879,12 @@
border-radius: 10px;
width: 15rem;
cursor: pointer;
+ font-family: 'DM Sans';
}
.bton_image_class:hover {
box-shadow: 5px 1px 5px 1px rgb(0 0 0 / 25%);
+ font-family: 'DM Sans';
}
.tick_ok_ko {
@@ -1952,11 +1997,12 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
margin-right: 10px;
+ font-family: 'DM Sans';
}
@@ -1965,11 +2011,12 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
margin-right: 10px;
+ font-family: 'DM Sans';
}
@@ -1978,13 +2025,14 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
margin-right: 10px;
padding-right: 5px;
padding-left: 5px;
+ font-family: 'DM Sans';
}
.DialogContent_width {
@@ -2280,7 +2328,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2304,6 +2352,7 @@
color: black;
width: 20% !important;
height: 2rem !important;
+ font-family: 'DM Sans';
}
.bton_add_session_create_automatic {
@@ -2311,6 +2360,7 @@
color: black;
width: 40% !important;
height: 2rem !important;
+ font-family: 'DM Sans';
}
.bton_import_excel {
@@ -2318,6 +2368,7 @@
color: black;
width: 40% !important;
height: 2rem !important;
+ font-family: 'DM Sans';
}
.div_row_gauche_etendu {
@@ -2334,6 +2385,7 @@
padding: 0.3rem;
width: 60%;
background: #81BC3A;
+ font-family: 'DM Sans';
}
@@ -2344,8 +2396,9 @@
width: 40%;
background: #81BC3A !important;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white !important;
+ font-family: 'DM Sans';
}
@@ -2356,8 +2409,9 @@
width: 40%;
background: #81BC3A !important;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white !important;
+ font-family: 'DM Sans';
}
@@ -2370,6 +2424,7 @@
width: 60%;
background-color: white;
color: #107758 !important;
+ font-family: 'DM Sans';
}
@@ -2401,6 +2456,7 @@
color: white;
cursor: pointer;
box-shadow: 5px 1px 5px 1px rgb(0 0 0 / 25%);
+ font-family: 'DM Sans';
}
.bton_emarge:hover {
@@ -2414,6 +2470,7 @@
cursor: pointer;
box-shadow: 5px 1px 5px 1px rgb(0 0 0 / 25%);
+ font-family: 'DM Sans';
}
.css-1x5jdm {
@@ -2438,10 +2495,11 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
+ font-family: 'DM Sans';
}
.bton_enreg {
@@ -2450,11 +2508,12 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
margin-right: 10px;
+ font-family: 'DM Sans';
}
.bton_edit {
@@ -2462,11 +2521,12 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
margin-right: 10px;
+ font-family: 'DM Sans';
}
.bton_annule {
@@ -2474,11 +2534,12 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
margin-right: 10px;
+ font-family: 'DM Sans';
}
@@ -2535,10 +2596,12 @@
margin-top: 0.5rem;
width: 15rem;
cursor: pointer;
+ font-family: 'DM Sans';
}
.bton_supprime_image_class:hover {
box-shadow: 5px 1px 5px 1px rgb(0 0 0 / 25%);
+ font-family: 'DM Sans';
}
.bton_image_class {
@@ -2553,10 +2616,12 @@
border-radius: 10px;
width: 15rem;
cursor: pointer;
+ font-family: 'DM Sans';
}
.bton_image_class:hover {
box-shadow: 5px 1px 5px 1px rgb(0 0 0 / 25%);
+ font-family: 'DM Sans';
}
.tick_ok_ko {
@@ -2678,11 +2743,12 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
margin-right: 10px;
+ font-family: 'DM Sans';
}
@@ -2691,11 +2757,12 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
margin-right: 10px;
+ font-family: 'DM Sans';
}
@@ -2704,13 +2771,14 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
margin-right: 10px;
padding-right: 5px;
padding-left: 5px;
+ font-family: 'DM Sans';
}
@@ -2870,12 +2938,13 @@
font-size: small;
background: #bc843a !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
margin-right: 10px;
font-style: italic;
+ font-family: 'DM Sans';
}
.mode_affichage_selected {
diff --git a/src/styles/components/_displaypartnerstagiaire.scss b/src/styles/components/_displaypartnerstagiaire.scss
index 654d4b4..0ce5909 100644
--- a/src/styles/components/_displaypartnerstagiaire.scss
+++ b/src/styles/components/_displaypartnerstagiaire.scss
@@ -340,7 +340,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -352,7 +352,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -364,7 +364,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -376,7 +376,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -538,7 +538,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -551,7 +551,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -562,7 +562,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -573,7 +573,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -942,7 +942,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -954,7 +954,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -966,7 +966,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -978,7 +978,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1144,7 +1144,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1157,7 +1157,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1170,7 +1170,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1183,7 +1183,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1583,7 +1583,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1595,7 +1595,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1607,7 +1607,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1619,7 +1619,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -2030,7 +2030,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2094,7 +2094,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2158,7 +2158,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2170,7 +2170,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2182,7 +2182,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2194,7 +2194,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_displaypartnertrainingpagination.scss b/src/styles/components/_displaypartnertrainingpagination.scss
index de5b29e..de5d171 100644
--- a/src/styles/components/_displaypartnertrainingpagination.scss
+++ b/src/styles/components/_displaypartnertrainingpagination.scss
@@ -245,7 +245,7 @@
font-size: small;
text-align: left;
border: solid 1px;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -312,7 +312,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -325,7 +325,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -336,7 +336,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -347,7 +347,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -719,7 +719,7 @@
font-size: small;
text-align: left;
border: solid 1px;
- height: 2.5rem;
+ height: 2rem;
color: white;
letter-spacing: 3px;
}
@@ -792,7 +792,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -805,7 +805,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -818,7 +818,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -831,7 +831,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1205,7 +1205,7 @@
font-size: small;
text-align: left;
border: solid 1px;
- height: 2.5rem;
+ height: 2rem;
color: white;
letter-spacing: 3px;
}
@@ -1278,7 +1278,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1291,7 +1291,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1304,7 +1304,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1317,7 +1317,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1688,7 +1688,7 @@
font-size: small;
text-align: left;
border: solid 1px;
- height: 2.5rem;
+ height: 2rem;
color: white;
letter-spacing: 3px;
}
@@ -1760,7 +1760,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1772,7 +1772,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1784,7 +1784,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1796,7 +1796,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_emarge_qr_code.scss b/src/styles/components/_emarge_qr_code.scss
index 2cfe8f1..938fc1f 100644
--- a/src/styles/components/_emarge_qr_code.scss
+++ b/src/styles/components/_emarge_qr_code.scss
@@ -71,7 +71,7 @@
}
.Mui-disabled {
- font-family:'DM Sans','Sans-serif';
+ font-family: 'DM Sans', 'Sans-serif';
font-size: small !important;
padding: 0px !important;
padding-left: 5px !important;
@@ -215,7 +215,7 @@
}
.css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input .Mui-disabled {
- font-family:'DM Sans','Sans-serif';
+ font-family: 'DM Sans', 'Sans-serif';
font: inherit;
letter-spacing: inherit;
color: currentColor;
@@ -262,7 +262,7 @@
}
.session_caract {
- font-family: DM Sans;
+ font-family: DM Sans;
width: 100%;
padding: 5px;
float: left;
@@ -356,19 +356,19 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
}
.bton_enreg {
- font-family: DM sans;
+ font-family: DM sans;
border-radius: 5rem;
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -380,7 +380,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -392,7 +392,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -400,22 +400,20 @@
}
.div_row_gauche_image {
- float: left;
- //border:0px solid black;
border-width: 0.01rem;
border-radius: 1rem;
- text-align: left;
+ width: 100%;
+ text-align: center;
}
.div_row_droite_image {
- float: left;
- //border:0px solid black;
border-width: 0.01rem;
border-radius: 1rem;
- text-align: left;
font-family: "DM Sans", "sans-serif";
font-size: small;
padding-left: 0.2rem;
+ text-align: center;
+ width: 100%;
}
.tips_img_class {
@@ -426,15 +424,14 @@
float: left;
width: 100%;
padding-right: 10px;
+ margin-bottom: 2rem;
}
.img_class_logo {
- display: block;
width: 128px;
height: 128px;
border-radius: 10px !important;
border: 1px solid #d5d8dc;
- float: left;
}
.bton_supprime_image_class {
@@ -450,8 +447,9 @@
background: white;
color: red;
margin-top: 0.5rem;
- width: 10rem;
+ width: auto;
cursor: pointer;
+ font-family: 'DM Sans';
}
.bton_supprime_image_class:hover {
@@ -468,7 +466,8 @@
padding-right: 10px;
border: 1px solid rgb(194, 186, 186);
border-radius: 10px;
- width: 10rem;
+ width: auto;
+ font-family: 'DM Sans';
cursor: pointer;
}
@@ -554,7 +553,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -562,12 +561,12 @@
}
.bton_enreg {
- font-family: DM sans;
+ font-family: DM sans;
border-radius: 5rem;
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -578,7 +577,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -589,7 +588,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -623,7 +622,7 @@
}
.css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input .Mui-disabled {
- font-family:'DM Sans','Sans-serif';
+ font-family: 'DM Sans', 'Sans-serif';
font: inherit;
letter-spacing: inherit;
color: currentColor;
@@ -674,7 +673,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -687,7 +686,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -700,7 +699,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -710,7 +709,7 @@
}
.DialogContent_width {
- width: 200px !important;
+ width: 300px !important;
}
.block_guide_line {
@@ -725,10 +724,33 @@
.block_data {
width: 100%;
float: right;
- margin-right: 1%;
+
}
+ .block_data_grid {
+ width: 98%;
+ margin-left: auto;
+ margin-right: auto;
+ padding: 10px;
+ }
+
+ .block_signature {
+ width: 100%;
+ margin-left: auto;
+ margin-right: auto;
+ padding: 10px;
+ }
+
+ .popup-content {
+ width: 70% !important;
+ font-family: 'DM Sans' !important;
+ font-size: small !important;
+ height: auto;
+ border: 1px solid black !important;
+ background: white !important;
+ padding-bottom: 10px;
+ }
}
@media only screen and (min-width: 601px) and (max-width: 991px) {
@@ -849,7 +871,7 @@
}
.css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input .Mui-disabled {
- font-family:'DM Sans','Sans-serif';
+ font-family: 'DM Sans', 'Sans-serif';
font: inherit;
letter-spacing: inherit;
color: currentColor;
@@ -896,7 +918,7 @@
}
.session_caract {
- font-family: DM Sans;
+ font-family: DM Sans;
width: 50%;
padding: 5px;
float: left;
@@ -996,19 +1018,19 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
}
.bton_enreg {
- font-family: DM sans;
+ font-family: DM sans;
border-radius: 5rem;
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1020,7 +1042,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1032,7 +1054,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1198,7 +1220,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1206,12 +1228,12 @@
}
.bton_enreg {
- font-family: DM sans;
+ font-family: DM sans;
border-radius: 5rem;
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1224,7 +1246,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1237,7 +1259,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1259,7 +1281,7 @@
}
.css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input .Mui-disabled {
- font-family:'DM Sans','Sans-serif';
+ font-family: 'DM Sans', 'Sans-serif';
font: inherit;
letter-spacing: inherit;
color: currentColor;
@@ -1311,7 +1333,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1324,7 +1346,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1337,7 +1359,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1363,8 +1385,22 @@
.block_data {
width: 100%;
float: right;
- margin-right: 1%;
+
+ }
+
+ .block_data_grid {
+ width: 100%;
+ margin-left: auto;
+ margin-right: auto;
+ padding: 10px;
+ }
+
+ .block_signature {
+ width: 100%;
+ margin-left: auto;
+ margin-right: auto;
+ padding: 10px;
}
}
@@ -1512,7 +1548,7 @@
}
.css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input .Mui-disabled {
- font-family:'DM Sans','Sans-serif';
+ font-family: 'DM Sans', 'Sans-serif';
font: inherit;
letter-spacing: inherit;
color: currentColor;
@@ -1562,7 +1598,7 @@
}
.session_caract {
- font-family: DM Sans;
+ font-family: DM Sans;
width: 33%;
padding: 5px;
float: left;
@@ -1663,19 +1699,19 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
}
.bton_enreg {
- font-family: DM sans;
+ font-family: DM sans;
border-radius: 5rem;
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1687,7 +1723,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1699,7 +1735,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1851,7 +1887,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1864,7 +1900,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1877,7 +1913,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1906,6 +1942,18 @@
margin-right: 1%;
}
+
+ .block_data_grid {
+ width: 100%;
+ margin-left: auto;
+ margin-right: auto;
+ }
+
+ .block_signature {
+ width: 100%;
+ margin-left: auto;
+ margin-right: auto;
+ }
}
@media only screen and (min-width: 1200px) {
@@ -2060,7 +2108,7 @@
}
.session_caract_Dialog {
- font-family: 'DM Sans';
+ font-family: 'DM Sans';
width: 100%;
padding: 5px;
float: left;
@@ -2087,7 +2135,7 @@
}
.css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input .Mui-disabled {
- font-family:'DM Sans','Sans-serif';
+ font-family: 'DM Sans', 'Sans-serif';
font: inherit;
letter-spacing: inherit;
color: currentColor;
@@ -2136,7 +2184,7 @@
.session_caract {
- font-family: DM Sans;
+ font-family: DM Sans;
width: 33%;
padding: 5px;
float: left;
@@ -2183,7 +2231,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2255,7 +2303,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2318,19 +2366,19 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
}
.bton_enreg {
- font-family: DM sans;
+ font-family: DM sans;
border-radius: 5rem;
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2342,7 +2390,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2354,7 +2402,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2517,7 +2565,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2530,7 +2578,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -2543,7 +2591,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -2574,6 +2622,17 @@
}
+ .block_data_grid {
+ width: 100%;
+ margin-left: auto;
+ margin-right: auto;
+ }
+
+ .block_signature {
+ width: 100%;
+ margin-left: auto;
+ margin-right: auto;
+ }
}
.css-1t1j96h-MuiPaper-root-MuiDialog-paper {
@@ -2584,6 +2643,9 @@
// end media
+
+
+
.loader-container {
width: 100%;
height: 100vh;
@@ -2627,7 +2689,7 @@
}
.session_caract_Dialog {
- font-family: 'DM Sans';
+ font-family: 'DM Sans';
width: 100%;
padding: 5px;
float: left;
@@ -2685,7 +2747,7 @@
.MuiMenu-paper {
max-width: 30% !important;
- }
+ }
.separator {
display: flex;
@@ -2714,7 +2776,7 @@
}
-
+
}
.MuiMenu-paper {
@@ -2738,7 +2800,7 @@
}
.css-9ddj71-MuiInputBase-root-MuiOutlinedInput-root {
-font-family: DM Sans !important;
+ font-family: DM Sans !important;
height: 3.5rem !important;
font-size: small !important;
@@ -2750,9 +2812,9 @@ font-family: DM Sans !important;
width: 110%;
}
- .css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input {
- font-size: small !important;
- font-family: "DM Sans" !important;
+.css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input {
+ font-size: small !important;
+ font-family: "DM Sans" !important;
padding-left: 5px !important;
padding-right: 1rem !important;
}
\ No newline at end of file
diff --git a/src/styles/components/_employes.scss b/src/styles/components/_employes.scss
index edf0e86..7cfb341 100644
--- a/src/styles/components/_employes.scss
+++ b/src/styles/components/_employes.scss
@@ -287,7 +287,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -300,7 +300,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -312,7 +312,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -474,7 +474,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -487,7 +487,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -499,7 +499,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -510,7 +510,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -521,7 +521,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -890,7 +890,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -903,7 +903,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -915,7 +915,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1081,7 +1081,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1094,7 +1094,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1107,7 +1107,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -1120,7 +1120,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1133,7 +1133,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1534,7 +1534,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1546,7 +1546,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1558,7 +1558,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -1571,7 +1571,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1583,7 +1583,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -2003,7 +2003,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2074,7 +2074,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2138,7 +2138,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2150,7 +2150,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2162,7 +2162,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -2174,7 +2174,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2186,7 +2186,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2504,7 +2504,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2517,7 +2517,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_equipe_team.scss b/src/styles/components/_equipe_team.scss
index 7f5542c..700c0d6 100644
--- a/src/styles/components/_equipe_team.scss
+++ b/src/styles/components/_equipe_team.scss
@@ -301,7 +301,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -314,7 +314,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -326,7 +326,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -488,7 +488,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -501,7 +501,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -513,7 +513,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -524,7 +524,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -535,7 +535,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -896,7 +896,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -909,7 +909,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -921,7 +921,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1087,7 +1087,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1100,7 +1100,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1113,7 +1113,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -1126,7 +1126,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1139,7 +1139,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1530,7 +1530,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1542,7 +1542,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1554,7 +1554,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -1567,7 +1567,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1579,7 +1579,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1993,7 +1993,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2057,7 +2057,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2121,7 +2121,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2133,7 +2133,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2145,7 +2145,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -2157,7 +2157,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2169,7 +2169,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2448,7 +2448,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2461,7 +2461,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_esign.scss b/src/styles/components/_esign.scss
index 66900ec..a12d4e3 100644
--- a/src/styles/components/_esign.scss
+++ b/src/styles/components/_esign.scss
@@ -356,7 +356,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -368,7 +368,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -380,7 +380,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -392,7 +392,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -554,7 +554,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -567,7 +567,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -578,7 +578,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -589,7 +589,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -674,7 +674,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 5%;
@@ -687,7 +687,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: black;
margin-left: 5%;
@@ -700,7 +700,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -710,7 +710,7 @@
}
.DialogContent_width {
- width: 300px !important;
+ width: 200px !important;
max-width: none !important;
padding: 5px;
}
@@ -998,7 +998,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -1010,7 +1010,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1022,7 +1022,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1034,7 +1034,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1200,7 +1200,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1213,7 +1213,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1226,7 +1226,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1239,7 +1239,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1313,7 +1313,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1326,7 +1326,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1339,7 +1339,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1663,7 +1663,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1675,7 +1675,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1687,7 +1687,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1699,7 +1699,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1851,7 +1851,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1864,7 +1864,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1877,7 +1877,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -2183,7 +2183,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2255,7 +2255,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2319,7 +2319,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2331,7 +2331,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2343,7 +2343,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2355,7 +2355,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2518,7 +2518,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2531,7 +2531,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -2544,7 +2544,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_formation_cartouche_com.scss b/src/styles/components/_formation_cartouche_com.scss
index 619df57..2264db5 100644
--- a/src/styles/components/_formation_cartouche_com.scss
+++ b/src/styles/components/_formation_cartouche_com.scss
@@ -1479,13 +1479,13 @@
.ftion_tab_gauche {
width: 70%;
- line-height: 2.5rem;
+ line-height: 2rem;
font-size: 20px;
}
.ftion_tab_droite {
width: 30%;
- line-height: 2.5rem;
+ line-height: 2rem;
font-size: 20px;
}
diff --git a/src/styles/components/_gestionadministrative.scss b/src/styles/components/_gestionadministrative.scss
index 952499a..765a73b 100644
--- a/src/styles/components/_gestionadministrative.scss
+++ b/src/styles/components/_gestionadministrative.scss
@@ -313,7 +313,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -325,7 +325,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -337,7 +337,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -349,7 +349,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -741,7 +741,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -753,7 +753,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -765,7 +765,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -777,7 +777,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1164,7 +1164,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1176,7 +1176,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1188,7 +1188,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1200,7 +1200,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1572,7 +1572,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -1640,7 +1640,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -1670,7 +1670,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1682,7 +1682,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1694,7 +1694,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1706,7 +1706,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_groupe_apprenant.scss b/src/styles/components/_groupe_apprenant.scss
index b33d605..2648dca 100644
--- a/src/styles/components/_groupe_apprenant.scss
+++ b/src/styles/components/_groupe_apprenant.scss
@@ -301,7 +301,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -314,7 +314,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -326,7 +326,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -488,7 +488,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -501,7 +501,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -513,7 +513,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -524,7 +524,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -535,7 +535,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -896,7 +896,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -909,7 +909,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -921,7 +921,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1087,7 +1087,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1100,7 +1100,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1113,7 +1113,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -1126,7 +1126,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1139,7 +1139,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1530,7 +1530,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1542,7 +1542,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1554,7 +1554,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -1567,7 +1567,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1579,7 +1579,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1993,7 +1993,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2057,7 +2057,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2121,7 +2121,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2133,7 +2133,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2145,7 +2145,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -2157,7 +2157,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2169,7 +2169,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2448,7 +2448,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2461,7 +2461,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_groupe_apprenant_dialog.scss b/src/styles/components/_groupe_apprenant_dialog.scss
index ff25e60..64347fd 100644
--- a/src/styles/components/_groupe_apprenant_dialog.scss
+++ b/src/styles/components/_groupe_apprenant_dialog.scss
@@ -318,7 +318,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -330,7 +330,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -342,7 +342,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -354,7 +354,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -525,7 +525,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -538,7 +538,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -549,7 +549,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -560,7 +560,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -667,7 +667,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -680,7 +680,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -693,7 +693,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -972,7 +972,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -984,7 +984,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -996,7 +996,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1008,7 +1008,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1184,7 +1184,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1197,7 +1197,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1210,7 +1210,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1223,7 +1223,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1318,7 +1318,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1331,7 +1331,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1344,7 +1344,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1663,7 +1663,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1675,7 +1675,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1687,7 +1687,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1699,7 +1699,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1892,7 +1892,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1905,7 +1905,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1918,7 +1918,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -2200,7 +2200,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2264,7 +2264,7 @@
width: 40%;
background: #81BC3A !important;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white !important;
}
@@ -2276,7 +2276,7 @@
width: 40%;
background: #81BC3A !important;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white !important;
}
@@ -2358,7 +2358,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2370,7 +2370,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2382,7 +2382,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2394,7 +2394,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2597,7 +2597,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2610,7 +2610,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -2623,7 +2623,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_header.scss b/src/styles/components/_header.scss
index 41bac89..a69c483 100644
--- a/src/styles/components/_header.scss
+++ b/src/styles/components/_header.scss
@@ -477,7 +477,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -490,7 +490,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_inscription.scss b/src/styles/components/_inscription.scss
index 11a9f1a..3fba371 100644
--- a/src/styles/components/_inscription.scss
+++ b/src/styles/components/_inscription.scss
@@ -136,7 +136,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -161,7 +161,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -330,7 +330,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -358,7 +358,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -534,7 +534,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -561,7 +561,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -573,7 +573,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -766,7 +766,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -792,7 +792,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_intranet_factures_client.scss b/src/styles/components/_intranet_factures_client.scss
index f9c44e5..cf6d055 100644
--- a/src/styles/components/_intranet_factures_client.scss
+++ b/src/styles/components/_intranet_factures_client.scss
@@ -291,7 +291,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -303,7 +303,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -315,7 +315,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -327,7 +327,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -489,7 +489,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -502,7 +502,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -513,7 +513,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -524,7 +524,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -879,7 +879,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -891,7 +891,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -903,7 +903,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -915,7 +915,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1081,7 +1081,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1094,7 +1094,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1107,7 +1107,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1120,7 +1120,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1495,7 +1495,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1507,7 +1507,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1519,7 +1519,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1531,7 +1531,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1964,7 +1964,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2036,7 +2036,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2100,7 +2100,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2112,7 +2112,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2124,7 +2124,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2136,7 +2136,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2299,7 +2299,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2312,7 +2312,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_intranet_mes_stagiaires.scss b/src/styles/components/_intranet_mes_stagiaires.scss
index 16a5bc0..7d90898 100644
--- a/src/styles/components/_intranet_mes_stagiaires.scss
+++ b/src/styles/components/_intranet_mes_stagiaires.scss
@@ -323,7 +323,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -335,7 +335,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -347,7 +347,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -359,7 +359,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -521,7 +521,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -534,7 +534,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -545,7 +545,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -556,7 +556,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -925,7 +925,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -937,7 +937,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -949,7 +949,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -961,7 +961,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1127,7 +1127,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1140,7 +1140,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1153,7 +1153,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1166,7 +1166,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1565,7 +1565,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1577,7 +1577,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1589,7 +1589,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1601,7 +1601,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -2012,7 +2012,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2076,7 +2076,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2140,7 +2140,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2152,7 +2152,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2164,7 +2164,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2176,7 +2176,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_intranet_tous_documents.scss b/src/styles/components/_intranet_tous_documents.scss
index a082c70..fa6b309 100644
--- a/src/styles/components/_intranet_tous_documents.scss
+++ b/src/styles/components/_intranet_tous_documents.scss
@@ -291,7 +291,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -303,7 +303,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -315,7 +315,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -327,7 +327,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -489,7 +489,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -502,7 +502,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -513,7 +513,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -524,7 +524,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -879,7 +879,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -891,7 +891,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -903,7 +903,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -915,7 +915,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1081,7 +1081,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1094,7 +1094,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1107,7 +1107,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1120,7 +1120,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1495,7 +1495,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1507,7 +1507,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1519,7 +1519,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1531,7 +1531,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1964,7 +1964,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2036,7 +2036,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2100,7 +2100,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2112,7 +2112,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2124,7 +2124,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2136,7 +2136,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2299,7 +2299,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2312,7 +2312,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_jurys.scss b/src/styles/components/_jurys.scss
index c0971bd..066ea14 100644
--- a/src/styles/components/_jurys.scss
+++ b/src/styles/components/_jurys.scss
@@ -301,7 +301,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -314,7 +314,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -326,7 +326,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -488,7 +488,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -501,7 +501,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -513,7 +513,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -524,7 +524,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -535,7 +535,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -904,7 +904,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -917,7 +917,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -929,7 +929,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1095,7 +1095,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1108,7 +1108,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1121,7 +1121,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -1134,7 +1134,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1147,7 +1147,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1545,7 +1545,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1557,7 +1557,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1569,7 +1569,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -1582,7 +1582,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1594,7 +1594,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -2014,7 +2014,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2079,7 +2079,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2143,7 +2143,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2155,7 +2155,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2167,7 +2167,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -2179,7 +2179,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2191,7 +2191,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2520,7 +2520,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2533,7 +2533,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_materiel_salle.scss b/src/styles/components/_materiel_salle.scss
index 0045e3f..b48201e 100644
--- a/src/styles/components/_materiel_salle.scss
+++ b/src/styles/components/_materiel_salle.scss
@@ -297,7 +297,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -309,7 +309,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -321,7 +321,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -333,7 +333,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -495,7 +495,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -508,7 +508,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -519,7 +519,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -530,7 +530,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -871,7 +871,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -883,7 +883,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -895,7 +895,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -907,7 +907,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1073,7 +1073,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1086,7 +1086,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1099,7 +1099,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1112,7 +1112,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1484,7 +1484,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1496,7 +1496,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1508,7 +1508,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1520,7 +1520,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1896,7 +1896,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -1960,7 +1960,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2024,7 +2024,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2036,7 +2036,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2048,7 +2048,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2060,7 +2060,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_materiels.scss b/src/styles/components/_materiels.scss
index 56f0b9c..4fcc13a 100644
--- a/src/styles/components/_materiels.scss
+++ b/src/styles/components/_materiels.scss
@@ -275,7 +275,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -287,7 +287,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -299,7 +299,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -311,7 +311,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -473,7 +473,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -486,7 +486,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -497,7 +497,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -508,7 +508,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -838,7 +838,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -850,7 +850,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -862,7 +862,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -874,7 +874,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1040,7 +1040,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1053,7 +1053,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1066,7 +1066,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1079,7 +1079,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1453,7 +1453,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1465,7 +1465,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1477,7 +1477,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1489,7 +1489,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1863,7 +1863,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -1927,7 +1927,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -1992,7 +1992,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2004,7 +2004,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2016,7 +2016,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2028,7 +2028,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_module_absence.scss b/src/styles/components/_module_absence.scss
index f4e34fa..57d9280 100644
--- a/src/styles/components/_module_absence.scss
+++ b/src/styles/components/_module_absence.scss
@@ -312,7 +312,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -324,7 +324,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -336,7 +336,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -348,7 +348,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -510,7 +510,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -523,7 +523,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -534,7 +534,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -545,7 +545,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -630,7 +630,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -643,7 +643,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -656,7 +656,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -942,7 +942,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -954,7 +954,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -966,7 +966,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -978,7 +978,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1144,7 +1144,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1157,7 +1157,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1170,7 +1170,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1183,7 +1183,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1257,7 +1257,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1270,7 +1270,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1283,7 +1283,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1600,7 +1600,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1612,7 +1612,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1624,7 +1624,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1636,7 +1636,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1788,7 +1788,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1801,7 +1801,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1814,7 +1814,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -2111,7 +2111,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2183,7 +2183,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2247,7 +2247,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2259,7 +2259,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2271,7 +2271,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2283,7 +2283,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2446,7 +2446,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2459,7 +2459,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -2472,7 +2472,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_module_agenda.scss b/src/styles/components/_module_agenda.scss
index 7347c15..b2bdcae 100644
--- a/src/styles/components/_module_agenda.scss
+++ b/src/styles/components/_module_agenda.scss
@@ -314,7 +314,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -326,7 +326,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -338,7 +338,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -350,7 +350,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -512,7 +512,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -525,7 +525,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -536,7 +536,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -547,7 +547,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -632,7 +632,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -645,7 +645,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -658,7 +658,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -945,7 +945,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -957,7 +957,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -969,7 +969,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -981,7 +981,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1147,7 +1147,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1160,7 +1160,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1173,7 +1173,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1186,7 +1186,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1260,7 +1260,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1273,7 +1273,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1286,7 +1286,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1604,7 +1604,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1616,7 +1616,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1628,7 +1628,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1640,7 +1640,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1792,7 +1792,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1805,7 +1805,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1818,7 +1818,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -2116,7 +2116,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2188,7 +2188,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2252,7 +2252,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2264,7 +2264,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2276,7 +2276,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2288,7 +2288,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2451,7 +2451,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2464,7 +2464,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -2477,7 +2477,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_module_alert_confirmation.scss b/src/styles/components/_module_alert_confirmation.scss
index fab56d3..64cd382 100644
--- a/src/styles/components/_module_alert_confirmation.scss
+++ b/src/styles/components/_module_alert_confirmation.scss
@@ -324,7 +324,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -336,7 +336,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -348,7 +348,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -360,7 +360,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -533,7 +533,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -546,7 +546,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -557,7 +557,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -568,7 +568,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -675,7 +675,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -688,7 +688,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -701,7 +701,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1095,7 +1095,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -1107,7 +1107,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1119,7 +1119,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1131,7 +1131,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1309,7 +1309,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1322,7 +1322,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1335,7 +1335,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1348,7 +1348,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1443,7 +1443,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1456,7 +1456,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1469,7 +1469,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1892,7 +1892,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1904,7 +1904,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1916,7 +1916,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1928,7 +1928,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -2121,7 +2121,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2134,7 +2134,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -2147,7 +2147,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -2532,7 +2532,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2596,7 +2596,7 @@
width: 40%;
background: #81BC3A !important;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white !important;
}
@@ -2608,7 +2608,7 @@
width: 40%;
background: #81BC3A !important;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white !important;
}
@@ -2690,7 +2690,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2702,7 +2702,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2714,7 +2714,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2726,7 +2726,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2929,7 +2929,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2942,7 +2942,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -2955,7 +2955,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_module_attestation_formation.scss b/src/styles/components/_module_attestation_formation.scss
index de692c9..98d3bd9 100644
--- a/src/styles/components/_module_attestation_formation.scss
+++ b/src/styles/components/_module_attestation_formation.scss
@@ -356,7 +356,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -368,7 +368,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -380,7 +380,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -392,7 +392,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -554,7 +554,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -567,7 +567,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -578,7 +578,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -589,7 +589,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -674,7 +674,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -687,7 +687,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -700,7 +700,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -979,7 +979,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -991,7 +991,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1003,7 +1003,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1015,7 +1015,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1181,7 +1181,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1194,7 +1194,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1207,7 +1207,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1220,7 +1220,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1294,7 +1294,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1307,7 +1307,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1320,7 +1320,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1630,7 +1630,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1642,7 +1642,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1654,7 +1654,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1666,7 +1666,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1818,7 +1818,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1831,7 +1831,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1844,7 +1844,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -2134,7 +2134,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2206,7 +2206,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2271,7 +2271,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2283,7 +2283,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2295,7 +2295,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2307,7 +2307,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2470,7 +2470,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2483,7 +2483,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -2496,7 +2496,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_module_connexion_intranet_client.scss b/src/styles/components/_module_connexion_intranet_client.scss
index 4bf00db..41da9b4 100644
--- a/src/styles/components/_module_connexion_intranet_client.scss
+++ b/src/styles/components/_module_connexion_intranet_client.scss
@@ -1684,7 +1684,7 @@
input {
width: 100%;
- height: 2.5rem;
+ height: 2rem;
border-radius: 5rem;
margin: 0 auto;
border: auto;
@@ -1814,7 +1814,7 @@
.btn_login {
width: 10rem;
- height: 2.5rem;
+ height: 2rem;
border-radius: 5rem;
}
diff --git a/src/styles/components/_module_editique.scss b/src/styles/components/_module_editique.scss
index 08a4134..2594578 100644
--- a/src/styles/components/_module_editique.scss
+++ b/src/styles/components/_module_editique.scss
@@ -362,7 +362,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -374,7 +374,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -386,7 +386,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -398,7 +398,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -560,7 +560,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -573,7 +573,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -584,7 +584,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -595,7 +595,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -680,7 +680,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -693,7 +693,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -706,7 +706,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -985,7 +985,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -997,7 +997,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1009,7 +1009,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1021,7 +1021,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1187,7 +1187,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1200,7 +1200,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1213,7 +1213,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1226,7 +1226,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1300,7 +1300,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1313,7 +1313,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1326,7 +1326,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1636,7 +1636,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1648,7 +1648,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1660,7 +1660,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1672,7 +1672,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1824,7 +1824,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1837,7 +1837,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1850,7 +1850,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -2140,7 +2140,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2212,7 +2212,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2276,7 +2276,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2288,7 +2288,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2300,7 +2300,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2312,7 +2312,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2475,7 +2475,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2488,7 +2488,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -2501,7 +2501,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_module_email_management.scss b/src/styles/components/_module_email_management.scss
index 5b0132a..7695a25 100644
--- a/src/styles/components/_module_email_management.scss
+++ b/src/styles/components/_module_email_management.scss
@@ -363,7 +363,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -375,7 +375,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -387,7 +387,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -399,7 +399,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -561,7 +561,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -574,7 +574,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -585,7 +585,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -596,7 +596,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -681,7 +681,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -694,7 +694,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -707,7 +707,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -994,7 +994,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -1006,7 +1006,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1018,7 +1018,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1030,7 +1030,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1196,7 +1196,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1209,7 +1209,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1222,7 +1222,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1235,7 +1235,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1309,7 +1309,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1322,7 +1322,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1335,7 +1335,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1653,7 +1653,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1665,7 +1665,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1677,7 +1677,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1689,7 +1689,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1841,7 +1841,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1854,7 +1854,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1867,7 +1867,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -2165,7 +2165,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2237,7 +2237,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2300,7 +2300,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2312,7 +2312,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2324,7 +2324,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2336,7 +2336,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2499,7 +2499,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2512,7 +2512,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -2525,7 +2525,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_module_ent_mes_documents.scss b/src/styles/components/_module_ent_mes_documents.scss
index 438aa71..c6324d7 100644
--- a/src/styles/components/_module_ent_mes_documents.scss
+++ b/src/styles/components/_module_ent_mes_documents.scss
@@ -301,7 +301,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -314,7 +314,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -326,7 +326,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -488,7 +488,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -501,7 +501,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -513,7 +513,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -524,7 +524,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -535,7 +535,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -896,7 +896,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -909,7 +909,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -921,7 +921,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1087,7 +1087,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1100,7 +1100,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1113,7 +1113,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -1126,7 +1126,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1139,7 +1139,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1530,7 +1530,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1542,7 +1542,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1554,7 +1554,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -1567,7 +1567,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1579,7 +1579,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1993,7 +1993,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2057,7 +2057,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2121,7 +2121,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2133,7 +2133,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2145,7 +2145,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -2157,7 +2157,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2169,7 +2169,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2448,7 +2448,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2461,7 +2461,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_module_ent_mes_formations.scss b/src/styles/components/_module_ent_mes_formations.scss
index d5b08bd..66a3b00 100644
--- a/src/styles/components/_module_ent_mes_formations.scss
+++ b/src/styles/components/_module_ent_mes_formations.scss
@@ -301,7 +301,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -314,7 +314,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -326,7 +326,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -488,7 +488,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -501,7 +501,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -513,7 +513,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -524,7 +524,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -535,7 +535,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -896,7 +896,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -909,7 +909,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -921,7 +921,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1087,7 +1087,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1100,7 +1100,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1113,7 +1113,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -1126,7 +1126,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1139,7 +1139,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1530,7 +1530,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1542,7 +1542,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1554,7 +1554,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -1567,7 +1567,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1579,7 +1579,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1993,7 +1993,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2057,7 +2057,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2121,7 +2121,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2133,7 +2133,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2145,7 +2145,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -2157,7 +2157,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2169,7 +2169,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2700,7 +2700,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2713,7 +2713,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_module_ent_mes_notes.scss b/src/styles/components/_module_ent_mes_notes.scss
index 0e612cc..3fe1f7c 100644
--- a/src/styles/components/_module_ent_mes_notes.scss
+++ b/src/styles/components/_module_ent_mes_notes.scss
@@ -301,7 +301,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -314,7 +314,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -326,7 +326,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -488,7 +488,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -501,7 +501,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -513,7 +513,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -524,7 +524,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -535,7 +535,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -896,7 +896,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -909,7 +909,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -921,7 +921,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1087,7 +1087,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1100,7 +1100,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1113,7 +1113,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -1126,7 +1126,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1139,7 +1139,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1530,7 +1530,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1542,7 +1542,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1554,7 +1554,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -1567,7 +1567,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1579,7 +1579,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1993,7 +1993,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2057,7 +2057,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2121,7 +2121,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2133,7 +2133,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2145,7 +2145,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -2157,7 +2157,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2169,7 +2169,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2448,7 +2448,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2461,7 +2461,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_module_ent_mon_planning.scss b/src/styles/components/_module_ent_mon_planning.scss
index e58e513..759f683 100644
--- a/src/styles/components/_module_ent_mon_planning.scss
+++ b/src/styles/components/_module_ent_mon_planning.scss
@@ -301,7 +301,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -314,7 +314,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -326,7 +326,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -488,7 +488,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -501,7 +501,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -513,7 +513,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -524,7 +524,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -535,7 +535,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -896,7 +896,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -909,7 +909,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -921,7 +921,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1087,7 +1087,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1100,7 +1100,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1113,7 +1113,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -1126,7 +1126,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1139,7 +1139,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1530,7 +1530,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1542,7 +1542,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1554,7 +1554,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -1567,7 +1567,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1579,7 +1579,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1993,7 +1993,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2057,7 +2057,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2121,7 +2121,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2133,7 +2133,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2145,7 +2145,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -2157,7 +2157,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2169,7 +2169,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2448,7 +2448,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2461,7 +2461,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_module_evaluation_positionnement.scss b/src/styles/components/_module_evaluation_positionnement.scss
index 2530c5c..46eb95a 100644
--- a/src/styles/components/_module_evaluation_positionnement.scss
+++ b/src/styles/components/_module_evaluation_positionnement.scss
@@ -356,7 +356,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -368,7 +368,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -380,7 +380,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -392,7 +392,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -554,7 +554,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -567,7 +567,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -578,7 +578,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -589,7 +589,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -674,7 +674,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -687,7 +687,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -700,7 +700,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -979,7 +979,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -991,7 +991,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1003,7 +1003,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1015,7 +1015,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1181,7 +1181,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1194,7 +1194,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1207,7 +1207,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1220,7 +1220,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1294,7 +1294,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1307,7 +1307,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1320,7 +1320,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1630,7 +1630,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1642,7 +1642,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1654,7 +1654,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1666,7 +1666,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1818,7 +1818,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1831,7 +1831,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1844,7 +1844,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -2134,7 +2134,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2206,7 +2206,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2271,7 +2271,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2283,7 +2283,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2295,7 +2295,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2307,7 +2307,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2470,7 +2470,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2483,7 +2483,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -2496,7 +2496,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_module_historique_action.scss b/src/styles/components/_module_historique_action.scss
index b7aa802..875cbd7 100644
--- a/src/styles/components/_module_historique_action.scss
+++ b/src/styles/components/_module_historique_action.scss
@@ -270,7 +270,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -282,7 +282,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -294,7 +294,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -306,7 +306,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -487,7 +487,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -500,7 +500,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -511,7 +511,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -522,7 +522,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -843,7 +843,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -855,7 +855,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -867,7 +867,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -879,7 +879,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1063,7 +1063,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1076,7 +1076,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1089,7 +1089,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1102,7 +1102,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1456,7 +1456,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1468,7 +1468,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1480,7 +1480,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1492,7 +1492,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1897,7 +1897,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -1960,7 +1960,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2024,7 +2024,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2036,7 +2036,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2048,7 +2048,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2060,7 +2060,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_module_jury_selection_apprenants.scss b/src/styles/components/_module_jury_selection_apprenants.scss
index 2ca504c..94770a8 100644
--- a/src/styles/components/_module_jury_selection_apprenants.scss
+++ b/src/styles/components/_module_jury_selection_apprenants.scss
@@ -320,7 +320,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -332,7 +332,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -344,7 +344,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -356,7 +356,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -527,7 +527,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -540,7 +540,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -551,7 +551,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -562,7 +562,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -669,7 +669,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -682,7 +682,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -695,7 +695,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -974,7 +974,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -986,7 +986,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -998,7 +998,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1010,7 +1010,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1186,7 +1186,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1199,7 +1199,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1212,7 +1212,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1225,7 +1225,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1320,7 +1320,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1333,7 +1333,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1346,7 +1346,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1664,7 +1664,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1676,7 +1676,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1688,7 +1688,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1700,7 +1700,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1893,7 +1893,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1906,7 +1906,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1919,7 +1919,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -2201,7 +2201,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2265,7 +2265,7 @@
width: 40%;
background: #81BC3A !important;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white !important;
}
@@ -2277,7 +2277,7 @@
width: 40%;
background: #81BC3A !important;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white !important;
}
@@ -2359,7 +2359,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2371,7 +2371,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2383,7 +2383,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2395,7 +2395,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2598,7 +2598,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2611,7 +2611,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -2624,7 +2624,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_module_session_note_classement.scss b/src/styles/components/_module_session_note_classement.scss
index cc0b44e..9fe3de6 100644
--- a/src/styles/components/_module_session_note_classement.scss
+++ b/src/styles/components/_module_session_note_classement.scss
@@ -320,7 +320,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -332,7 +332,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -344,7 +344,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -356,7 +356,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -527,7 +527,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -540,7 +540,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -551,7 +551,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -562,7 +562,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -669,7 +669,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -682,7 +682,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -695,7 +695,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -974,7 +974,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -986,7 +986,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -998,7 +998,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1010,7 +1010,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1186,7 +1186,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1199,7 +1199,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1212,7 +1212,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1225,7 +1225,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1320,7 +1320,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1333,7 +1333,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1346,7 +1346,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1664,7 +1664,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1676,7 +1676,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1688,7 +1688,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1700,7 +1700,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1893,7 +1893,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1906,7 +1906,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1919,7 +1919,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -2201,7 +2201,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2265,7 +2265,7 @@
width: 40%;
background: #81BC3A !important;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white !important;
}
@@ -2277,7 +2277,7 @@
width: 40%;
background: #81BC3A !important;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white !important;
}
@@ -2359,7 +2359,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2371,7 +2371,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2383,7 +2383,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2395,7 +2395,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2598,7 +2598,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2611,7 +2611,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -2624,7 +2624,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_moduleactivite.scss b/src/styles/components/_moduleactivite.scss
index 1ebe874..26259ee 100644
--- a/src/styles/components/_moduleactivite.scss
+++ b/src/styles/components/_moduleactivite.scss
@@ -318,7 +318,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -330,7 +330,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -342,7 +342,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -354,7 +354,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -525,7 +525,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -538,7 +538,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -549,7 +549,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -560,7 +560,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -667,7 +667,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -680,7 +680,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -693,7 +693,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -972,7 +972,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -984,7 +984,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -996,7 +996,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1008,7 +1008,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1184,7 +1184,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1197,7 +1197,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1210,7 +1210,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1223,7 +1223,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1318,7 +1318,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1331,7 +1331,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1344,7 +1344,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1663,7 +1663,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1675,7 +1675,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1687,7 +1687,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1699,7 +1699,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1892,7 +1892,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1905,7 +1905,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1918,7 +1918,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -2200,7 +2200,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2264,7 +2264,7 @@
width: 40%;
background: #81BC3A !important;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white !important;
}
@@ -2276,7 +2276,7 @@
width: 40%;
background: #81BC3A !important;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white !important;
}
@@ -2357,7 +2357,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2369,7 +2369,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2381,7 +2381,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2393,7 +2393,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2596,7 +2596,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2609,7 +2609,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -2622,7 +2622,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_moduleia.scss b/src/styles/components/_moduleia.scss
index f9f222d..3c2da3e 100644
--- a/src/styles/components/_moduleia.scss
+++ b/src/styles/components/_moduleia.scss
@@ -324,7 +324,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -336,7 +336,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -348,7 +348,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -360,7 +360,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -533,7 +533,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -546,7 +546,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -557,7 +557,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -568,7 +568,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -675,7 +675,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -688,7 +688,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -701,7 +701,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1095,7 +1095,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -1107,7 +1107,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1119,7 +1119,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1131,7 +1131,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1309,7 +1309,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1322,7 +1322,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1335,7 +1335,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1348,7 +1348,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1443,7 +1443,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1456,7 +1456,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1469,7 +1469,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1892,7 +1892,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1904,7 +1904,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1916,7 +1916,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1928,7 +1928,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -2121,7 +2121,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2134,7 +2134,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -2147,7 +2147,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -2532,7 +2532,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2596,7 +2596,7 @@
width: 40%;
background: #81BC3A !important;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white !important;
}
@@ -2608,7 +2608,7 @@
width: 40%;
background: #81BC3A !important;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white !important;
}
@@ -2690,7 +2690,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2702,7 +2702,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2714,7 +2714,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2726,7 +2726,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2929,7 +2929,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2942,7 +2942,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -2955,7 +2955,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_modules_mes_documents.scss b/src/styles/components/_modules_mes_documents.scss
index b1773eb..36032e7 100644
--- a/src/styles/components/_modules_mes_documents.scss
+++ b/src/styles/components/_modules_mes_documents.scss
@@ -291,7 +291,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -303,7 +303,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -315,7 +315,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -327,7 +327,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -489,7 +489,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -502,7 +502,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -513,7 +513,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -524,7 +524,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -879,7 +879,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -891,7 +891,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -903,7 +903,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -915,7 +915,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1081,7 +1081,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1094,7 +1094,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1107,7 +1107,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1120,7 +1120,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1495,7 +1495,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1507,7 +1507,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1519,7 +1519,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1531,7 +1531,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1964,7 +1964,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2036,7 +2036,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2100,7 +2100,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2112,7 +2112,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2124,7 +2124,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2136,7 +2136,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2299,7 +2299,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2312,7 +2312,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_moduleselectionapprenants.scss b/src/styles/components/_moduleselectionapprenants.scss
index 7cd894f..cb437d6 100644
--- a/src/styles/components/_moduleselectionapprenants.scss
+++ b/src/styles/components/_moduleselectionapprenants.scss
@@ -320,7 +320,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -332,7 +332,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -344,7 +344,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -356,7 +356,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -527,7 +527,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -540,7 +540,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -551,7 +551,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -562,7 +562,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -669,7 +669,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -682,7 +682,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -695,7 +695,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -974,7 +974,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -986,7 +986,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -998,7 +998,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1010,7 +1010,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1186,7 +1186,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1199,7 +1199,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1212,7 +1212,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1225,7 +1225,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1320,7 +1320,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1333,7 +1333,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1346,7 +1346,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1664,7 +1664,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1676,7 +1676,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1688,7 +1688,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1700,7 +1700,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1893,7 +1893,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1906,7 +1906,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1919,7 +1919,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -2201,7 +2201,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2265,7 +2265,7 @@
width: 40%;
background: #81BC3A !important;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white !important;
}
@@ -2277,7 +2277,7 @@
width: 40%;
background: #81BC3A !important;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white !important;
}
@@ -2359,7 +2359,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2371,7 +2371,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2383,7 +2383,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2395,7 +2395,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2598,7 +2598,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2611,7 +2611,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -2624,7 +2624,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_moduleselectionevaluationapprenants.scss b/src/styles/components/_moduleselectionevaluationapprenants.scss
index 984e881..930cf7b 100644
--- a/src/styles/components/_moduleselectionevaluationapprenants.scss
+++ b/src/styles/components/_moduleselectionevaluationapprenants.scss
@@ -10,7 +10,7 @@
.css-1bp1ao6{
height: 3.5rem !important;
- }
+ }
.loader-container {
width: 100%;
@@ -320,7 +320,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -332,7 +332,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -344,7 +344,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -356,7 +356,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -527,7 +527,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -540,7 +540,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -551,7 +551,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -562,7 +562,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -669,7 +669,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -682,7 +682,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -695,7 +695,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -974,7 +974,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -986,7 +986,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -998,7 +998,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1010,7 +1010,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1186,7 +1186,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1199,7 +1199,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1212,7 +1212,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1225,7 +1225,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1320,7 +1320,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1333,7 +1333,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1346,7 +1346,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1664,7 +1664,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1676,7 +1676,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1688,7 +1688,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1700,7 +1700,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1840,7 +1840,7 @@
text-align: center;
margin-bottom: 0.8rem;
color: white;
- cursor: pointer;
+ cursor: default;
font-style: italic;
background-color: gray;
font-weight: normal;
@@ -1893,7 +1893,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1906,7 +1906,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1919,7 +1919,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -2201,7 +2201,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2265,7 +2265,7 @@
width: 40%;
background: #81BC3A !important;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white !important;
}
@@ -2277,7 +2277,7 @@
width: 40%;
background: #81BC3A !important;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white !important;
}
@@ -2359,7 +2359,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2371,7 +2371,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2383,7 +2383,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2395,7 +2395,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2536,7 +2536,7 @@
text-align: center;
margin-bottom: 0.8rem;
color: white;
- cursor: pointer;
+ cursor: default;
font-style: italic;
background-color: gray;
font-weight: normal;
@@ -2598,7 +2598,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2611,7 +2611,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -2624,7 +2624,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_modulesessionevaluation.scss b/src/styles/components/_modulesessionevaluation.scss
index 61e3349..cd69dae 100644
--- a/src/styles/components/_modulesessionevaluation.scss
+++ b/src/styles/components/_modulesessionevaluation.scss
@@ -11,7 +11,7 @@
.css-1bp1ao6{
height: 3.5rem !important;
}
-
+
.loader-container {
width: 100%;
height: 100vh;
@@ -320,7 +320,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -332,7 +332,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -344,7 +344,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -356,7 +356,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -527,7 +527,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -540,7 +540,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -551,7 +551,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -562,7 +562,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -648,6 +648,7 @@
margin-bottom: 1rem;
margin-top: 15px;
margin-left: 0px;
+ text-align: left;
}
.block_en_mass_select {
@@ -669,7 +670,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -682,7 +683,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -695,7 +696,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -974,7 +975,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -986,7 +987,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -998,7 +999,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1010,7 +1011,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1186,7 +1187,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1199,7 +1200,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1212,7 +1213,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1225,7 +1226,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1299,6 +1300,7 @@
margin-bottom: 1rem;
margin-top: 15px;
margin-left: 0px;
+ text-align: left;
}
.block_en_mass_select {
@@ -1320,7 +1322,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1333,7 +1335,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1346,7 +1348,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1664,7 +1666,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1676,7 +1678,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1688,7 +1690,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1700,7 +1702,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1872,6 +1874,7 @@
margin-bottom: 1rem;
margin-top: 15px;
margin-left: 0px;
+ text-align: left;
}
.block_en_mass_select {
@@ -1893,7 +1896,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1906,7 +1909,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1919,7 +1922,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -2201,7 +2204,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2265,7 +2268,7 @@
width: 40%;
background: #81BC3A !important;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white !important;
}
@@ -2277,7 +2280,7 @@
width: 40%;
background: #81BC3A !important;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white !important;
}
@@ -2359,7 +2362,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2371,7 +2374,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2383,7 +2386,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2395,7 +2398,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2578,6 +2581,7 @@
margin-bottom: 1rem;
margin-top: 15px;
margin-left: 0px;
+ text-align: left;
}
.block_en_mass_select {
@@ -2598,7 +2602,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2611,7 +2615,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -2624,7 +2628,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_modulesessionplanification.scss b/src/styles/components/_modulesessionplanification.scss
index eec8102..5fe0d67 100644
--- a/src/styles/components/_modulesessionplanification.scss
+++ b/src/styles/components/_modulesessionplanification.scss
@@ -320,7 +320,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -332,7 +332,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -344,7 +344,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -356,7 +356,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -527,7 +527,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -540,7 +540,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -551,7 +551,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -562,7 +562,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -669,7 +669,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -682,7 +682,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -695,7 +695,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -974,7 +974,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -986,7 +986,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -998,7 +998,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1010,7 +1010,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1186,7 +1186,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1199,7 +1199,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1212,7 +1212,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1225,7 +1225,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1320,7 +1320,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1333,7 +1333,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1346,7 +1346,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1664,7 +1664,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1676,7 +1676,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1688,7 +1688,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1700,7 +1700,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1893,7 +1893,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1906,7 +1906,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1919,7 +1919,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -2201,7 +2201,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2265,7 +2265,7 @@
width: 40%;
background: #81BC3A !important;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white !important;
}
@@ -2277,7 +2277,7 @@
width: 40%;
background: #81BC3A !important;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white !important;
}
@@ -2359,7 +2359,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2371,7 +2371,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2383,7 +2383,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2395,7 +2395,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2598,7 +2598,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2611,7 +2611,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -2624,7 +2624,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_mon_catalogue_public.scss b/src/styles/components/_mon_catalogue_public.scss
index 9db8d36..3688a5c 100644
--- a/src/styles/components/_mon_catalogue_public.scss
+++ b/src/styles/components/_mon_catalogue_public.scss
@@ -2847,7 +2847,7 @@
.form-input {
border-radius: 10rem;
- height: 2.5rem;
+ height: 2rem;
font-size: medium;
line-height: 1.5;
@@ -5695,7 +5695,7 @@
font-size: medium;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -9092,7 +9092,7 @@
font-size: medium;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -12503,7 +12503,7 @@
font-size: medium;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -15944,7 +15944,7 @@
font-size: medium;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_mon_intranet_public.scss b/src/styles/components/_mon_intranet_public.scss
index e203899..1496876 100644
--- a/src/styles/components/_mon_intranet_public.scss
+++ b/src/styles/components/_mon_intranet_public.scss
@@ -2755,7 +2755,7 @@
.form-input {
border-radius: 10rem;
- height: 2.5rem;
+ height: 2rem;
font-size: medium;
line-height: 1.5;
@@ -5616,7 +5616,7 @@
font-size: medium;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -8884,7 +8884,7 @@
font-size: medium;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -12162,7 +12162,7 @@
font-size: medium;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -15473,7 +15473,7 @@
font-size: medium;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_mon_tableau_de_bord.scss b/src/styles/components/_mon_tableau_de_bord.scss
index 4187cb2..a83b70e 100644
--- a/src/styles/components/_mon_tableau_de_bord.scss
+++ b/src/styles/components/_mon_tableau_de_bord.scss
@@ -310,7 +310,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -322,7 +322,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -334,7 +334,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -346,7 +346,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -517,7 +517,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -530,7 +530,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -541,7 +541,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -552,7 +552,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -652,7 +652,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -665,7 +665,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -678,7 +678,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -947,7 +947,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -959,7 +959,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -971,7 +971,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -983,7 +983,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1159,7 +1159,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1172,7 +1172,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1185,7 +1185,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1198,7 +1198,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1286,7 +1286,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1299,7 +1299,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1312,7 +1312,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1619,7 +1619,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1631,7 +1631,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1643,7 +1643,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1655,7 +1655,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1841,7 +1841,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1854,7 +1854,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1867,7 +1867,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -2126,7 +2126,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2187,7 +2187,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2250,7 +2250,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2262,7 +2262,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2274,7 +2274,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2286,7 +2286,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2481,7 +2481,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2494,7 +2494,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -2507,7 +2507,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_note_evaluation.scss b/src/styles/components/_note_evaluation.scss
index b5d8e8a..dc63757 100644
--- a/src/styles/components/_note_evaluation.scss
+++ b/src/styles/components/_note_evaluation.scss
@@ -301,7 +301,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -314,7 +314,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -326,7 +326,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -488,7 +488,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -501,7 +501,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -513,7 +513,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -524,7 +524,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -535,7 +535,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -896,7 +896,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -909,7 +909,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -921,7 +921,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1087,7 +1087,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1100,7 +1100,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1113,7 +1113,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -1126,7 +1126,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1139,7 +1139,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1530,7 +1530,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1542,7 +1542,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1554,7 +1554,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -1567,7 +1567,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1579,7 +1579,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1993,7 +1993,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2057,7 +2057,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2121,7 +2121,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2133,7 +2133,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2145,7 +2145,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -2157,7 +2157,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2169,7 +2169,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2431,7 +2431,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2444,7 +2444,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_partner.scss b/src/styles/components/_partner.scss
index dba0c2b..8cb2592 100644
--- a/src/styles/components/_partner.scss
+++ b/src/styles/components/_partner.scss
@@ -435,7 +435,7 @@
font-size: small;
text-align: left;
border: solid 1px;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -915,7 +915,7 @@
font-size: small;
text-align: left;
border: solid 1px;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -1422,7 +1422,7 @@
font-size: small;
text-align: left;
border: solid 1px;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -1710,7 +1710,7 @@
text-align: left;
color: #c0c0c0;
cursor: pointer;
- max-height: 2.5rem;
+ max-height: 2rem;
background-color: #107758 !important;
}
@@ -1721,7 +1721,7 @@
color: #ffffff;
cursor: pointer;
font-weight: 600;
- max-height: 2.5rem;
+ max-height: 2rem;
background-color: #107758 !important;
//letter-spacing: 1px;
@@ -1906,7 +1906,7 @@
font-size: small;
text-align: left;
border: solid 1px;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
diff --git a/src/styles/components/_partner_client_activite.scss b/src/styles/components/_partner_client_activite.scss
index 39c6d12..8ef9c3b 100644
--- a/src/styles/components/_partner_client_activite.scss
+++ b/src/styles/components/_partner_client_activite.scss
@@ -117,7 +117,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -129,7 +129,7 @@
font-size: small;
background: #81BC3A !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -141,7 +141,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -153,7 +153,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -392,7 +392,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -404,7 +404,7 @@
font-size: small;
background: #81BC3A !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -416,7 +416,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -428,7 +428,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -670,7 +670,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -682,7 +682,7 @@
font-size: small;
background: #81BC3A !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -694,7 +694,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -706,7 +706,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -968,7 +968,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -980,7 +980,7 @@
font-size: small;
background: #81BC3A !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -992,7 +992,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1004,7 +1004,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 45%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_partner_commande.scss b/src/styles/components/_partner_commande.scss
index b8787c4..a9b158a 100644
--- a/src/styles/components/_partner_commande.scss
+++ b/src/styles/components/_partner_commande.scss
@@ -319,7 +319,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -331,7 +331,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -343,7 +343,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -355,7 +355,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -517,7 +517,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -530,7 +530,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -541,7 +541,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -552,7 +552,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -921,7 +921,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -933,7 +933,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -945,7 +945,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -957,7 +957,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1123,7 +1123,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1136,7 +1136,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1149,7 +1149,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1162,7 +1162,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1550,7 +1550,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1562,7 +1562,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1574,7 +1574,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1586,7 +1586,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -2007,7 +2007,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2104,7 +2104,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2167,7 +2167,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2179,7 +2179,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2191,7 +2191,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2203,7 +2203,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2366,7 +2366,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2379,7 +2379,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_partner_configiguration_formulaires.scss b/src/styles/components/_partner_configiguration_formulaires.scss
index f6bec02..2453749 100644
--- a/src/styles/components/_partner_configiguration_formulaires.scss
+++ b/src/styles/components/_partner_configiguration_formulaires.scss
@@ -290,7 +290,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -302,7 +302,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -314,7 +314,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -326,7 +326,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -488,7 +488,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -501,7 +501,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -512,7 +512,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -523,7 +523,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -867,7 +867,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -879,7 +879,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -891,7 +891,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -903,7 +903,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1069,7 +1069,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1082,7 +1082,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1095,7 +1095,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1108,7 +1108,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1471,7 +1471,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1483,7 +1483,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1495,7 +1495,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1507,7 +1507,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1929,7 +1929,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2001,7 +2001,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2065,7 +2065,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2077,7 +2077,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2089,7 +2089,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2101,7 +2101,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2264,7 +2264,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2277,7 +2277,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_partner_configuration_jours_travail.scss b/src/styles/components/_partner_configuration_jours_travail.scss
index 8100f71..0621768 100644
--- a/src/styles/components/_partner_configuration_jours_travail.scss
+++ b/src/styles/components/_partner_configuration_jours_travail.scss
@@ -292,7 +292,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -304,7 +304,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -316,7 +316,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -328,7 +328,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -490,7 +490,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -503,7 +503,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -514,7 +514,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -525,7 +525,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -869,7 +869,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -881,7 +881,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -893,7 +893,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -905,7 +905,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1071,7 +1071,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1084,7 +1084,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1097,7 +1097,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1110,7 +1110,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1473,7 +1473,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1485,7 +1485,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1497,7 +1497,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1509,7 +1509,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1966,7 +1966,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2038,7 +2038,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2102,7 +2102,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2114,7 +2114,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2126,7 +2126,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2138,7 +2138,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2301,7 +2301,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2314,7 +2314,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_partner_configuration_session_step.scss b/src/styles/components/_partner_configuration_session_step.scss
index 49ad1b6..e65ffe3 100644
--- a/src/styles/components/_partner_configuration_session_step.scss
+++ b/src/styles/components/_partner_configuration_session_step.scss
@@ -292,7 +292,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -304,7 +304,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -316,7 +316,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -328,7 +328,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -490,7 +490,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -503,7 +503,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -514,7 +514,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -525,7 +525,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -869,7 +869,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -881,7 +881,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -893,7 +893,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -905,7 +905,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1071,7 +1071,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1084,7 +1084,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1097,7 +1097,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1110,7 +1110,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1473,7 +1473,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1485,7 +1485,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1497,7 +1497,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1509,7 +1509,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1931,7 +1931,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2003,7 +2003,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2067,7 +2067,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2079,7 +2079,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2091,7 +2091,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2103,7 +2103,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2266,7 +2266,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2279,7 +2279,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_partner_configuration_technique.scss b/src/styles/components/_partner_configuration_technique.scss
index 35f3e3c..de800a7 100644
--- a/src/styles/components/_partner_configuration_technique.scss
+++ b/src/styles/components/_partner_configuration_technique.scss
@@ -294,7 +294,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -306,7 +306,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -318,7 +318,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -330,7 +330,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -492,7 +492,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -505,7 +505,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -516,7 +516,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -527,7 +527,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -873,7 +873,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -885,7 +885,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -897,7 +897,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -909,7 +909,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1075,7 +1075,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1088,7 +1088,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1101,7 +1101,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1114,7 +1114,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1479,7 +1479,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1491,7 +1491,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1503,7 +1503,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1515,7 +1515,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1937,7 +1937,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2011,7 +2011,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2075,7 +2075,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2087,7 +2087,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2099,7 +2099,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2111,7 +2111,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2274,7 +2274,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2287,7 +2287,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_partner_domaine_categorie_metier.scss b/src/styles/components/_partner_domaine_categorie_metier.scss
index c088f96..452b7d0 100644
--- a/src/styles/components/_partner_domaine_categorie_metier.scss
+++ b/src/styles/components/_partner_domaine_categorie_metier.scss
@@ -294,7 +294,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -306,7 +306,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -318,7 +318,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -330,7 +330,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -492,7 +492,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -505,7 +505,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -516,7 +516,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -527,7 +527,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -873,7 +873,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -885,7 +885,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -897,7 +897,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -909,7 +909,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1075,7 +1075,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1088,7 +1088,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1101,7 +1101,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1114,7 +1114,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1479,7 +1479,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1491,7 +1491,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1503,7 +1503,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1515,7 +1515,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1937,7 +1937,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2011,7 +2011,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2075,7 +2075,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2087,7 +2087,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2099,7 +2099,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2111,7 +2111,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2274,7 +2274,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2287,7 +2287,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_partner_facture.scss b/src/styles/components/_partner_facture.scss
index 84cb7b1..0134497 100644
--- a/src/styles/components/_partner_facture.scss
+++ b/src/styles/components/_partner_facture.scss
@@ -291,7 +291,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -303,7 +303,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -315,7 +315,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -327,7 +327,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -489,7 +489,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -502,7 +502,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -513,7 +513,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -524,7 +524,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -879,7 +879,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -891,7 +891,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -903,7 +903,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -915,7 +915,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1081,7 +1081,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1094,7 +1094,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1107,7 +1107,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1120,7 +1120,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1495,7 +1495,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1507,7 +1507,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1519,7 +1519,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1531,7 +1531,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1964,7 +1964,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2036,7 +2036,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2100,7 +2100,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2112,7 +2112,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2124,7 +2124,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2136,7 +2136,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2299,7 +2299,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2312,7 +2312,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_partner_ftion_initiale_configuration.scss b/src/styles/components/_partner_ftion_initiale_configuration.scss
index 4fa8afa..61f6c4e 100644
--- a/src/styles/components/_partner_ftion_initiale_configuration.scss
+++ b/src/styles/components/_partner_ftion_initiale_configuration.scss
@@ -294,7 +294,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -306,7 +306,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -318,7 +318,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -330,7 +330,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -492,7 +492,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -505,7 +505,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -516,7 +516,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -527,7 +527,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -873,7 +873,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -885,7 +885,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -897,7 +897,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -909,7 +909,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1075,7 +1075,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1088,7 +1088,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1101,7 +1101,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1114,7 +1114,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1479,7 +1479,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1491,7 +1491,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1503,7 +1503,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1515,7 +1515,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1937,7 +1937,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2011,7 +2011,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2075,7 +2075,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2087,7 +2087,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2099,7 +2099,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2111,7 +2111,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2274,7 +2274,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2287,7 +2287,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_partner_prix_achat.scss b/src/styles/components/_partner_prix_achat.scss
index b448bdf..bb94d24 100644
--- a/src/styles/components/_partner_prix_achat.scss
+++ b/src/styles/components/_partner_prix_achat.scss
@@ -311,7 +311,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -323,7 +323,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -335,7 +335,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -347,7 +347,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -518,7 +518,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -531,7 +531,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -542,7 +542,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -553,7 +553,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -659,7 +659,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -672,7 +672,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -685,7 +685,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -943,7 +943,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -955,7 +955,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -967,7 +967,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -979,7 +979,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1155,7 +1155,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1168,7 +1168,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1181,7 +1181,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1194,7 +1194,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1288,7 +1288,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1301,7 +1301,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1314,7 +1314,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1610,7 +1610,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1622,7 +1622,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1634,7 +1634,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1646,7 +1646,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1838,7 +1838,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1851,7 +1851,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1864,7 +1864,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -2113,7 +2113,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2174,7 +2174,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2238,7 +2238,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2250,7 +2250,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2262,7 +2262,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2274,7 +2274,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2476,7 +2476,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2489,7 +2489,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -2502,7 +2502,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_partner_product_service.scss b/src/styles/components/_partner_product_service.scss
index ce54de0..9aab9b7 100644
--- a/src/styles/components/_partner_product_service.scss
+++ b/src/styles/components/_partner_product_service.scss
@@ -288,7 +288,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -300,7 +300,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -312,7 +312,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -324,7 +324,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -486,7 +486,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -499,7 +499,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -510,7 +510,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -521,7 +521,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -862,7 +862,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -874,7 +874,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -886,7 +886,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -898,7 +898,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1064,7 +1064,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1077,7 +1077,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1090,7 +1090,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1103,7 +1103,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1475,7 +1475,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1487,7 +1487,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1499,7 +1499,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1511,7 +1511,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1884,7 +1884,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -1948,7 +1948,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2012,7 +2012,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2024,7 +2024,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2036,7 +2036,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2048,7 +2048,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_partnerclient.scss b/src/styles/components/_partnerclient.scss
index cbcb0e9..4cd653a 100644
--- a/src/styles/components/_partnerclient.scss
+++ b/src/styles/components/_partnerclient.scss
@@ -306,7 +306,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -318,7 +318,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -330,7 +330,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -342,7 +342,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -504,7 +504,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -517,7 +517,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -528,7 +528,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -539,7 +539,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -863,7 +863,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -875,7 +875,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -887,7 +887,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -899,7 +899,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1065,7 +1065,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1078,7 +1078,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1091,7 +1091,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1104,7 +1104,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1443,7 +1443,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1455,7 +1455,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1467,7 +1467,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1479,7 +1479,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1893,7 +1893,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -1951,7 +1951,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2015,7 +2015,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2027,7 +2027,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2039,7 +2039,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2051,7 +2051,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_quisommesnous_v4.scss b/src/styles/components/_quisommesnous_v4.scss
index 5e4844c..d0762d5 100644
--- a/src/styles/components/_quisommesnous_v4.scss
+++ b/src/styles/components/_quisommesnous_v4.scss
@@ -1097,7 +1097,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1110,7 +1110,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -2514,7 +2514,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2527,7 +2527,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -3940,7 +3940,7 @@
font-size: small;
background: #81bc3a !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -3953,7 +3953,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -5357,7 +5357,7 @@
font-size: small;
background: #81bc3a !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -5370,7 +5370,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_reherche.scss b/src/styles/components/_reherche.scss
index 37b4212..a056693 100644
--- a/src/styles/components/_reherche.scss
+++ b/src/styles/components/_reherche.scss
@@ -796,7 +796,7 @@
.form-input {
border-radius: 10rem;
- height: 2.5rem;
+ height: 2rem;
font-size: small;
line-height: 1.3;
diff --git a/src/styles/components/_reherche_new.scss b/src/styles/components/_reherche_new.scss
index f1fb7df..08225ed 100644
--- a/src/styles/components/_reherche_new.scss
+++ b/src/styles/components/_reherche_new.scss
@@ -863,7 +863,7 @@
.form-input {
border-radius: 10rem;
- height: 2.5rem;
+ height: 2rem;
font-size: small;
line-height: 1.3;
diff --git a/src/styles/components/_reherche_new_cartouche_com.scss b/src/styles/components/_reherche_new_cartouche_com.scss
index fcff9d0..2fbe9c9 100644
--- a/src/styles/components/_reherche_new_cartouche_com.scss
+++ b/src/styles/components/_reherche_new_cartouche_com.scss
@@ -863,7 +863,7 @@
.form-input {
border-radius: 10rem;
- height: 2.5rem;
+ height: 2rem;
font-size: small;
line-height: 1.3;
diff --git a/src/styles/components/_reherche_new_v2.scss b/src/styles/components/_reherche_new_v2.scss
index 00d08a4..0a6af10 100644
--- a/src/styles/components/_reherche_new_v2.scss
+++ b/src/styles/components/_reherche_new_v2.scss
@@ -2463,7 +2463,7 @@
.form-input {
border-radius: 10rem;
- height: 2.5rem;
+ height: 2rem;
font-size: medium;
line-height: 1.5;
@@ -5367,7 +5367,7 @@
font-size: medium;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -8467,7 +8467,7 @@
font-size: medium;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -11571,7 +11571,7 @@
font-size: medium;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -14684,7 +14684,7 @@
font-size: medium;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_reherche_new_v3.scss b/src/styles/components/_reherche_new_v3.scss
index 48fb0a9..63450c4 100644
--- a/src/styles/components/_reherche_new_v3.scss
+++ b/src/styles/components/_reherche_new_v3.scss
@@ -2446,7 +2446,7 @@
.form-input {
border-radius: 10rem;
- height: 2.5rem;
+ height: 2rem;
font-size: medium;
line-height: 1.5;
@@ -5243,7 +5243,7 @@
font-size: medium;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -8206,7 +8206,7 @@
font-size: medium;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -11175,7 +11175,7 @@
font-size: medium;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -14153,7 +14153,7 @@
font-size: medium;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_reherche_new_v4.scss b/src/styles/components/_reherche_new_v4.scss
index a227cbd..29f097d 100644
--- a/src/styles/components/_reherche_new_v4.scss
+++ b/src/styles/components/_reherche_new_v4.scss
@@ -2791,7 +2791,7 @@
.form-input {
border-radius: 10rem;
- height: 2.5rem;
+ height: 2rem;
font-size: medium;
line-height: 1.5;
@@ -5646,7 +5646,7 @@
font-size: medium;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -8949,7 +8949,7 @@
font-size: medium;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 90%;
color: white;
margin-left: 10px;
@@ -12038,7 +12038,7 @@
font-size: medium;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -15140,7 +15140,7 @@
font-size: medium;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_signin.scss b/src/styles/components/_signin.scss
index 819100c..7971346 100644
--- a/src/styles/components/_signin.scss
+++ b/src/styles/components/_signin.scss
@@ -1887,7 +1887,7 @@
input {
width: 100%;
- height: 2.5rem;
+ height: 2rem;
border-radius: 5rem;
margin: 0 auto;
border: auto;
@@ -2017,7 +2017,7 @@
.btn_login {
width: 10rem;
- height: 2.5rem;
+ height: 2rem;
border-radius: 5rem;
}
diff --git a/src/styles/components/_signup.scss b/src/styles/components/_signup.scss
index 22ad835..4bbf4f9 100644
--- a/src/styles/components/_signup.scss
+++ b/src/styles/components/_signup.scss
@@ -1421,7 +1421,7 @@
input {
width: 100%;
- height: 2.5rem;
+ height: 2rem;
margin: 0 auto;
border: auto;
border-radius: 0.5rem;
diff --git a/src/styles/components/_surveydocument.scss b/src/styles/components/_surveydocument.scss
index f5695ac..7fc9c55 100644
--- a/src/styles/components/_surveydocument.scss
+++ b/src/styles/components/_surveydocument.scss
@@ -71,7 +71,7 @@
}
.Mui-disabled {
- font-family:'DM Sans','Sans-serif';
+ font-family: 'DM Sans', 'Sans-serif';
font-size: small !important;
padding: 0px !important;
padding-left: 5px !important;
@@ -215,7 +215,7 @@
}
.css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input .Mui-disabled {
- font-family:'DM Sans','Sans-serif';
+ font-family: 'DM Sans', 'Sans-serif';
font: inherit;
letter-spacing: inherit;
color: currentColor;
@@ -262,7 +262,7 @@
}
.session_caract {
- font-family: DM Sans;
+ font-family: DM Sans;
width: 100%;
padding: 5px;
float: left;
@@ -356,23 +356,23 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
}
.bton_enreg {
- font-family: DM sans;
+ font-family: DM sans;
border-radius: 5rem;
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
- margin-left: 10px;
- margin-right: 10px;
+ margin-left: 0px;
+ margin-right: 0px;
}
.bton_edit {
@@ -380,7 +380,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -392,11 +392,11 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
- margin-left: 10px;
- margin-right: 10px;
+ margin-left: 0px;
+ margin-right: 0px;
}
.div_row_gauche_image {
@@ -554,7 +554,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -562,12 +562,12 @@
}
.bton_enreg {
- font-family: DM sans;
+ font-family: DM sans;
border-radius: 5rem;
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -578,7 +578,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -589,7 +589,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -623,7 +623,7 @@
}
.css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input .Mui-disabled {
- font-family:'DM Sans','Sans-serif';
+ font-family: 'DM Sans', 'Sans-serif';
font: inherit;
letter-spacing: inherit;
color: currentColor;
@@ -674,7 +674,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -687,7 +687,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -700,7 +700,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -714,40 +714,69 @@
}
.question_box {
- box-shadow: 10px 10px 10px 10px rgb(0 0 0 / 15%);
- width: 90%;
- margin-left: 5%;
+ box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0);
+ width: 100%;
+ margin: 0px;
border-radius: 5px;
background: white;
padding: 10px;
- margin-top: 2rem;
- margin-bottom: 1rem;
+ margin-top: 1rem;
+ margin-bottom: 0.5rem;
}
.question_box_entete {
- width: 90%;
- margin-left: 5%;
- border-radius: 5px;
- line-height: 2rem;
- font-weight: 700;
+ width: 100%;
letter-spacing: 1px;
padding: 10px;
- margin-bottom: 1rem;
- text-align: center;
- color:#464b5e;
+ margin-bottom: 0.5rem;
+ text-align: left;
+ color: #464b5e;
+ font-size: 14px;
}
.question_box_introduction {
- width: 90%;
- margin-left: 5%;
- border-radius: 5px;
- line-height: 2rem;
- font-weight: 700;
+ width: 100%;
+ font-size: 14px;
letter-spacing: 1px;
padding: 10px;
margin-bottom: 1rem;
text-align: left;
- color:#464b5e;
+ color: #464b5e;
+ }
+
+ .block_text_and_survey {
+ width: 100%;
+ padding: 10px;
+ background-color: #F2F4F4;
+ overflow: auto;
+ margin-top: 1rem;
+ font-family: DM Sans;
+ font-size: 12px;
+
+ }
+
+
+ .block_detail_formation {
+ width: 80%;
+ margin-left: 10%;
+ background-color: #F2F4F4;
+ overflow: auto;
+ padding-top: 1rem;
+ }
+
+ .question_text {
+ font-size: 14px;
+ font-family: 'DM Sans';
+ float: left;
+ color: #34495E;
+ margin-bottom: 0.5rem;
+
+ }
+
+ .block_bton_envoyer {
+ width: 90%;
+ margin: auto;
+ background: white;
}
}
@@ -869,7 +898,7 @@
}
.css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input .Mui-disabled {
- font-family:'DM Sans','Sans-serif';
+ font-family: 'DM Sans', 'Sans-serif';
font: inherit;
letter-spacing: inherit;
color: currentColor;
@@ -916,7 +945,7 @@
}
.session_caract {
- font-family: DM Sans;
+ font-family: DM Sans;
width: 50%;
padding: 5px;
float: left;
@@ -1016,19 +1045,19 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
}
.bton_enreg {
- font-family: DM sans;
+ font-family: DM sans;
border-radius: 5rem;
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1040,7 +1069,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1052,7 +1081,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1218,7 +1247,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1226,12 +1255,12 @@
}
.bton_enreg {
- font-family: DM sans;
+ font-family: DM sans;
border-radius: 5rem;
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1244,7 +1273,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1257,7 +1286,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1279,7 +1308,7 @@
}
.css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input .Mui-disabled {
- font-family:'DM Sans','Sans-serif';
+ font-family: 'DM Sans', 'Sans-serif';
font: inherit;
letter-spacing: inherit;
color: currentColor;
@@ -1331,7 +1360,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1344,7 +1373,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1357,7 +1386,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1371,7 +1400,7 @@
}
.question_box {
- box-shadow: 10px 10px 10px 10px rgb(0 0 0 / 15%);
+ box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0);
width: 90%;
margin-left: 5%;
border-radius: 5px;
@@ -1390,8 +1419,10 @@
letter-spacing: 1px;
padding: 10px;
margin-bottom: 1rem;
+ text-align: left;
+ color: #464b5e;
text-align: center;
- color:#464b5e;
+ font-size: 14px;
}
.question_box_introduction {
@@ -1404,11 +1435,46 @@
padding: 10px;
margin-bottom: 1rem;
text-align: left;
- color:#464b5e;
+ color: #464b5e;
+ font-size: 14px;
}
+ .block_text_and_survey {
+ width: 80%;
+ margin-left: 10%;
+ background-color: #F2F4F4;
+ overflow: auto;
+ padding-top: 1rem;
+ font-family: DM Sans;
+ font-size: 12px;
+ }
+
+
+ .block_detail_formation {
+ width: 80%;
+ margin-left: 10%;
+ background-color: #F2F4F4;
+ overflow: auto;
+ padding-top: 1rem;
+ }
+
+ .question_text {
+ font-size: 14px;
+ font-family: 'DM Sans';
+ float: left;
+ color: #34495E;
+
+ }
+
+ .block_bton_envoyer {
+ width: 80%;
+ margin-left: 10%;
+ background: white;
+ }
}
+
+
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.okUpdateData {
font-size: small;
@@ -1553,7 +1619,7 @@
}
.css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input .Mui-disabled {
- font-family:'DM Sans','Sans-serif';
+ font-family: 'DM Sans', 'Sans-serif';
font: inherit;
letter-spacing: inherit;
color: currentColor;
@@ -1603,7 +1669,7 @@
}
.session_caract {
- font-family: DM Sans;
+ font-family: DM Sans;
width: 33%;
padding: 5px;
float: left;
@@ -1704,19 +1770,19 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
}
.bton_enreg {
- font-family: DM sans;
+ font-family: DM sans;
border-radius: 5rem;
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1728,7 +1794,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1740,7 +1806,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1892,7 +1958,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1905,7 +1971,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1918,7 +1984,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1932,7 +1998,7 @@
}
.question_box {
- box-shadow: 10px 10px 10px 10px rgb(0 0 0 / 15%);
+ box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0);
width: 90%;
margin-left: 5%;
border-radius: 5px;
@@ -1951,8 +2017,10 @@
letter-spacing: 1px;
padding: 10px;
margin-bottom: 1rem;
+ text-align: left;
+ color: #464b5e;
text-align: center;
- color:#464b5e;
+ font-size: 16px;
}
.question_box_introduction {
@@ -1965,9 +2033,42 @@
padding: 10px;
margin-bottom: 1rem;
text-align: left;
- color:#464b5e;
+ color: #464b5e;
+ font-size: 14px;
}
+ .block_text_and_survey {
+ width: 80%;
+ margin-left: 10%;
+ background-color: #F2F4F4;
+ overflow: auto;
+ padding-top: 1rem;
+ font-family: DM Sans;
+ font-size: 12px;
+ }
+
+
+ .block_detail_formation {
+ width: 80%;
+ margin-left: 10%;
+ background-color: #F2F4F4;
+ overflow: auto;
+ padding-top: 1rem;
+ }
+
+ .question_text {
+ font-size: 14px;
+ font-family: 'DM Sans';
+ float: left;
+ color: #34495E;
+
+ }
+
+ .block_bton_envoyer {
+ width: 80%;
+ margin-left: 10%;
+ background: white;
+ }
}
@media only screen and (min-width: 1200px) {
@@ -2122,7 +2223,7 @@
}
.session_caract_Dialog {
- font-family: 'DM Sans';
+ font-family: 'DM Sans';
width: 100%;
padding: 5px;
float: left;
@@ -2149,7 +2250,7 @@
}
.css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input .Mui-disabled {
- font-family:'DM Sans','Sans-serif';
+ font-family: 'DM Sans', 'Sans-serif';
font: inherit;
letter-spacing: inherit;
color: currentColor;
@@ -2198,7 +2299,7 @@
.session_caract {
- font-family: DM Sans;
+ font-family: DM Sans;
width: 33%;
padding: 5px;
float: left;
@@ -2245,7 +2346,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2317,7 +2418,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2380,19 +2481,19 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
}
.bton_enreg {
- font-family: DM sans;
+ font-family: DM sans;
border-radius: 5rem;
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2404,7 +2505,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2416,7 +2517,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2579,7 +2680,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2592,7 +2693,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -2605,7 +2706,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -2621,7 +2722,7 @@
}
.question_box {
- box-shadow: 10px 10px 10px 10px rgb(0 0 0 / 15%);
+ box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0);
width: 90%;
margin-left: 5%;
border-radius: 5px;
@@ -2640,8 +2741,10 @@
letter-spacing: 1px;
padding: 10px;
margin-bottom: 1rem;
+ text-align: left;
+ color: #464b5e;
text-align: center;
- color:#464b5e;
+ font-size: 16px;
}
.question_box_introduction {
@@ -2654,11 +2757,48 @@
padding: 10px;
margin-bottom: 1rem;
text-align: left;
- color:#464b5e;
+ color: #464b5e;
+ font-size: 14px;
}
+ .block_text_and_survey {
+ width: 80%;
+ margin-left: 10%;
+ background-color: #F2F4F4;
+ overflow: auto;
+ padding-top: 1rem;
+ font-family: DM Sans;
+ font-size: 12px;
+ }
+
+
+ .block_detail_formation {
+ width: 80%;
+ margin-left: 10%;
+ background-color: #F2F4F4;
+ overflow: auto;
+ padding-top: 1rem;
+ }
+
+ .question_text {
+ font-size: 14px;
+ font-family: 'DM Sans';
+ float: left;
+ color: #34495E;
+
+ }
+
+ .block_bton_envoyer {
+ width: 80%;
+ margin-left: 10%;
+ background: white;
+ }
}
+
+
+
+
.css-1t1j96h-MuiPaper-root-MuiDialog-paper {
border-radius: 15px !important;
@@ -2679,7 +2819,7 @@
top: 0px;
opacity: 80%;
left: 0px;
- }
+ }
.spinner {
@@ -2709,7 +2849,7 @@
}
.session_caract_Dialog {
- font-family: 'DM Sans';
+ font-family: 'DM Sans';
width: 100%;
padding: 5px;
float: left;
@@ -2820,7 +2960,7 @@
}
.css-9ddj71-MuiInputBase-root-MuiOutlinedInput-root {
-font-family: DM Sans !important;
+ font-family: DM Sans !important;
height: 3.5rem !important;
font-size: small !important;
@@ -2832,9 +2972,9 @@ font-family: DM Sans !important;
width: 110%;
}
- .css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input {
- font-size: small !important;
- font-family: "DM Sans" !important;
+.css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input {
+ font-size: small !important;
+ font-family: "DM Sans" !important;
padding-left: 5px !important;
padding-right: 1rem !important;
}
\ No newline at end of file
diff --git a/src/styles/components/_test_drag_drop.scss b/src/styles/components/_test_drag_drop.scss
index b93a2a7..b3e888c 100644
--- a/src/styles/components/_test_drag_drop.scss
+++ b/src/styles/components/_test_drag_drop.scss
@@ -453,7 +453,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -465,7 +465,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -477,7 +477,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -489,7 +489,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -651,7 +651,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -664,7 +664,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -675,7 +675,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -686,7 +686,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -771,7 +771,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -784,7 +784,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -797,7 +797,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1076,7 +1076,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -1088,7 +1088,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1100,7 +1100,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1112,7 +1112,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1278,7 +1278,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1291,7 +1291,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1304,7 +1304,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1317,7 +1317,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1391,7 +1391,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1404,7 +1404,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1417,7 +1417,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1727,7 +1727,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1739,7 +1739,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1751,7 +1751,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1763,7 +1763,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1915,7 +1915,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1928,7 +1928,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1941,7 +1941,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -2231,7 +2231,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2303,7 +2303,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2367,7 +2367,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2379,7 +2379,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2391,7 +2391,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2403,7 +2403,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2566,7 +2566,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2579,7 +2579,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -2592,7 +2592,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_test_page.scss b/src/styles/components/_test_page.scss
index 29274c7..dcb42d8 100644
--- a/src/styles/components/_test_page.scss
+++ b/src/styles/components/_test_page.scss
@@ -149,7 +149,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -166,7 +166,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -178,7 +178,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -190,7 +190,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -333,7 +333,7 @@
color: rgb(10, 42, 77);
background-color: white;
padding-top: 1rem !important;
- line-height: 2.5rem;
+ line-height: 2rem;
}
.myhr {
@@ -558,7 +558,7 @@
.form-input {
border-radius: 10rem;
- height: 2.5rem;
+ height: 2rem;
font-size: small;
line-height: 1.43;
font-size: 14px;
@@ -1145,7 +1145,7 @@
.form-input {
border-radius: 10rem;
- height: 2.5rem;
+ height: 2rem;
font-size: small;
}
diff --git a/src/styles/components/_testurl_new.scss b/src/styles/components/_testurl_new.scss
index b44129c..a01f8a7 100644
--- a/src/styles/components/_testurl_new.scss
+++ b/src/styles/components/_testurl_new.scss
@@ -281,7 +281,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -293,7 +293,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -305,7 +305,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -317,7 +317,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -479,7 +479,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -492,7 +492,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -503,7 +503,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -514,7 +514,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -851,7 +851,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -863,7 +863,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -875,7 +875,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -887,7 +887,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1053,7 +1053,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1066,7 +1066,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1079,7 +1079,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1092,7 +1092,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1461,7 +1461,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1473,7 +1473,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1485,7 +1485,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1497,7 +1497,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1869,7 +1869,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -1931,7 +1931,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -1994,7 +1994,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2006,7 +2006,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2018,7 +2018,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2030,7 +2030,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
diff --git a/src/styles/components/_toggleswitch2_mysy.scss b/src/styles/components/_toggleswitch2_mysy.scss
index adb4893..6a43e90 100644
--- a/src/styles/components/_toggleswitch2_mysy.scss
+++ b/src/styles/components/_toggleswitch2_mysy.scss
@@ -15,7 +15,7 @@
display: inline-block;
text-align: left;
top: 5px;
- max-height: 2.5rem;
+ max-height: 2rem;
}
.checkbox {
diff --git a/src/styles/components/_updateattendeelist.scss b/src/styles/components/_updateattendeelist.scss
index 476e440..0993341 100644
--- a/src/styles/components/_updateattendeelist.scss
+++ b/src/styles/components/_updateattendeelist.scss
@@ -356,7 +356,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -368,7 +368,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -380,7 +380,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -392,7 +392,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -554,7 +554,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
margin-left: 10px;
margin-right: 10px;
@@ -567,7 +567,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -578,7 +578,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-bottom: 1rem !important;
@@ -589,7 +589,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-bottom: 1rem !important;
@@ -674,7 +674,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: white;
margin-left: 10px;
@@ -687,7 +687,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 100%;
color: black;
margin-left: 10px;
@@ -700,7 +700,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1016,7 +1016,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
margin-left: 10px;
margin-right: 10px;
@@ -1028,7 +1028,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1040,7 +1040,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1052,7 +1052,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1218,7 +1218,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1231,7 +1231,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1244,7 +1244,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1257,7 +1257,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -1331,7 +1331,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1344,7 +1344,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1357,7 +1357,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -1704,7 +1704,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -1716,7 +1716,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1728,7 +1728,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -1740,7 +1740,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1892,7 +1892,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -1905,7 +1905,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -1918,7 +1918,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
@@ -2245,7 +2245,7 @@
padding: 0.3rem;
width: 40%;
background: #81BC3A;
- height: 2.5rem;
+ height: 2rem;
}
@@ -2317,7 +2317,7 @@
width: 40%;
background: #81BC3A;
margin-left: 5%;
- height: 2.5rem;
+ height: 2rem;
color: white;
}
@@ -2380,7 +2380,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -2392,7 +2392,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2404,7 +2404,7 @@
font-size: small;
background: black !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -2416,7 +2416,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -2579,7 +2579,7 @@
font-size: small;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: white;
margin-left: 10px;
@@ -2592,7 +2592,7 @@
font-size: small;
background: lightgray !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: 80%;
color: black;
margin-left: 10px;
@@ -2605,7 +2605,7 @@
font-size: small;
background: rgb(224, 89, 89) !important;
text-align: right;
- height: 2.5rem;
+ height: 2rem;
width: auto;
color: white;
margin-left: 10px;
diff --git a/src/styles/components/_updateparnterinfo.scss b/src/styles/components/_updateparnterinfo.scss
index 04f1558..3fb0cba 100644
--- a/src/styles/components/_updateparnterinfo.scss
+++ b/src/styles/components/_updateparnterinfo.scss
@@ -560,7 +560,7 @@
border-radius: 5rem;
border: none;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -572,7 +572,7 @@
border-radius: 5rem;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -585,7 +585,7 @@
border-radius: 5rem;
background: black !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -598,7 +598,7 @@
border-radius: 5rem;
background: lightgray !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;
@@ -873,7 +873,7 @@
border-radius: 5rem;
font-size: small;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
margin-left: 10px;
margin-right: 10px;
@@ -885,7 +885,7 @@
border-radius: 5rem;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -897,7 +897,7 @@
border-radius: 5rem;
background: black !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: white;
margin-left: 10px;
@@ -909,7 +909,7 @@
border-radius: 5rem;
background: lightgray !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 65%;
color: black;
margin-left: 10px;
@@ -1202,7 +1202,7 @@
color: red;
border-radius: 5rem;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
margin-left: 10px;
margin-right: 10px;
@@ -1214,7 +1214,7 @@
border-radius: 5rem;
background: #81BC3A !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1226,7 +1226,7 @@
border-radius: 5rem;
background: black !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: white;
margin-left: 10px;
@@ -1238,7 +1238,7 @@
border-radius: 5rem;
background: lightgray !important;
text-align: center;
- height: 2.5rem;
+ height: 2rem;
width: 40%;
color: black;
margin-left: 10px;