branche_01062025
Cherif 2025-06-02 20:47:13 +02:00
parent d012108c24
commit 9ca54df695
145 changed files with 3625 additions and 1563 deletions

View File

@ -934,8 +934,8 @@ function Abonnement(props) {
setnew_nb_formations(event.target.value);
// document.getElementById('div_nb_formation').style.color = "#104277";
//document.getElementById('div_ttc').style.color = "#104277";
// document.getElementById('div_nb_formation').style.color = "#107758";
//document.getElementById('div_ttc').style.color = "#107758";
}

View File

@ -702,7 +702,7 @@ const AddClassManual = (props) => {
}
// zzzzzz
// Debut Gestion Finance
const New_Option_Type_Cout = [
{ "id": "fixe", "label": "Charge Fixe", "value": "fixe" },
{ "id": "variable", "label": "Charge Variable", "value": "variable" },
@ -985,7 +985,7 @@ const AddClassManual = (props) => {
}
// """"""""
// Fin Gestion Finance
const [New_Getall_Partner_List_UE_result, setNew_Getall_Partner_List_UE_result] = useState([]);
@ -1581,6 +1581,7 @@ const AddClassManual = (props) => {
Getall_Partner_Type_Evalution_List();
Getall_Class_List_Evalution();
setfield_contenu_attestation("");
Getall_Parter_referentiel_padagogique();
fillfield();
@ -1608,6 +1609,95 @@ const AddClassManual = (props) => {
}, [props.mytrainingclass['ref'],]);
const [mytraining_ref_peda_id, setmytraining_ref_peda_id] = useState("");
const [New_Getall_Parter_referentiel_padagogique_result, setNew_Getall_Parter_referentiel_padagogique_result] = useState([]);
const [Getall_Parter_referentiel_padagogique_api, setGetall_Parter_referentiel_padagogique_api] = useState();
const [Getall_Parter_referentiel_padagogique_message, setGetall_Parter_referentiel_padagogique_message] = useState();
const [Getall_Parter_referentiel_padagogique_result, setGetall_Parter_referentiel_padagogique_result] = useState([]);
function Getall_Parter_referentiel_padagogique(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_Ref_Pedagogique_no_filter/";
setLoading(true);
axios.post(myurl, form).then(res => {
setLoading(false);
if (String(res.data.status) === String("true")) {
//console.log(" In Getall_Parter_referentiel_padagogique res.data.status = " + res.data.status);
//console.log(" In Getall_Parter_referentiel_padagogique res.data.message r_class = " + res.data.message);
setGetall_Parter_referentiel_padagogique_api("true");
setGetall_Parter_referentiel_padagogique_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_commentaire = JSON.parse(x).commentaire;
var local_code = JSON.parse(x).code;
var local_description = JSON.parse(x).description;
//---
var node = {
"_id": local_id,
"id": localid,
"label": local_code,
"commentaire": local_commentaire,
"code": local_code,
"description": local_description,
};
new_data2.push(node);
});
//---
var node = {
"_id": "",
"id": "",
"label": "",
"commentaire": "",
"code": "",
"description": "",
};
new_data2.push(node);
if (new_data2.length > 0)
setNew_Getall_Parter_referentiel_padagogique_result(new_data2);
}
else {
setGetall_Parter_referentiel_padagogique_api("false");
setGetall_Parter_referentiel_padagogique_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_referentiel_padagogique = ', error);
setGetall_Parter_referentiel_padagogique_api("false");
alert(" Impossible de recuperer la liste des référentiels pédagogiques");
//setmyApimyApiMessage("")
})
}
const [field_description, setfield_description] = useState("");
const [field_objectif, setfield_objectif] = useState("");
const [field_programme, setfield_programme] = useState("");
@ -1655,10 +1745,10 @@ const AddClassManual = (props) => {
setLoading(true);
axios.post(myurl, form).then(res => {
if (String(res.data.status) === String("true")) {
// console.log(" In get_partner_class res.data.status = " + res.data.status);
if (String(res.data.status) === String("true") && res.data.message.length > 0) {
setLoading(false);
//console.log(" In get_partner_class res.data.status = " + res.data.status);
//console.log(" In get_partner_class res.data.message r_class = " + res.data.message);
// console.log(" In get_partner_class res.data.message r_class = " + res.data.message);
setmyApiResponse("True");
setResult(res.data.message);
@ -1807,7 +1897,6 @@ const AddClassManual = (props) => {
if (mylocaltraining.support) {
setmytrainingsupport(mylocaltraining.support);
var result2 = New_support_training_list.filter((local_mymanager) => local_mymanager.value === String((mylocaltraining.support)))
if (result2[0])
setmytrainingsupport_label(result2[0].label);
@ -1862,6 +1951,21 @@ const AddClassManual = (props) => {
setp_detail_price("");
if (mylocaltraining.archive) {
setp_detail_archive(mylocaltraining.archive);
}
else
setp_detail_archive("0");
if (mylocaltraining.referentiel_padagogique_id) {
setmytraining_ref_peda_id(mylocaltraining.referentiel_padagogique_id);
}
else
setmytraining_ref_peda_id("");
if (mylocaltraining.domaine) {
setmytrainingdomaine(mylocaltraining.domaine);
//console.log(" ### mylocaltraining.domaine = ", mylocaltraining.domaine);
@ -2032,7 +2136,14 @@ const AddClassManual = (props) => {
}
}
else if (String(res.data.status) === String("true") && res.data.message.length <= 0) {
setLoading(false);
setdisplay_alert_mysy("1");
setalert_message("Aucune information récupérées");
setalert_type("warning");
}
else {
setLoading(false);
//console.log(" In test res.data.status = "+res.data.status);
//console.log(" In test res.data.message = "+res.data.message);
setmyApiResponse("False");
@ -2090,7 +2201,9 @@ const AddClassManual = (props) => {
var code = document.getElementsByName("external_code")[0].value;
if (code.length < 1) {
alert(" Le Champ 'code' est obligatoire")
setdisplay_alert_mysy("1");
setalert_message("Le Champ 'code' est obligatoire");
setalert_type("error");
return;
}
@ -2130,7 +2243,6 @@ const AddClassManual = (props) => {
var mymetier = mytrainingmetier;
var mycategorie = mytrainingcategorie;
var version = p_detail_version_catalogue;
@ -2374,12 +2486,13 @@ const AddClassManual = (props) => {
formData.append('metier', mymetier);
formData.append('categorie', mycategorie);
formData.append('version', version);
formData.append('referentiel_padagogique_id', mytraining_ref_peda_id);
formData.append('recyclage_delai', p_detail_recyclage_delai);
formData.append('recyclage_periodicite', p_detail_recyclage_periodicite);
formData.append('recyclage_alert', p_detail_recyclage_alert);
formData.append('note', mynote);
formData.append('published', mypublier);
@ -2394,7 +2507,6 @@ const AddClassManual = (props) => {
formData.append('note_finale_calculation_rule_id', selected_class_note_calculation_id);
formData.append('contenu_attestation', contenu_attestation);
@ -2778,6 +2890,8 @@ const AddClassManual = (props) => {
const [mytrainingdomaine, setmytrainingdomaine] = useState("");
const [New_Get_List_Domaines_result, setNew_Get_List_Domaines_result] = useState([]);
const [Get_List_Domaines_api, setGet_List_Domaines_api] = useState();
@ -3939,7 +4053,7 @@ const AddClassManual = (props) => {
}
if (document.getElementById(current_menu)) {
document.getElementById(current_menu).style.backgroundColor = "#104277";
document.getElementById(current_menu).style.backgroundColor = "#107758";
document.getElementById(current_menu).style.color = "white";
document.getElementById(current_menu).style.fontWeight = "bold";
}
@ -4020,6 +4134,8 @@ const AddClassManual = (props) => {
const [p_detail_note, setp_detail_note] = useState("");
const [p_detail_price, setp_detail_price] = useState("");
const [p_detail_archive, setp_detail_archive] = useState("");
const [selected_ue_id, setselected_ue_id] = useState("");
const [selected_ue_credit_ects, setselected_ue_credit_ects] = useState("");
const [selected_ue_is_noted, setselected_ue_is_noted] = useState("");
@ -4040,6 +4156,8 @@ const AddClassManual = (props) => {
]
const New_Option_pres_dist_hyp = [
{ "id": "1", "label": "Distanciel", "value": "1" },
{ "id": "2", "label": "Hybride", "value": "2" },
@ -5382,7 +5500,7 @@ const AddClassManual = (props) => {
{props.formation_initiale && String(props.formation_initiale) === "1" &&
<div className="div_row" style={{ "border": "None", "marginLeft": '10px' }} ref={myRef}>
<div className="div_row" style={{ "border": "None", "marginLeft": '10px', marginBottom:'10px' }} ref={myRef}>
<Button variant="outlined" onClick={submenu_detail_formation} className="detail_class_submenu" id='detail_formation' name='detail_formation'>Détail Formation</Button>
<Button variant="outlined" onClick={submenu_unite_enseignement} className="detail_class_submenu" id='unite_enseignement' name='unite_enseignement'>Unite Enseign. </Button>
<Button variant="outlined" onClick={submenu_admission} className="detail_class_submenu" id='admission' name='admission'>Admission </Button>
@ -5409,8 +5527,6 @@ const AddClassManual = (props) => {
<Button variant="outlined" onClick={submenu_detail_formation} className="detail_class_submenu" id='detail_formation' name='detail_formation'>Détail Formation</Button>
<Button variant="outlined" onClick={submenu_piece_jointe} className="detail_class_submenu" id='piece_jointe' name='piece_jointe'>Pièces Jointes </Button>
</div>}
<br />
{submenu && String(submenu) === "unite_enseignement" &&
<div>
@ -5984,14 +6100,15 @@ const AddClassManual = (props) => {
{submenu && String(submenu) === "detail_formation" &&
<div>
&nbsp;
&nbsp;
{p_detail_archive && String(p_detail_archive) === "1" &&
<div class="block_archive"> Document Archivé </div>}
<div class="separator">
<nav className="separator_label">
Infos Générales </nav>
</div>
<div style={{ width: '100%', float: 'left', }}>
<div style={{
display: 'flex', flexDirection: 'row', justifyContent: 'flex-start', width: '95%', paddingLeft: '10px',
@ -6039,8 +6156,6 @@ const AddClassManual = (props) => {
</div>
<div className="training_caract">
<Autocomplete
disablePortal
@ -6191,62 +6306,7 @@ const AddClassManual = (props) => {
</div>
{/*<div className="training_caract">
<Autocomplete
disablePortal
name="presentiel"
id="presentiel"
className="disabled_style"
options={presentiel}
value={mypresence_label}
onChange={(event, value) => {
if (value && value.value) {
setmypresence(value.value);
setmypresence_label(value.label);
setdatamodification("1");
} else {
setmypresence("");
setmypresence_label("");
setdatamodification("1");
}
}}
renderInput={(params) => <TextField {...params} label="Présentiel" />
}
/>
</div>*/}
{/*<div className="training_caract">
<Autocomplete
disablePortal
name="distentiel"
id="distentiel"
className="disabled_style"
options={presentiel}
value={mydistance_label}
onChange={(event, value) => {
if (value && value.value) {
setmydistance(value.value);
setmydistance_label(value.label);
setdatamodification("1");
} else {
setmydistance("");
setmydistance_label("");
setdatamodification("1");
}
}}
renderInput={(params) => <TextField {...params} label="A distance" />
}
/>
</div>*/}
<div className="training_caract">
@ -6293,11 +6353,11 @@ const AddClassManual = (props) => {
value={New_Get_List_Domaines_result.filter((data) => (data)._id === String(mytrainingdomaine))[0].label}
onChange={(event, value) => {
setdatamodification("1");
if (value && value._id) {
setmytrainingdomaine(value._id);
setmytrainingmetier("");
setmytrainingcategorie("");
setdatamodification("1");
} else {
setmytrainingdomaine("");
setmytrainingmetier("");
@ -6408,7 +6468,6 @@ const AddClassManual = (props) => {
{(!mytrainingdomaine || String(mytrainingdomaine).trim().length <= 0 || String(mytrainingdomaine).trim() === "") && <div className="training_caract">
<Autocomplete
disablePortal
@ -6420,7 +6479,6 @@ const AddClassManual = (props) => {
value={mytrainingcategorie}
onChange={(event, value) => {
if (value && value._id) {
setmytrainingcategorie(value.metier);
@ -6439,6 +6497,34 @@ const AddClassManual = (props) => {
</div>}
{New_Getall_Parter_referentiel_padagogique_result && New_Getall_Parter_referentiel_padagogique_result.length > 0 && <div className="training_caract">
<Autocomplete
disablePortal
name="ref_peda"
id="ref_peda"
className="disabled_style"
options={New_Getall_Parter_referentiel_padagogique_result}
value={New_Getall_Parter_referentiel_padagogique_result.filter((data) => (data)._id === String(mytraining_ref_peda_id))[0].label}
onChange={(event, value) => {
setdatamodification("1");
if (value && value._id) {
setmytraining_ref_peda_id(value._id);
} else {
setmytraining_ref_peda_id("");
}
}}
renderInput={(params) => <TextField {...params} label="Référentiel" />
}
/>
</div>}
</div>
</div>
@ -6850,8 +6936,9 @@ const AddClassManual = (props) => {
}}
>
<DataGrid
// checkboxSelection
// checkboxSelection
onSelectionModelChange={(newSelectionModel) => {
setselectionModel_list_finance_data(newSelectionModel);
@ -6889,7 +6976,7 @@ const AddClassManual = (props) => {
var current_class_finance_data = New_Getall_Class_Finance_Caracteristic_result.filter((finance_data) => finance_data._id === String((newSelectionModel.row._id)))
// zzzzz
// console.log(" ### current_class_ue_data = ", current_class_finance_data);
setp_detail_fin_data_code(current_class_finance_data[0]['code']);
setp_detail_fin_data_description(current_class_finance_data[0]['description']);
@ -6934,7 +7021,7 @@ const AddClassManual = (props) => {
getRowClassName={(params) => {
// Pour la gestion de la couleur de zone double cliquée
if (String(params.row.id) === String(ue_gridline_id)) {
if (String(params.row.id) === String(finance_data_gridline_id)) {
return 'line--statut--selected';
}

View File

@ -228,7 +228,7 @@ const AddParnerClient = (props) => {
}
if (document.getElementsByName(String(current_menu_header)) && document.getElementsByName(String(current_menu_header))[0]) {
document.getElementsByName(String(current_menu_header))[0].style.background = "#104277";
document.getElementsByName(String(current_menu_header))[0].style.background = "#107758";
document.getElementsByName(String(current_menu_header))[0].style.color = "white";
}
@ -409,16 +409,16 @@ const AddParnerClient = (props) => {
if (String(submenu) === "submenu_donnee_client") {
document.getElementById("submenu_donnee_client").style.background = "#104277";
document.getElementById("submenu_donnee_client").style.background = "#107758";
document.getElementById("submenu_donnee_client").style.color = "white";
}
else if (String(submenu) === "submenu_donnees_facturation") {
document.getElementById("submenu_donnee_facturation").style.background = "#104277";
document.getElementById("submenu_donnee_facturation").style.background = "#107758";
document.getElementById("submenu_donnee_facturation").style.color = "white";
}
else if (String(submenu) === "submenu_piece_jointe") {
document.getElementById("submenu_piece_jointe").style.background = "#104277";
document.getElementById("submenu_piece_jointe").style.background = "#107758";
document.getElementById("submenu_piece_jointe").style.color = "white";
}

View File

@ -3468,7 +3468,7 @@ const Apprenant = (props) => {
}
if (document.getElementById(current_menu)) {
document.getElementById(current_menu).style.backgroundColor = "#104277";
document.getElementById(current_menu).style.backgroundColor = "#107758";
document.getElementById(current_menu).style.color = "white";
document.getElementById(current_menu).style.fontWeight = "bold";
}

View File

@ -63,7 +63,7 @@ const Article = (props) => {
<Button variant="contained" color="success"
style={{
'borderRadius': "10rem", "width": "100%",
"width": "60% !important", background: "#104277"
"width": "60% !important", background: "#107758"
}}
onClick={(e) => {
e.preventDefault();

View File

@ -1166,8 +1166,8 @@ function CheckOut(props) {
setnb_formations(event.target.value);
}
document.getElementById('div_nb_formation').style.color = "#104277";
document.getElementById('div_ttc').style.color = "#104277";
document.getElementById('div_nb_formation').style.color = "#107758";
document.getElementById('div_ttc').style.color = "#107758";
}

File diff suppressed because it is too large Load Diff

View File

@ -1382,7 +1382,7 @@ const DisplayPartnerStagiaires = (props) => {
setsubmenu("inscrit");
if (document.getElementById("inscrit")) {
document.getElementById("inscrit").style.backgroundColor = "#104277";
document.getElementById("inscrit").style.backgroundColor = "#107758";
document.getElementById("inscrit").style.color = "white";
}
@ -2555,7 +2555,7 @@ const DisplayPartnerStagiaires = (props) => {
if (document.getElementById("detail_session")) {
document.getElementById("detail_session").style.backgroundColor = "#104277";
document.getElementById("detail_session").style.backgroundColor = "#107758";
document.getElementById("detail_session").style.color = "white";
}
@ -2584,7 +2584,7 @@ const DisplayPartnerStagiaires = (props) => {
if (document.getElementById("piece_jointe")) {
document.getElementById("piece_jointe").style.backgroundColor = "#104277";
document.getElementById("piece_jointe").style.backgroundColor = "#107758";
document.getElementById("piece_jointe").style.color = "white";
}
@ -4569,6 +4569,7 @@ const DisplayPartnerStagiaires = (props) => {
//form.append("token","K3cw63eKokKSbV4spjQ48SUNnfy80yrXfA");
const stored_cookie = getCookie('tokenmysypart');
form.append("token", stored_cookie);
form.append("archive", "0");
var myurl = process.env.REACT_APP_API_URL + "myclass/api/get_partner_class/";
setLoading(true);

View File

@ -10,7 +10,7 @@ import fileDownload from 'js-file-download';
import 'reactjs-popup/dist/index.css';
import { AiFillCloseCircle, } from "react-icons/ai";
import parse from 'html-react-parser'
import { BsEye, BsFileText } from "react-icons/bs";
import { BsEye } from "react-icons/bs";
import { useHistory } from "react-router-dom";
import axios from "axios";
import img_loading_spin from "./../mysy_img/mysy_spin_loading.gif";
@ -20,7 +20,7 @@ import InputAdornment from '@mui/material/InputAdornment';
import Box from '@mui/material/Box';
import 'react-tooltip/dist/react-tooltip.css'
import { Tooltip } from 'react-tooltip'
import { FcAcceptDatabase, } from "react-icons/fc";
import { FcAcceptDatabase, } from "react-icons/fc";
import Dialog from '@mui/material/Dialog';
import DialogActions from '@mui/material/DialogActions';
import DialogContent from '@mui/material/DialogContent';
@ -377,11 +377,6 @@ const DistplayPartnerTraningsPage = (props) => {
}
else {
setmyApiResponse("True");
}
}).catch((error) => {
@ -570,12 +565,27 @@ const DistplayPartnerTraningsPage = (props) => {
{ field: 'cible', headerName: 'Cible', hide: true, Width: 0, },
{ field: 'duration_unit', headerName: 'duration_unit', hide: true, Width: 0, editable: false, },
{ field: 'duration_in_hour', headerName: 'duration_in_hour', hide: true, Width: 0, editable: false, },
{ field: 'currency', headerName: 'currency', hide: true, Width: 0, editable: false, },
{ field: 'currency', headerName: 'Devise', hide: true, Width: 0, editable: false, },
{
field: 'archive', headerName: 'Archivé', hide: true, Width: 50, editable: false, renderCell: (cellValues) => {
return (
<div style={{ paddingLeft: "5px", paddingRight: "10px", "display": "block", wordBreak: "break-all" }}>
{String(cellValues.row.archive) === "1" && "Oui"}&nbsp;
{String(cellValues.row.archive) !== "1" && "Non"}&nbsp;
</div>
);
},
},
{ field: 'zone_diffusion', headerName: 'zone_diffusion', hide: true, maxWidth: 1, editable: false, },
{ field: 'internal_url', headerName: 'internal_url', hide: true, editable: false, },
{ field: 'external_code', headerName: 'Code Formation', minWidth: 150, flex: 1, maxWidth: 250, editable: false, renderCell: (params) => <ExpandableCell_50 {...params} />, },
{ field: 'title', headerName: 'Titre', minWidth: 300, flex: 1, editable: false, renderCell: (params) => <Display_Colunm_text {...params} />, },
{ field: 'referentiel_padagogique', headerName: 'Réferentiel Ped.', minWidth: 100, flex: 1, maxWidth: 200, hideable: true, hide: false, editable: false, renderCell: (params) => <Display_Colunm_text {...params} />, },
{ field: 'domain', headerName: 'Domaine', minWidth: 100, flex: 1, maxWidth: 200, hideable: true, editable: false, renderCell: (params) => <Display_Colunm_text {...params} />, },
{ field: 'metier', headerName: 'Métier', minWidth: 100, flex: 1, maxWidth: 200, hideable: true, hide: true, editable: false, renderCell: (params) => <Display_Colunm_text {...params} />, },
@ -639,7 +649,6 @@ const DistplayPartnerTraningsPage = (props) => {
renderCell: (cellValues) => {
return (
<div style={{ paddingLeft: "5px", paddingRight: "10px", "display": "block", wordBreak: "break-all" }}>
{String(cellValues.row.published) === "1" && "Oui"}&nbsp;
{String(cellValues.row.published) !== "1" && "Non"}&nbsp;
@ -676,219 +685,219 @@ const DistplayPartnerTraningsPage = (props) => {
return (
<div>
{(!cellValues.row.lms_class_code || String(cellValues.row.lms_class_code).length <= 2) &&
<nav style={{ width: '100%', 'textAlign': 'center' }}>
<IconButton
aria-label="more"
id="long-button"
aria-controls={open ? 'long-menu_p' : undefined}
aria-expanded={open ? 'true' : undefined}
aria-haspopup="true"
// onClick={handleClick_option_button_vertical}
onClick={(e) => {
handleClick_option_button_vertical(e);
setworking_cellValues(cellValues);
{(!cellValues.row.lms_class_code || String(cellValues.row.lms_class_code).length <= 2) &&
<nav style={{ width: '100%', 'textAlign': 'center' }}>
<IconButton
aria-label="more"
id="long-button"
aria-controls={open ? 'long-menu_p' : undefined}
aria-expanded={open ? 'true' : undefined}
aria-haspopup="true"
// onClick={handleClick_option_button_vertical}
onClick={(e) => {
handleClick_option_button_vertical(e);
setworking_cellValues(cellValues);
}}
}}
>
<MoreVertIcon />
</IconButton>
<Menu
id="long-menu_p"
MenuListProps={{
'aria-labelledby': 'long-button',
}}
anchorEl={anchorEl}
open={open}
onClose={handleClose_option_button_vertical}
slotProps={{
paper: {
style: {
maxHeight: ITEM_HEIGHT * 4.5,
width: '20ch',
boxShadow: "-3px 4px 0px -30px #000000",
borderRadius: '0px !important',
lineHeight: '3rem'
>
<MoreVertIcon />
</IconButton>
<Menu
id="long-menu_p"
MenuListProps={{
'aria-labelledby': 'long-button',
}}
anchorEl={anchorEl}
open={open}
onClose={handleClose_option_button_vertical}
slotProps={{
paper: {
style: {
maxHeight: ITEM_HEIGHT * 4.5,
width: '20ch',
boxShadow: "-3px 4px 0px -30px #000000",
borderRadius: '0px !important',
lineHeight: '3rem'
},
},
},
}}
>
{options_menu_vertical.map((option) => (
<MenuItem key={option}
}}
>
{options_menu_vertical.map((option) => (
<MenuItem key={option}
onClick={(e) => {
//handleClose_option_button_vertical(e, option);
setAnchorEl(null);
onClick={(e) => {
//handleClose_option_button_vertical(e, option);
setAnchorEl(null);
if (option && String(option) === "Supprimer") {
setdialogOpen_supp(true);
}
if (option && String(option) === "Supprimer") {
setdialogOpen_supp(true);
}
else if (option && String(option) === "Editer") {
handleClick(e, working_cellValues);
}
else if (option && String(option) === "Editer") {
handleClick(e, working_cellValues);
}
else if (option && String(option) === "Pubier E-Learning") {
setdialogOpen_push_lms(true);
}
else if (option && String(option) === "Pubier E-Learning") {
setdialogOpen_push_lms(true);
}
else if (option && String(option) === "Visualiser") {
Visualiser(e, working_cellValues);
}
else if (option && String(option) === "Visualiser") {
Visualiser(e, working_cellValues);
}
}}
>
{option}
</MenuItem>
))}
</Menu>
}}
>
{option}
</MenuItem>
))}
</Menu>
{/*** GESTION Dialog menu item pour suppression */}
{dialogOpen_supp && <Dialog
open={dialogOpen_supp}
className="displaypartnersession"
static
onClose={() => null}
{/*** GESTION Dialog menu item pour suppression */}
{dialogOpen_supp && <Dialog
open={dialogOpen_supp}
className="displaypartnersession"
static
onClose={() => null}
PaperProps={{
className: classes.paper, // Apply the paper style
style: {
overflowY: 'unset',
// position: 'absolute',
top: '7rem',
margin: "2px",
boxShadow: "-3px 4px 0px -30px #000000",
},
}}
hideBackdrop={true}
disableScrollLock
classes={{
paper: classes.dialog
}}
PaperProps={{
className: classes.paper, // Apply the paper style
style: {
overflowY: 'unset',
// position: 'absolute',
top: '7rem',
margin: "2px",
boxShadow: "-3px 4px 0px -30px #000000",
},
}}
hideBackdrop={true}
disableScrollLock
classes={{
paper: classes.dialog
}}
PaperComponent={PaperComponent}
aria-labelledby="draggable-dialog-title"
>
PaperComponent={PaperComponent}
aria-labelledby="draggable-dialog-title"
>
<DialogContent className="DialogContent_width">
<DialogContent className="DialogContent_width">
<div>
<button className="gest_close" onClick={Dialog_menuitem_close_supp}>
&times;
</button>
<div className="gest_header"> MySy Information </div>
<div className="gest_content">
{' '}
<div>
<button className="gest_close" onClick={Dialog_menuitem_close_supp}>
&times;
</button>
<div className="gest_header"> MySy Information </div>
<div className="gest_content">
{' '}
En confirmant cette opération, la formation sera <i><font color="red"> définitivement supprimée</font></i>. <br />
Avant, assurez-vous de n'avoir aucune session rattachée à la formation.
</div>
<div className="gest_actions">
<div style={{ "width": "45%", "float": "left" }}>
<button className="gest_bton_popup" onClick={(event) => {
handleClick_delete(event, working_cellValues);
Dialog_menuitem_close_supp();
}}> Valider </button>
En confirmant cette opération, la formation sera <i><font color="red"> définitivement supprimée</font></i>. <br />
Avant, assurez-vous de n'avoir aucune session rattachée à la formation.
</div>
<div style={{ "width": "45%", "float": "right" }}>
<button
className="gest_bton_popup"
onClick={() => {
console.log('modal closed ');
<div className="gest_actions">
<div style={{ "width": "45%", "float": "left" }}>
<button className="gest_bton_popup" onClick={(event) => {
handleClick_delete(event, working_cellValues);
Dialog_menuitem_close_supp();
}}
>
Annuler
</button>
}}> Valider </button>
</div>
<div style={{ "width": "45%", "float": "right" }}>
<button
className="gest_bton_popup"
onClick={() => {
console.log('modal closed ');
Dialog_menuitem_close_supp();
}}
>
Annuler
</button>
</div>
</div>
</div>
</div>
</DialogContent>
</DialogContent>
<DialogActions>
</DialogActions>
<DialogActions>
</DialogActions>
</Dialog>}
{/*** FIN GESTION Dialog menu item pour suppression*/}
</Dialog>}
{/*** FIN GESTION Dialog menu item pour suppression*/}
{/*** GESTION Dialog menu item pour push lms */}
{dialogOpen_push_lms && <Dialog
open={dialogOpen_push_lms}
className="displaypartnersession"
static
onClose={() => null}
{/*** GESTION Dialog menu item pour push lms */}
{dialogOpen_push_lms && <Dialog
open={dialogOpen_push_lms}
className="displaypartnersession"
static
onClose={() => null}
PaperProps={{
className: classes.paper, // Apply the paper style
style: {
overflowY: 'unset',
// position: 'absolute',
top: '7rem',
margin: "2px",
boxShadow: "-3px 4px 0px -30px #000000",
},
}}
hideBackdrop={true}
disableScrollLock
classes={{
paper: classes.dialog
}}
PaperProps={{
className: classes.paper, // Apply the paper style
style: {
overflowY: 'unset',
// position: 'absolute',
top: '7rem',
margin: "2px",
boxShadow: "-3px 4px 0px -30px #000000",
},
}}
hideBackdrop={true}
disableScrollLock
classes={{
paper: classes.dialog
}}
PaperComponent={PaperComponent}
aria-labelledby="draggable-dialog-title"
>
PaperComponent={PaperComponent}
aria-labelledby="draggable-dialog-title"
>
<DialogContent className="DialogContent_width">
<DialogContent className="DialogContent_width">
<div>
<button className="gest_close" onClick={Dialog_menuitem_close_push_lms}>
&times;
</button>
<div className="gest_header"> MySy Information </div>
<div className="gest_content">
{' '}
<div>
<button className="gest_close" onClick={Dialog_menuitem_close_push_lms}>
&times;
</button>
<div className="gest_header"> MySy Information </div>
<div className="gest_content">
{' '}
/!\ Important : Confirmer la publication de la formation dans l'eapce E-Learning.
Vous allez écraser d'eventuelles informations déjà présente dans le e-Learning, pour cette formation.
</div>
<div className="gest_actions">
<div style={{ "width": "45%", "float": "left" }}>
<button className="gest_bton_popup" onClick={(event) => {
handlepush_to_lms(event, working_cellValues);
Dialog_menuitem_close_push_lms();
}}> Valider </button>
/!\ Important : Confirmer la publication de la formation dans l'eapce E-Learning.
Vous allez écraser d'eventuelles informations déjà présente dans le e-Learning, pour cette formation.
</div>
<div style={{ "width": "45%", "float": "right" }}>
<button
className="gest_bton_popup"
onClick={() => {
console.log('modal closed ');
<div className="gest_actions">
<div style={{ "width": "45%", "float": "left" }}>
<button className="gest_bton_popup" onClick={(event) => {
handlepush_to_lms(event, working_cellValues);
Dialog_menuitem_close_push_lms();
}}
>
Annuler
</button>
}}> Valider </button>
</div>
<div style={{ "width": "45%", "float": "right" }}>
<button
className="gest_bton_popup"
onClick={() => {
console.log('modal closed ');
Dialog_menuitem_close_push_lms();
}}
>
Annuler
</button>
</div>
</div>
</div>
</div>
</DialogContent>
</DialogContent>
<DialogActions>
</DialogActions>
<DialogActions>
</DialogActions>
</Dialog>}
{/*** FIN GESTION Dialog menu item pour push lms*/}
</Dialog>}
{/*** FIN GESTION Dialog menu item pour push lms*/}
</nav>}
</nav>}
{cellValues.row.lms_class_code && String(cellValues.row.lms_class_code).length > 2 && <nav style={{ width: '100%', 'textAlign': 'center' }}>
<IconButton
aria-label="more"
@ -1892,6 +1901,7 @@ const DistplayPartnerTraningsPage = (props) => {
Get_List_Domaines();
Get_List_Metiers();
Get_List_Categorie();
Getall_Parter_referentiel_padagogique();
Get_Partner_Object_Specific_Fields("myclass");
@ -1934,6 +1944,93 @@ const DistplayPartnerTraningsPage = (props) => {
}, []);
const [New_Getall_Parter_referentiel_padagogique_result, setNew_Getall_Parter_referentiel_padagogique_result] = useState([]);
const [Getall_Parter_referentiel_padagogique_api, setGetall_Parter_referentiel_padagogique_api] = useState();
const [Getall_Parter_referentiel_padagogique_message, setGetall_Parter_referentiel_padagogique_message] = useState();
const [Getall_Parter_referentiel_padagogique_result, setGetall_Parter_referentiel_padagogique_result] = useState([]);
function Getall_Parter_referentiel_padagogique(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_Ref_Pedagogique_no_filter/";
setLoading(true);
axios.post(myurl, form).then(res => {
setLoading(false);
if (String(res.data.status) === String("true")) {
//console.log(" In Getall_Parter_referentiel_padagogique res.data.status = " + res.data.status);
//console.log(" In Getall_Parter_referentiel_padagogique res.data.message r_class = " + res.data.message);
setGetall_Parter_referentiel_padagogique_api("true");
setGetall_Parter_referentiel_padagogique_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_commentaire = JSON.parse(x).commentaire;
var local_code = JSON.parse(x).code;
var local_description = JSON.parse(x).description;
//---
var node = {
"_id": local_id,
"id": localid,
"label": local_code,
"commentaire": local_commentaire,
"code": local_code,
"description": local_description,
};
new_data2.push(node);
});
//---
var node = {
"_id": "",
"id": "",
"label": "",
"commentaire": "",
"code": "",
"description": "",
};
new_data2.push(node);
if (new_data2.length > 0)
setNew_Getall_Parter_referentiel_padagogique_result(new_data2);
}
else {
setGetall_Parter_referentiel_padagogique_api("false");
setGetall_Parter_referentiel_padagogique_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_referentiel_padagogique = ', error);
setGetall_Parter_referentiel_padagogique_api("false");
alert(" Impossible de recuperer la liste des référentiels pédagogiques");
//setmyApimyApiMessage("")
})
}
function Clearselectedfilt1() {
setselectedfilt1("");
}
@ -2313,7 +2410,8 @@ const DistplayPartnerTraningsPage = (props) => {
const New_Option_Filter = [
{ "id": "external_code", "label": "Code externe formation", "value": "external_code" },
{ "id": "title", "label": "Titre Formation ", "value": "title" },
{ "id": "certif", "label": "Certifiée", "value": "certif" },
{ "id": "certif", "label": "Certifiante", "value": "certif" },
{ "id": "archive", "label": "Archive", "value": "archive" },
{ "id": "", "label": "", "value": "" },
{ "id": "1", "label": "", "value": "1" }, // Cette ligne pour couvrir l'ajout d'une ligne de filter. C'est fait expres.
]
@ -2495,6 +2593,14 @@ const DistplayPartnerTraningsPage = (props) => {
setdisplay_alert_mysy("");
}
const New_Option_Is_archive = [
{ "id": "1", "label": "Oui", "value": "1" },
{ "id": "0", "label": "Non", "value": "0" },
{ "id": "2", "label": "Tout", "value": "2" },
{ "id": "", "label": "", "value": "" },
]
return (
<div className='displaypartnertrainingpagination'>
@ -2713,7 +2819,7 @@ const DistplayPartnerTraningsPage = (props) => {
</div>
}
<h3 style={{ fontFamily:'DM Sans' }}> Mes formations </h3>
<h3 style={{ fontFamily: 'DM Sans' }}> Mes formations </h3>
<div className="titre1"> Utilisez les filtres !</div>
<div className="div_row" style={{ "marginBottom": "5px" }}>
<div className="div_row_gauche texte_area_filter" >
@ -2738,23 +2844,9 @@ const DistplayPartnerTraningsPage = (props) => {
/>
}
/>}
{/*<TextField
name="filtre1"
label="Choisir un champ"
select
sx={{ m: 1, width: '100%' }}
value={p_filtre1}
onChange={(e) => {
setp_filtre1(e.target.value)
}}
>
<MenuItem value="external_code" style={{ "paddingLeft": "5px", "textAlign": "left", "width": "100%" }}>Code externe formation &nbsp;&nbsp;</MenuItem>
<MenuItem value="title" style={{ "paddingLeft": "5px", "textAlign": "left", "width": "100%" }} >Titre Formation &nbsp;</MenuItem>
<MenuItem value="certif" style={{ "paddingLeft": "5px", "textAlign": "left", "width": "100%" }} >Certifiée &nbsp;</MenuItem>
</TextField>*/}
</div>
<div className="div_row_droite texte_area_filter_value" >
{String(p_filtre1) !== "archive" && <div className="div_row_droite texte_area_filter_value" >
{p_filtre1 &&
<TextField
sx={{ '& legend': { display: 'none' }, '& fieldset': { top: 0 }, }}
@ -2784,7 +2876,38 @@ const DistplayPartnerTraningsPage = (props) => {
/>
}
</div>
</div>}
{String(p_filtre1) === "archive" && <div className="div_row_droite texte_area_filter_value" >
{p_filtre1 &&
<Autocomplete
disablePortal
name="filtre1_value"
id="filtre1_value"
value={New_Option_Is_archive.filter((data) => (data).id === String(p_filtre1_value))[0].label}
className="disabled_style"
options={New_Option_Is_archive}
onChange={(event, value) => {
if (value && value.value) {
setp_filtre1_value(value.value);
} else {
setp_filtre1_value("");
}
}}
renderInput={(params) => <TextField {...params} label="" placeholder="Choisir une option"
inputProps={{ ...params.inputProps, style: { fontSize: 12, height: "1.4rem" } }}
/>}
/>
}
</div>}
{p_filtre1 && <div className='filter_bton_add'>
<Tooltip className="tooltip_css" id="my-tooltip01" style={{ "fontSize": "12px" }} />
<a data-tooltip-id="my-tooltip01" data-tooltip-html="Ajouter une nouvelle ligne de filtre">
@ -2830,26 +2953,10 @@ const DistplayPartnerTraningsPage = (props) => {
/>
}
/>}
{/*<TextField
name="filtre2"
label="Choisir un champ"
select
sx={{ m: 1, width: '100%' }}
options={filters}
value={p_filtre2}
onChange={(e) => {
setp_filtre2(e.target.value)
}}
>
<MenuItem value="external_code" style={{ "paddingLeft": "5px", "textAlign": "left", "width": "100%" }}>Code externe formation &nbsp;&nbsp;</MenuItem>
<MenuItem value="title" style={{ "paddingLeft": "5px", "textAlign": "left", "width": "100%" }} >Titre Formation &nbsp;</MenuItem>
<MenuItem value="certif" style={{ "paddingLeft": "5px", "textAlign": "left", "width": "100%" }} >Certifiée &nbsp;</MenuItem>
</TextField>*/}
</div>
<div className="div_row_droite texte_area_filter_value" style={{ "marginTop": "0.5rem" }}>
{String(p_filtre2).length > 3 &&
{String(p_filtre2).length > 3 && String(p_filtre2) !== "archive" &&
<TextField
sx={{ '& legend': { display: 'none' }, '& fieldset': { top: 0 }, }}
required
@ -2876,6 +2983,29 @@ const DistplayPartnerTraningsPage = (props) => {
}}
/>}
{String(p_filtre2).length > 3 && String(p_filtre2) === "archive" &&
<Autocomplete
disablePortal
name="filtre2_value"
id="filtre2_value"
value={New_Option_Is_archive.filter((data) => (data).id === String(p_filtre2_value))[0].label}
className="disabled_style"
options={New_Option_Is_archive}
onChange={(event, value) => {
if (value && value.value) {
setp_filtre2_value(value.value);
} else {
setp_filtre2_value("");
}
}}
renderInput={(params) => <TextField {...params} label="" placeholder="Choisir une option"
inputProps={{ ...params.inputProps, style: { fontSize: 12, height: "1.4rem" } }}
/>}
/>}
</div>
{String(p_filtre2).length > 3 && <div className='filter_bton_add' >
@ -2931,26 +3061,10 @@ const DistplayPartnerTraningsPage = (props) => {
}
/>}
{/* <TextField
name="filtre3"
label="Choisir un champ"
select
sx={{ m: 1, width: '100%' }}
options={filters}
value={p_filtre3}
onChange={(e) => {
setp_filtre3(e.target.value)
}}
>
<MenuItem value="external_code" style={{ "paddingLeft": "5px", "textAlign": "left", "width": "100%" }}>Code externe formation &nbsp;&nbsp;</MenuItem>
<MenuItem value="title" style={{ "paddingLeft": "5px", "textAlign": "left", "width": "100%" }} >Titre Formation &nbsp;</MenuItem>
<MenuItem value="certif" style={{ "paddingLeft": "5px", "textAlign": "left", "width": "100%" }} >Certifiée &nbsp;</MenuItem>
</TextField>*/}
</div>
<div className="div_row_droite texte_area_filter_value" style={{ "marginTop": "0.5rem" }}>
{String(p_filtre3).length > 3 &&
{String(p_filtre3).length > 3 && String(p_filtre3) !== "archive" &&
<TextField
sx={{ '& legend': { display: 'none' }, '& fieldset': { top: 0 }, }}
required
@ -2977,6 +3091,30 @@ const DistplayPartnerTraningsPage = (props) => {
}}
/>}
{String(p_filtre3).length > 3 && String(p_filtre3) === "archive" &&
<Autocomplete
disablePortal
name="filtre2_value"
id="filtre2_value"
value={New_Option_Is_archive.filter((data) => (data).id === String(p_filtre3_value))[0].label}
className="disabled_style"
options={New_Option_Is_archive}
onChange={(event, value) => {
if (value && value.value) {
setp_filtre3_value(value.value);
} else {
setp_filtre3_value("");
}
}}
renderInput={(params) => <TextField {...params} label="" placeholder="Choisir une option"
inputProps={{ ...params.inputProps, style: { fontSize: 12, height: "1.4rem" } }}
/>}
/>
}
</div>
{String(p_filtre3).length > 3 && <div className='filter_bton_add'>
@ -3131,6 +3269,7 @@ const DistplayPartnerTraningsPage = (props) => {
categorie: New_Get_List_Categorie_result.filter((data) => (data)._id === String(JSON.parse(item).categorie))[0].label,
referentiel_padagogique: New_Getall_Parter_referentiel_padagogique_result.filter((data) => (data)._id === String(JSON.parse(item).referentiel_padagogique_id))[0].label,
url: JSON.parse(item).url,
@ -3145,6 +3284,7 @@ const DistplayPartnerTraningsPage = (props) => {
distanciel: JSON.parse(item).presentiel.distantiel,
cible: JSON.parse(item).pourqui,
currency: JSON.parse(item).currecny,
archive: JSON.parse(item).archive,
version: JSON.parse(item).version,

View File

@ -1679,7 +1679,7 @@ const DisplayPartnerUnite_Enseignement = (props) => {
}
if (document.getElementById(current_menu)) {
document.getElementById(current_menu).style.backgroundColor = "#104277";
document.getElementById(current_menu).style.backgroundColor = "#107758";
document.getElementById(current_menu).style.color = "white";
document.getElementById(current_menu).style.fontWeight = "bold";
}

View File

@ -3475,7 +3475,7 @@ const Employes = (props) => {
}
if (document.getElementById(current_menu)) {
document.getElementById(current_menu).style.backgroundColor = "#104277";
document.getElementById(current_menu).style.backgroundColor = "#107758";
document.getElementById(current_menu).style.color = "white";
document.getElementById(current_menu).style.fontWeight = "bold";
}

View File

@ -6,33 +6,18 @@ import Button from '@mui/material/Button';
import axios from "axios";
import { getCookie, setCookie } from 'react-use-cookie';
import { useHistory } from "react-router-dom";
import CheckOut from "./CheckOut";
import { DataGrid, GridToolbar, frFR } from '@mui/x-data-grid';
import { DataGrid, 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 } from "react-icons/fc";
import { FcPodiumWithAudience } from "react-icons/fc";
import { FcInfo } from "react-icons/fc";
import { LiaDharmachakraSolid } from "react-icons/lia";
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 { FcCancel, FcApproval, FcAcceptDatabase, FcPrint, FcCheckmark } from "react-icons/fc";
import DatePicker from "react-datepicker";
import { FcAcceptDatabase} from "react-icons/fc";
import "react-datepicker/dist/react-datepicker.css";
import { format } from 'date-fns'
import moment from "moment";
import InputAdornment from '@mui/material/InputAdornment';
import { AiFillCloseCircle } 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';
@ -40,29 +25,18 @@ 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 ColorPicker from 'react-pick-color';
import Visibility from '@mui/icons-material/Visibility';
import VisibilityOff from '@mui/icons-material/VisibilityOff';
import { Fab } from "@material-ui/core";
import { IoMdAddCircle, IoIosRemoveCircleOutline } from "react-icons/io";
import { AiTwotoneEdit, AiTwotoneSave } from "react-icons/ai";
import { AiTwotoneSave } from "react-icons/ai";
import Autocomplete from '@mui/material/Autocomplete';
import img_loading_spin from "./../mysy_img/mysy_spin_loading.gif";
import Chip from "@mui/material/Chip";
import { gridClasses } from '@mui/x-data-grid';
import Link from '@mui/material/Link';
import { PiDotsThree } from "react-icons/pi";
import { IoAddCircleOutline, IoCloseCircleOutline } from "react-icons/io5";
import Rating from '@mui/material/Rating';
import Module_Selection_Evaluation_Apprenants from "./Module_Selection_Evaluation_Apprenants";
import AttachFileIcon from '@mui/icons-material/AttachFile';
import Module_Selection_Apprenants from "./Module_Selection_Apprenants";
import { FcAlarmClock, FcMultipleSmartphones, FcWorkflow } from "react-icons/fc";
import Module_Alert_Confirmation from "./Module_Alert_Confirmation";
import Module_Historique_Action from "./Module_Historique_Action";
import { makeStyles } from "@material-ui/core/styles";
import CancelPresentationIcon from '@mui/icons-material/CancelPresentation';
import { IconButton } from '@material-ui/core';
@ -73,13 +47,11 @@ import {
GridToolbarFilterButton, GridToolbarDensitySelector, GridToolbarExportContainer, useGridApiContext,
gridFilteredSortedRowIdsSelector,
gridVisibleColumnFieldsSelector,
GridValueGetterParams,
GridPreferencePanelsValue,
} from '@mui/x-data-grid';
import * as XLSX from 'xlsx';
import { ReactReduxContext } from "react-redux";
import { RestaurantMenu } from "@mui/icons-material";
function PaperComponent(props) {
return (
@ -1148,7 +1120,7 @@ const Equipe_Team = (props) => {
if (document.getElementsByName(String(current_menu_header)) && document.getElementsByName(String(current_menu_header))[0]) {
document.getElementsByName(String(current_menu_header))[0].style.fontWeight = "700";
document.getElementsByName(String(current_menu_header))[0].style.backgroundColor = "#104277";
document.getElementsByName(String(current_menu_header))[0].style.backgroundColor = "#107758";
document.getElementsByName(String(current_menu_header))[0].style.color = "white";
}
}

View File

@ -851,7 +851,7 @@ function GestionAdministrative(props) {
setCreateSessionFormation_api();
setdisplay_detail_insc();
document.getElementById('menu_preinscrit').style.background = "#104277";
document.getElementById('menu_preinscrit').style.background = "#107758";
document.getElementById('menu_preinscrit').style.color = "#ffffff";
document.getElementById('menu_inscrit').style.background = "#d8edfc";
@ -877,7 +877,7 @@ function GestionAdministrative(props) {
setCreateSessionFormation_api();
document.getElementById('menu_inscrit').style.background = "#104277";
document.getElementById('menu_inscrit').style.background = "#107758";
document.getElementById('menu_inscrit').style.color = "#ffffff";
document.getElementById('menu_preinscrit').style.background = "#d8edfc";
@ -910,7 +910,7 @@ function GestionAdministrative(props) {
setCreateSessionFormation_api();
setdisplay_detail_insc();
document.getElementById('menu_emarge').style.background = "#104277";
document.getElementById('menu_emarge').style.background = "#107758";
document.getElementById('menu_emarge').style.color = "#ffffff";
document.getElementById('menu_preinscrit').style.background = "#d8edfc";
@ -932,7 +932,7 @@ function GestionAdministrative(props) {
setCreateSessionFormation_api();
setdisplay_detail_insc();
document.getElementById('menu_eval').style.background = "#104277";
document.getElementById('menu_eval').style.background = "#107758";
document.getElementById('menu_eval').style.color = "#ffffff";
document.getElementById('menu_preinscrit').style.background = "#d8edfc";

View File

@ -914,7 +914,7 @@ const Groupe_Apprenant = (props) => {
if (document.getElementsByName(String(current_menu_header)) && document.getElementsByName(String(current_menu_header))[0]) {
document.getElementsByName(String(current_menu_header))[0].style.fontWeight = "700";
document.getElementsByName(String(current_menu_header))[0].style.backgroundColor = "#104277";
document.getElementsByName(String(current_menu_header))[0].style.backgroundColor = "#107758";
document.getElementsByName(String(current_menu_header))[0].style.color = "white";
}
}

View File

@ -25,7 +25,7 @@ import { IoAddCircleOutline, IoCloseCircleOutline } from "react-icons/io5";
import Rating from '@mui/material/Rating';
import parse from 'html-react-parser'
import Autocomplete from '@mui/material/Autocomplete';
import Module_Alert_Confirmation from "./Module_Alert_Confirmation";
function Inscription_Information(props) {
@ -110,7 +110,10 @@ function Inscription_Information(props) {
var nom = document.getElementsByName("nom")[0].value;
if (String(nom).trim().length <= 0) {
document.getElementsByName("nom")[0].style.borderColor = "red";
alert(" Le nom d'utilisateur est obligatoire 3");
setdisplay_alert_mysy("1");
setalert_message("Le nom est obligatoire");
setalert_type("error")
return;
}
@ -123,8 +126,11 @@ function Inscription_Information(props) {
var prenom = document.getElementsByName("prenom")[0].value;
if (String(prenom).trim().length <= 0) {
document.getElementsByName("telephone")[0].style.borderColor = "red";
alert(" Le prenom d'utilisateur est obligatoire ");
document.getElementsByName("prenom")[0].style.borderColor = "red";
setdisplay_alert_mysy("1");
setalert_message("Le prenom est obligatoire");
setalert_type("error")
return;
}
@ -132,15 +138,19 @@ function Inscription_Information(props) {
var telephone = document.getElementsByName("telephone")[0].value;
if (String(telephone).trim().length < 10) {
document.getElementsByName("telephone")[0].style.borderColor = "red";
alert(" Le numero de telephone doit comporter 10 chiffres ");
setdisplay_alert_mysy("1");
setalert_message("Le numero de telephone doit comporter 10 chiffres");
setalert_type("error")
return;
}
var email = document.getElementsByName("email")[0].value;
var re2 = /\S+@\S+\.\S+/;
if (re2.test(email) === false) {
alert("L'email est incorrect ");
document.getElementsByName("email")[0].style.borderColor = "red";
setdisplay_alert_mysy("1");
setalert_message("L'adresse email est incorrect");
setalert_type("error")
return;
}
@ -148,7 +158,9 @@ function Inscription_Information(props) {
var modefinancement = document.getElementById('modefinancement').value;
if (String(modefinancement).trim().length <= 0) {
alert("Vous devez choisir une mode de financement ");
setdisplay_alert_mysy("1");
setalert_message("Vous devez choisir une mode de financemen");
setalert_type("error")
return;
}
@ -156,14 +168,19 @@ function Inscription_Information(props) {
if (document.getElementById('opco') && document.getElementById('opco').value) {
opco = document.getElementById('opco').value;
if (String(opco).trim().length <= 0) {
alert("Vous devez choisir un centre Opco ");
setdisplay_alert_mysy("1");
setalert_message("Vous devez choisir un centre Opco");
setalert_type("error")
return;
}
}
var session = mysession;
if (String(nom).trim().length <= 0) {
alert(" Le nom d'utilisateur est obligatoire 2 ");
setdisplay_alert_mysy("1");
setalert_message("Le nom est obligatoire");
setalert_type("error")
return;
}
@ -217,9 +234,20 @@ function Inscription_Information(props) {
setRecordData_api(result['status']);
setRecordData_status(result['status']);
setRecordData_message(result['message']);
window.scrollTo({
top: 0,
behavior: "smooth",
});
if (String(result['status']) === "true") {
alert("Votre demande d'inscription a bien été prise en compte. Vous allez recevoir une email de confirmation dans votre boite email. Merci.");
setdisplay_alert_mysy("1");
setalert_message("Votre demande d'inscription a bien été prise en compte. Vous allez recevoir une email de confirmation dans votre boite email. Merci.");
setalert_type("success");
} else {
setdisplay_alert_mysy("1");
setalert_message(result['message']);
setalert_type("error")
}
})
@ -322,7 +350,7 @@ function Inscription_Information(props) {
CheckEvaluationToken();
// setclass_sales_price(props.trainig_price);
// setclass_sales_price(props.trainig_price);
}
@ -466,10 +494,10 @@ function Inscription_Information(props) {
function SendInformationRequest() {
const formData = new FormData();
const url = process.env.REACT_APP_API_URL + "myclass/api/RenseignementClass/";
const url = process.env.REACT_APP_API_URL + "myclass/api/RenseignementClass/";
if (is_company === "0") {
var nom = valnom_info;
//console.log(" nom = ", nom, );
if (String(nom).trim().length <= 0) {
@ -508,7 +536,7 @@ function Inscription_Information(props) {
}
}
var message = "";
if (editorRef_description.current) {
message = editorRef_description.current.getContent();
@ -532,7 +560,7 @@ function Inscription_Information(props) {
formData.append('class_sales_price', class_sales_price);
formData.append('is_company', is_company);
@ -884,9 +912,36 @@ function Inscription_Information(props) {
const [civilite_stagiaire, setcivilite_stagiaire] = useState("");
const [display_alert_mysy, setdisplay_alert_mysy] = useState("");
const [alert_message, setalert_message] = useState("");
const [alert_type, setalert_type] = useState("");
function clear_alert_message() {
setalert_message("");
}
function clear_alert_type() {
setalert_type("");
}
function clear_display_alert_mysy() {
setdisplay_alert_mysy("");
}
return (
<div className='inscription'>
{/*** Affichage des messages d'alerte*/}
{display_alert_mysy && String(display_alert_mysy) === "1" &&
<Module_Alert_Confirmation alert_message={alert_message}
alert_type={alert_type}
clear_alert_message={clear_alert_message}
clear_alert_type={clear_alert_type}
clear_display_alert_mysy={clear_display_alert_mysy}
/>
}
{/*** FIN Affichage des messages d'alerte*/}
{String(RecordData_status) === "true" &&
String(action).toLocaleLowerCase() === "inscription" &&
<div className="okUpdateData">
@ -905,7 +960,6 @@ function Inscription_Information(props) {
</div>}
{(String(RecordData_status) === "false" ||
String(RecordData_status).length === 0) &&
String(action).toLocaleLowerCase() === "inscription" &&
@ -1244,7 +1298,7 @@ function Inscription_Information(props) {
</div>}
<h3 style={{ fontFamily:'DM Sans' }}> Demande d'evaluation </h3>
<h3 style={{ fontFamily: 'DM Sans' }}> Demande d'evaluation </h3>
<div className="div_row22 survey_block">
<fieldset>
<nav className="survey_title"> 1. Une <b>note </b> pour l'appréciation générale </nav>

View File

@ -1520,7 +1520,7 @@ const options_menu_vertical = [
submenu_color_management("main");
/* if (document.getElementById("order_header_main")) {
document.getElementById("order_header_main").style.backgroundColor = "#104277";
document.getElementById("order_header_main").style.backgroundColor = "#107758";
document.getElementById("order_header_main").style.color = "white";
}
@ -1547,7 +1547,7 @@ const options_menu_vertical = [
submenu_color_management("detail");
/* if (document.getElementById("order_header_detail")) {
document.getElementById("order_header_detail").style.backgroundColor = "#104277";
document.getElementById("order_header_detail").style.backgroundColor = "#107758";
document.getElementById("order_header_detail").style.color = "white";
}
@ -1573,7 +1573,7 @@ const options_menu_vertical = [
submenu_color_management("facturation");
/* if (document.getElementById("order_header_facturation")) {
document.getElementById("order_header_facturation").style.backgroundColor = "#104277";
document.getElementById("order_header_facturation").style.backgroundColor = "#107758";
document.getElementById("order_header_facturation").style.color = "white";
}
@ -1604,7 +1604,7 @@ const options_menu_vertical = [
submenu_color_management("paiement");
/* if (document.getElementById("order_header_facturation")) {
document.getElementById("order_header_facturation").style.backgroundColor = "#104277";
document.getElementById("order_header_facturation").style.backgroundColor = "#107758";
document.getElementById("order_header_facturation").style.color = "white";
}
@ -1640,7 +1640,7 @@ const options_menu_vertical = [
}
if (document.getElementById(current_menu)) {
document.getElementById(current_menu).style.backgroundColor = "#104277";
document.getElementById(current_menu).style.backgroundColor = "#107758";
document.getElementById(current_menu).style.color = "white";
document.getElementById(current_menu).style.fontWeight = "bold";
}

View File

@ -150,10 +150,10 @@ const Intranet_Mes_Stagiaires = (props) => {
const columns = [
{ field: '_id', headerName: '_id', hide: true, editable: false, Width: 0, disableExport: true, },
{ field: 'session_id', headerName: 'session_id', hide: true, editable: false, Width: 0 , disableExport: true,},
{ field: 'id', headerName: 'id', hide: true, Width: 0 , disableExport: true,},
{ field: 'class_id', headerName: 'class_id', hide: true, Width: 0 , disableExport: true,},
{ field: 'class_internal_url', headerName: 'class_internal_url', hide: true, editable: false, Width: 0 , disableExport: true,},
{ field: 'session_id', headerName: 'session_id', hide: true, editable: false, Width: 0, disableExport: true, },
{ field: 'id', headerName: 'id', hide: true, Width: 0, disableExport: true, },
{ field: 'class_id', headerName: 'class_id', hide: true, Width: 0, disableExport: true, },
{ field: 'class_internal_url', headerName: 'class_internal_url', hide: true, editable: false, Width: 0, disableExport: true, },
{ field: 'telephone', headerName: 'Téléphone', hide: true, editable: false, Width: 0 },
{ field: 'date_naissance', headerName: 'date_naissance', hide: true, editable: false, Width: 0 },
@ -788,18 +788,18 @@ const Intranet_Mes_Stagiaires = (props) => {
}
const stored_cookie = getCookie('tokenmysych');
const stored_cookie = getCookie('tokenmysych');
form.append("token", stored_cookie);
/*** Si le formulaire est appelé avec un type de document;
* on va forcer dans les argument un champ avec partner_client_id = client_rattachement_id
*/
if (props.partner_client_id ) {
if (props.partner_client_id) {
form.delete("client_rattachement_id");
form.append("client_rattachement_id", props.partner_client_id);
}
// console.log(" ### Getall_TrainingParticipant form = ", form)
// console.log(" ### Getall_TrainingParticipant form = ", form)
var myurl = process.env.REACT_APP_API_URL + "myclass/api/Get_Statgaire_List_Partner_with_filter/";
@ -1082,7 +1082,7 @@ const Intranet_Mes_Stagiaires = (props) => {
setsubmenu("inscrit");
if (document.getElementById("inscrit")) {
document.getElementById("inscrit").style.backgroundColor = "#104277";
document.getElementById("inscrit").style.backgroundColor = "#107758";
document.getElementById("inscrit").style.color = "white";
}
@ -1813,7 +1813,7 @@ const Intranet_Mes_Stagiaires = (props) => {
const list_menu_header_names = ['detail_session_class', 'detail_client_rattachement', 'detail_facture_client_rattachement', 'detail_financeur_rattachement', 'detail_nom', 'detail_status_inscript',
'detail_opco', 'detail_prenom', 'detail_mode_financement', 'detail_mail', 'detail_naissance', 'detail_tel', 'detail_adresse', 'detail_code_postal',
'detail_ville', 'detail_pays', 'certif_date', 'detail_cout', 'detail_mode_fin', 'detail_employeur', 'date_evaluation', 'certif_date',
'note_eval', 'detail_type_apprenant', 'date_evaluation', 'detail_incr_date']
'note_eval', 'detail_type_apprenant', 'date_evaluation', 'detail_incr_date']
@ -2241,7 +2241,7 @@ const Intranet_Mes_Stagiaires = (props) => {
if (document.getElementById("detail_session")) {
document.getElementById("detail_session").style.backgroundColor = "#104277";
document.getElementById("detail_session").style.backgroundColor = "#107758";
document.getElementById("detail_session").style.color = "white";
}
@ -2270,7 +2270,7 @@ const Intranet_Mes_Stagiaires = (props) => {
if (document.getElementById("piece_jointe")) {
document.getElementById("piece_jointe").style.backgroundColor = "#104277";
document.getElementById("piece_jointe").style.backgroundColor = "#107758";
document.getElementById("piece_jointe").style.color = "white";
}
@ -4195,6 +4195,7 @@ const Intranet_Mes_Stagiaires = (props) => {
//form.append("token","K3cw63eKokKSbV4spjQ48SUNnfy80yrXfA");
const stored_cookie = getCookie('tokenmysych');
form.append("token", stored_cookie);
form.append("archive", "0");
var myurl = process.env.REACT_APP_API_URL + "myclass/api/get_partner_class/";
setLoading(true);
@ -6345,115 +6346,115 @@ const Intranet_Mes_Stagiaires = (props) => {
setdisplay_stagiaire_with_alert(event.target.checked);
};
// DEBUT EXPORT EXCEL DATAGRID
// DEBUT EXPORT EXCEL DATAGRID
function CustomToolbar(props) {
function CustomToolbar(props) {
return (
<GridToolbarContainer {...props}>
return (
<GridToolbarContainer {...props}>
<GridToolbarColumnsButton />
<GridToolbarFilterButton />
<GridToolbarDensitySelector
slotProps={{ tooltip: { title: 'Change density' } }}
/>
<Box sx={{ flexGrow: 1 }} />
<ExportButton data_colums={props.data_colums} />
<GridToolbarColumnsButton />
<GridToolbarFilterButton />
<GridToolbarDensitySelector
slotProps={{ tooltip: { title: 'Change density' } }}
/>
<Box sx={{ flexGrow: 1 }} />
<ExportButton data_colums={props.data_colums} />
</GridToolbarContainer>
);
}
</GridToolbarContainer>
);
}
function getExcelData(apiRef) {
// Select rows and columns
const filteredSortedRowIds = gridFilteredSortedRowIdsSelector(apiRef);
const visibleColumnsField = gridVisibleColumnFieldsSelector(apiRef);
function getExcelData(apiRef) {
// Select rows and columns
const filteredSortedRowIds = gridFilteredSortedRowIdsSelector(apiRef);
const visibleColumnsField = gridVisibleColumnFieldsSelector(apiRef);
// 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;
// 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 row;
});
return data;
}
return data;
}
function ExportButton(props) {
return (
<GridToolbarExportContainer {...props}>
<ExportMenuItem data_colums={props.data_colums} />
</GridToolbarExportContainer>
);
}
function ExportButton(props) {
return (
<GridToolbarExportContainer {...props}>
<ExportMenuItem data_colums={props.data_colums} />
</GridToolbarExportContainer>
);
}
function handleExport(apiRef, data_colums) {
const data = getExcelData(apiRef);
const visibleColumnsField = gridVisibleColumnFieldsSelector(apiRef);
function handleExport(apiRef, data_colums) {
const data = getExcelData(apiRef);
const visibleColumnsField = gridVisibleColumnFieldsSelector(apiRef);
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;
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',
});
fileName: 'data_' + String(new Date().toJSON().slice(0, 10)).replaceAll("-", "_") + '.xlsx',
sheetName: 'Export_' + String(new Date().toJSON().slice(0, 10)).replaceAll("-", "_"),
};
const workbook = XLSX.utils.book_new();
XLSX.utils.book_append_sheet(workbook, worksheet, local_config.sheetName);
XLSX.writeFile(workbook, local_config.fileName, { compression: true });
}
local_config.columnNames = local_config.columnNames.filter(function( element ) {
return element !== undefined;
});
function ExportMenuItem(props) {
const apiRef = useGridApiContext();
const { hideMenu } = props;
return (
<MenuItem
onClick={() => {
handleExport(apiRef, props.data_colums);
// Hide the export menu after the export
hideMenu?.();
}}
>
Export Excel
</MenuItem>
);
}
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 (
<MenuItem
onClick={() => {
handleExport(apiRef, props.data_colums);
// Hide the export menu after the export
hideMenu?.();
}}
>
Export Excel
</MenuItem>
);
}
// FIN EXPORT EXCEL DATAGRID
// FIN EXPORT EXCEL DATAGRID
return (
<div className="intranet_mes_stagiaires">
@ -6462,14 +6463,14 @@ function ExportMenuItem(props) {
</div>}
{ /**** Dialog info stagiaire */}
<Dialog
open={Dialog_stagiaire_open}
//onClose={Dialog_stagiaire_handleClose}
className="displaypartnersession"
static
onClose={() => null}
@ -6494,7 +6495,7 @@ function ExportMenuItem(props) {
aria-labelledby="draggable-dialog-title"
>
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title">Info Stagiaire</DialogTitle>
<DialogTitle style={{ cursor: 'move', fontFamily: "DM Sans" }} id="draggable-dialog-title">Info Stagiaire</DialogTitle>
<DialogContent className="DialogContent_width">
<div className="div_row_dialog">
@ -6640,7 +6641,7 @@ function ExportMenuItem(props) {
<DialogActions>
<IconButton
<IconButton
autoFocus
onClick={Dialog_stagiaire_handleClose_buton}
color="primary"
@ -6671,7 +6672,7 @@ function ExportMenuItem(props) {
>
<DialogTitle style={{ cursor: 'move', background: '#fff', fontFamily:'DM Sans'}} id="draggable-dialog-title"> MySy Information</DialogTitle>
<DialogTitle style={{ cursor: 'move', background: '#fff', fontFamily: 'DM Sans' }} id="draggable-dialog-title"> MySy Information</DialogTitle>
<DialogContent>
<DialogContentText>
{Dialog_1_message}
@ -6715,7 +6716,7 @@ function ExportMenuItem(props) {
aria-labelledby="draggable-dialog-title"
>
<DialogTitle style={{ cursor: 'move', fontFamily:"DM Sans"}} id="draggable-dialog-title">Tuteur {quel_tuteur}</DialogTitle>
<DialogTitle style={{ cursor: 'move', fontFamily: "DM Sans" }} id="draggable-dialog-title">Tuteur {quel_tuteur}</DialogTitle>
{String(quel_tuteur) === "1" && <DialogContent className="DialogContent_width">
<DialogContentText>
{Dialog_tuteur_1_message}
@ -7097,7 +7098,7 @@ function ExportMenuItem(props) {
<DialogActions>
<IconButton
<IconButton
autoFocus
onClick={Dialog_tuteur_1_handleClose_buton}
color="primary"
@ -7133,7 +7134,7 @@ function ExportMenuItem(props) {
static
onClose={() => null}>
<DialogTitle style={{ cursor: 'move', background: '#fff', fontFamily:'DM Sans'}} id="draggable-dialog-title"> MySy Information</DialogTitle>
<DialogTitle style={{ cursor: 'move', background: '#fff', fontFamily: 'DM Sans' }} id="draggable-dialog-title"> MySy Information</DialogTitle>
<DialogContent className="DialogContent_width" style={{ "minHeight": "30rem" }}>
@ -7445,7 +7446,7 @@ function ExportMenuItem(props) {
</Dialog>
{ /**** FIN Dialog Convention */}
<h3 style={{ fontFamily:'DM Sans' }}> Mes stagiaires </h3>
<h3 style={{ fontFamily: 'DM Sans' }}> Mes stagiaires </h3>
<div className="div_row">
<div className="titre1"> Utilisez les filtres !</div>
@ -7950,7 +7951,7 @@ function ExportMenuItem(props) {
}}
>
<DataGrid
// checkboxSelection
// checkboxSelection
components={{
Toolbar: CustomToolbar
}}
@ -8057,9 +8058,9 @@ function ExportMenuItem(props) {
rowsPerPageOptions={[10]}
disableSelectionOnClick
/* components={{
Toolbar: GridToolbar,
}}*/
/* components={{
Toolbar: GridToolbar,
}}*/
//sx={datagridSx}
getCellClassName={(params) => {
//field === 'distantiel'
@ -8343,7 +8344,7 @@ function ExportMenuItem(props) {
</div>}
</div>
@ -8352,7 +8353,7 @@ function ExportMenuItem(props) {
<div className="div_row" style={{ "border": "None" }}>
{/*} <div className="div_row_gauche div_row_gauche_etendu" style={{ "textAlign": "left", "paddingLeft": "5px" }}>
{/*} <div className="div_row_gauche div_row_gauche_etendu" style={{ "textAlign": "left", "paddingLeft": "5px" }}>
<Button variant="outlined" onClick={submenu_import_stagiaire} className="detail_class_submenu bton_import_excel"
id='menu_import_participant' name='menu_import_participant'>Importer des participants excel &nbsp;
@ -10313,7 +10314,7 @@ function ExportMenuItem(props) {
<hr className="hr_break" />
</div>
<div className="div_row" style={{ "border": "None", "fontSize": "22px", "fontWeight": "600", "padding": "5px" }}>
Acces Plateforme E-Learning (LMS)
Acces Plateforme E-Learning (LMS)
</div>
<div className="div_row" style={{ "border": "None" }}>
@ -10726,7 +10727,7 @@ function ExportMenuItem(props) {
{String(props.formation_initiale) === "1" && String(submenu) === "ue" && String(addOneParticipant) !== "1" && <div className="div_row" style={{ "border": "None", "background": '#F8F9F9', "padding": '5px' }}>
<h3 style={{ fontFamily:'DM Sans' }}> Gestion des UE d'un inscrit </h3>
<h3 style={{ fontFamily: 'DM Sans' }}> Gestion des UE d'un inscrit </h3>
<div className="div_row">
<div className="session_caract"> <b>Unite D'enseignement </b> <br />
@ -10872,7 +10873,7 @@ function ExportMenuItem(props) {
{String(props.formation_initiale) === "1" && String(submenu) === "notes" && String(display_notes) === "1" && String(addOneParticipant) !== "1" && <div className="div_row" style={{ "border": "None", "background": '#F8F9F9', "padding": '5px' }}>
<h3 style={{ fontFamily:'DM Sans' }}> Les notes de l'inscrit </h3>
<h3 style={{ fontFamily: 'DM Sans' }}> Les notes de l'inscrit </h3>
<div className="div_row" style={{ "textAlign": "right", "marginTop": "0.5rem" }}>
<Button className="bton_emarge" onClick={(event) => {
Export_Inscrit_Notes();

View File

@ -374,7 +374,7 @@ const Intranet_Tous_Documents = (props) => {
}
if (document.getElementById(current_menu)) {
document.getElementById(current_menu).style.backgroundColor = "#104277";
document.getElementById(current_menu).style.backgroundColor = "#107758";
document.getElementById(current_menu).style.color = "white";
document.getElementById(current_menu).style.fontWeight = "bold";
}

View File

@ -2161,7 +2161,7 @@ const Jury = (props) => {
if (document.getElementsByName(String(current_menu_header)) && document.getElementsByName(String(current_menu_header))[0]) {
document.getElementsByName(String(current_menu_header))[0].style.fontWeight = "700";
document.getElementsByName(String(current_menu_header))[0].style.backgroundColor = "#104277";
document.getElementsByName(String(current_menu_header))[0].style.backgroundColor = "#107758";
document.getElementsByName(String(current_menu_header))[0].style.color = "white";
}
}

View File

@ -3080,7 +3080,7 @@ const Materiel_Salle = (props) => {
}
if (document.getElementById(current_menu)) {
document.getElementById(current_menu).style.backgroundColor = "#104277";
document.getElementById(current_menu).style.backgroundColor = "#107758";
document.getElementById(current_menu).style.color = "white";
document.getElementById(current_menu).style.fontWeight = "bold";
}

View File

@ -2843,7 +2843,7 @@ const Materiels = (props) => {
}
if (document.getElementById(current_menu)) {
document.getElementById(current_menu).style.backgroundColor = "#104277";
document.getElementById(current_menu).style.backgroundColor = "#107758";
document.getElementById(current_menu).style.color = "white";
document.getElementById(current_menu).style.fontWeight = "bold";
}

View File

@ -353,7 +353,7 @@ const Modules_Mes_Documents = (props) => {
}
if (document.getElementById(current_menu)) {
document.getElementById(current_menu).style.backgroundColor = "#104277";
document.getElementById(current_menu).style.backgroundColor = "#107758";
document.getElementById(current_menu).style.color = "white";
document.getElementById(current_menu).style.fontWeight = "bold";
}

View File

@ -291,7 +291,7 @@ const Mon_Tableau_De_Bord = (props) => {
}
if (document.getElementById(current_menu)) {
document.getElementById(current_menu).style.backgroundColor = "#104277";
document.getElementById(current_menu).style.backgroundColor = "#107758";
document.getElementById(current_menu).style.color = "white";
document.getElementById(current_menu).style.fontWeight = "bold";
}

View File

@ -743,6 +743,7 @@ const Partner_Commande = (props) => {
//form.append("token","K3cw63eKokKSbV4spjQ48SUNnfy80yrXfA");
const stored_cookie = getCookie('tokenmysypart');
form.append("token", stored_cookie);
form.append("archive", "0");
var myurl = process.env.REACT_APP_API_URL + "myclass/api/get_partner_class/";
@ -3496,7 +3497,7 @@ const Partner_Commande = (props) => {
/*
if (document.getElementById("order_header_main")) {
document.getElementById("order_header_main").style.backgroundColor = "#104277";
document.getElementById("order_header_main").style.backgroundColor = "#107758";
document.getElementById("order_header_main").style.color = "white";
}
@ -3528,7 +3529,7 @@ const Partner_Commande = (props) => {
/*
if (document.getElementById("order_header_detail")) {
document.getElementById("order_header_detail").style.backgroundColor = "#104277";
document.getElementById("order_header_detail").style.backgroundColor = "#107758";
document.getElementById("order_header_detail").style.color = "white";
}
@ -3556,7 +3557,7 @@ const Partner_Commande = (props) => {
await sleep(5);
/*
if (document.getElementById("order_header_facturation")) {
document.getElementById("order_header_facturation").style.backgroundColor = "#104277";
document.getElementById("order_header_facturation").style.backgroundColor = "#107758";
document.getElementById("order_header_facturation").style.color = "white";
}
@ -3584,7 +3585,7 @@ const Partner_Commande = (props) => {
await sleep(5);
/* if (document.getElementById("order_header_facturation")) {
document.getElementById("order_header_facturation").style.backgroundColor = "#104277";
document.getElementById("order_header_facturation").style.backgroundColor = "#107758";
document.getElementById("order_header_facturation").style.color = "white";
}
@ -3636,7 +3637,7 @@ const Partner_Commande = (props) => {
}
if (document.getElementById(current_menu)) {
document.getElementById(current_menu).style.backgroundColor = "#104277";
document.getElementById(current_menu).style.backgroundColor = "#107758";
document.getElementById(current_menu).style.color = "white";
document.getElementById(current_menu).style.fontWeight = "bold";
}

File diff suppressed because it is too large Load Diff

View File

@ -2707,7 +2707,7 @@ const Partner_Configuration_Technique = (props) => {
}
if (document.getElementById(current_menu)) {
document.getElementById(current_menu).style.backgroundColor = "#104277";
document.getElementById(current_menu).style.backgroundColor = "#107758";
document.getElementById(current_menu).style.color = "white";
document.getElementById(current_menu).style.fontWeight = "bold";
}

View File

@ -545,7 +545,7 @@ const Partner_domaine_Categorie_Metier = (props) => {
}
if (document.getElementById(current_menu)) {
document.getElementById(current_menu).style.backgroundColor = "#104277";
document.getElementById(current_menu).style.backgroundColor = "#107758";
document.getElementById(current_menu).style.color = "white";
document.getElementById(current_menu).style.fontWeight = "bold";
}

View File

@ -1493,7 +1493,7 @@ const Partner_Facture = (props) => {
submenu_color_management("main");
/* if (document.getElementById("order_header_main")) {
document.getElementById("order_header_main").style.backgroundColor = "#104277";
document.getElementById("order_header_main").style.backgroundColor = "#107758";
document.getElementById("order_header_main").style.color = "white";
}
@ -1520,7 +1520,7 @@ const Partner_Facture = (props) => {
submenu_color_management("detail");
/* if (document.getElementById("order_header_detail")) {
document.getElementById("order_header_detail").style.backgroundColor = "#104277";
document.getElementById("order_header_detail").style.backgroundColor = "#107758";
document.getElementById("order_header_detail").style.color = "white";
}
@ -1546,7 +1546,7 @@ const Partner_Facture = (props) => {
submenu_color_management("facturation");
/* if (document.getElementById("order_header_facturation")) {
document.getElementById("order_header_facturation").style.backgroundColor = "#104277";
document.getElementById("order_header_facturation").style.backgroundColor = "#107758";
document.getElementById("order_header_facturation").style.color = "white";
}
@ -1577,7 +1577,7 @@ const Partner_Facture = (props) => {
submenu_color_management("paiement");
/* if (document.getElementById("order_header_facturation")) {
document.getElementById("order_header_facturation").style.backgroundColor = "#104277";
document.getElementById("order_header_facturation").style.backgroundColor = "#107758";
document.getElementById("order_header_facturation").style.color = "white";
}
@ -1613,7 +1613,7 @@ const Partner_Facture = (props) => {
}
if (document.getElementById(current_menu)) {
document.getElementById(current_menu).style.backgroundColor = "#104277";
document.getElementById(current_menu).style.backgroundColor = "#107758";
document.getElementById(current_menu).style.color = "white";
document.getElementById(current_menu).style.fontWeight = "bold";
}

View File

@ -2,12 +2,13 @@ import React, { useRef, useState, useEffect } from "react";
import "./new_s_detail_formation_2025.css";
import { useParams } from 'react-router-dom'
import axios from "axios";
import { FcInfo } from "react-icons/fc";
import 'reactjs-popup/dist/index.css';
import { Helmet } from "react-helmet";
import 'react-slideshow-image/dist/styles.css'
import 'react-tooltip/dist/react-tooltip.css'
import { Tooltip } from 'react-tooltip'
import slideimg1 from "../../mysy_img/education.jpg";
import slideimg4 from "../../mysy_img/mysy_img.png";
@ -87,14 +88,14 @@ const New_C_Detail_Formation_2025 = (props) => {
const [text_size, settext_size] = useState("0");
const socialIconStyles = {
width: '24px',
height: '24px',
width: '24px',
height: '24px',
cursor: 'pointer',
};
const socialIconStyles_mobile = {
width: '24px',
height: '24px',
width: '24px',
height: '24px',
cursor: 'pointer',
};
@ -842,6 +843,7 @@ const New_C_Detail_Formation_2025 = (props) => {
} else {
setinscritpion("1");
}
@ -1227,7 +1229,7 @@ const New_C_Detail_Formation_2025 = (props) => {
className="displaypartnersession"
>
<DialogTitle style={{ cursor: 'move', background: '#fff', fontFamily:'DM Sans'}} id="draggable-dialog-title"> Contactez Nous</DialogTitle>
<DialogTitle>Contactez Nous</DialogTitle>
<DialogContent className="DialogContent_width">
@ -1384,7 +1386,7 @@ const New_C_Detail_Formation_2025 = (props) => {
<div>
<div style={{ width: '90%', marginLeft: 'auto', marginRight: 'auto', background: "#FFF", borderRadius: '10px' }}>
<div style={{ width: '90%', marginLeft: 'auto', marginRight: 'auto', background: "#FFF", marginTop: '1rem', paddingBottom:'1.5rem' }}>
<div style={{ width: '90%', marginLeft: 'auto', marginRight: 'auto', background: "#FFF", marginTop: '1rem', paddingBottom: '1.5rem' }}>
<div style={{ width: '100%', float: 'left', marginBottom: '1rem' }}>
@ -1652,9 +1654,9 @@ const New_C_Detail_Formation_2025 = (props) => {
<div style={{ width: '90%', marginLeft: 'auto', marginRight: 'auto', background: "#FFF", borderRadius: '10px' }}>
<div style={{ width: '90%', marginLeft: 'auto', marginRight: 'auto', background: "#FFF", marginTop: '1rem' }}>
<div className="mob_info_page" id="mob_info_page">
<div className="mob_info_page" id="mob_info_page" >
<div className="mob_info_page_title_desc" >
<div className="mob_info_page_title_desc" ref={myRef_informe} id="myRef_informe" >
{String(inscritpion) === "2" && <div>
@ -1699,32 +1701,40 @@ const New_C_Detail_Formation_2025 = (props) => {
{(JSON.parse(formation).session_ondemande) && (JSON.parse(formation).session_ondemande) === "1" && <nav> Sessions de formation à la demande</nav>}
{(!(JSON.parse(formation).session_ondemande) || (JSON.parse(formation).session_ondemande) === "0") && <nav>
{(JSON.parse(formation).distantiel) === "1" && (JSON.parse(formation).presentiel) === "1" &&
{(JSON.parse(formation).mode_animation) === "2" &&
(JSON.parse(formation).date_debut).substring(0, 10) !== (JSON.parse(formation).date_fin).substring(0, 10) &&
<nav>
{(JSON.parse(formation).date_debut).substring(0, 10)} au
{(JSON.parse(formation).date_fin).substring(0, 10)} <b> A Distance</b> et <b>En Présentiel </b>- {(JSON.parse(formation).adresse)} &nbsp;{(JSON.parse(formation).code_postal)}
{(JSON.parse(formation).date_fin).substring(0, 10)}
<Tooltip className="tooltip_css" id="anim_hybride" style={{ "fontSize": "10px" }} />
<a data-tooltip-id="anim_hybride" data-tooltip-html="Une partie en présentiel et une partie à distance"> <b> Animation Hybride <FcInfo />
</b> </a>
- {(JSON.parse(formation).adresse)} &nbsp;{(JSON.parse(formation).code_postal)}
</nav>
}
{(JSON.parse(formation).distantiel) === "1" && (JSON.parse(formation).presentiel) === "1" &&
{(JSON.parse(formation).mode_animation) === "2" &&
(JSON.parse(formation).date_debut).substring(0, 10) === (JSON.parse(formation).date_fin).substring(0, 10) &&
<nav>
Le &nbsp;
{(JSON.parse(formation).date_fin).substring(0, 10)} <b> A Distance</b> et <b>En Présentiel </b>- {(JSON.parse(formation).adresse)} &nbsp;{(JSON.parse(formation).code_postal)}
{(JSON.parse(formation).date_fin).substring(0, 10)}
<Tooltip className="tooltip_css" id="anim_hybride" style={{ "fontSize": "10px" }} />
<a data-tooltip-id="anim_hybride" data-tooltip-html="Une partie en présentiel et une partie à distance"> <b> Animation Hybride <FcInfo />
</b> </a>
- {(JSON.parse(formation).adresse)} &nbsp;{(JSON.parse(formation).code_postal)}
</nav>
}
{(JSON.parse(formation).distantiel) === "1" && ((JSON.parse(formation).presentiel) === "0" || !(JSON.parse(formation).presentiel)) &&
{(JSON.parse(formation).mode_animation) === "1" &&
(JSON.parse(formation).date_debut).substring(0, 10) !== (JSON.parse(formation).date_fin).substring(0, 10) &&
<nav>
{(JSON.parse(formation).date_debut).substring(0, 10)} au
{(JSON.parse(formation).date_fin).substring(0, 10)} <b>A Distance </b> </nav>
}
{(JSON.parse(formation).distantiel) === "1" && ((JSON.parse(formation).presentiel) === "0" || !(JSON.parse(formation).presentiel)) &&
{(JSON.parse(formation).mode_animation) === "1" &&
(JSON.parse(formation).date_debut).substring(0, 10) === (JSON.parse(formation).date_fin).substring(0, 10) &&
<nav>
Le &nbsp;
@ -1732,14 +1742,14 @@ const New_C_Detail_Formation_2025 = (props) => {
}
{(JSON.parse(formation).presentiel) === "1" && ((JSON.parse(formation).distantiel) === "0" || !(JSON.parse(formation).distantiel)) &&
{(JSON.parse(formation).mode_animation) === "0" &&
(JSON.parse(formation).date_debut).substring(0, 10) !== (JSON.parse(formation).date_fin).substring(0, 10) &&
<nav>
{(JSON.parse(formation).date_debut).substring(0, 10)}&nbsp; au&nbsp;{(JSON.parse(formation).date_fin).substring(0, 10)} <b>En Présentiel </b> -
{(JSON.parse(formation).adresse)} &nbsp;{(JSON.parse(formation).code_postal)}
</nav>}
{(JSON.parse(formation).presentiel) === "1" && ((JSON.parse(formation).distantiel) === "0" || !(JSON.parse(formation).distantiel)) &&
{(JSON.parse(formation).mode_animation) === "0" &&
(JSON.parse(formation).date_debut).substring(0, 10) === (JSON.parse(formation).date_fin).substring(0, 10) &&
<nav>
Le &nbsp; {(JSON.parse(formation).date_fin).substring(0, 10)} <b>En Présentiel </b> -
@ -1824,7 +1834,7 @@ const New_C_Detail_Formation_2025 = (props) => {
>
<Typography sx={{ color: 'text.secondary', }}>
{val.titre}
{val.titre}
</Typography>
</AccordionSummary>
<AccordionDetails>
@ -1864,18 +1874,19 @@ const New_C_Detail_Formation_2025 = (props) => {
</div>
</div>
<hr style={{ "width": "100%", border: "1px solid #E2E9FB", marginTop: '10px' }} />
<hr style={{ "width": "100%", border: "1px solid #E2E9FB", marginTop: '10px' }} />
<div style={{ width: '90%', marginLeft: 'auto', marginRight: 'auto', background: "#FFF", borderRadius: '10px' }}>
<div style={{ width: '90%', marginLeft: 'auto', marginRight: 'auto', background: "#FFF", marginTop: '1rem', height:'10px' }}>
<div style={{ width: '90%', marginLeft: 'auto', marginRight: 'auto', background: "#FFF", marginTop: '1rem', height: '10px' }}>
&nbsp;
</div>
</div>
<div style={{ width: '90%', marginLeft: 'auto', marginRight: 'auto', background: "#FFF", borderRadius: '10px' }}>
<div style={{ width: '100%', float: 'left', minHeight: '10rem', background: 'None', zIndex: '99', position: "relative", backgroundColor: 'white', marginBottom:'2rem',
borderRadius:'10px'
}}>
<div style={{
width: '100%', float: 'left', minHeight: '10rem', background: 'None', zIndex: '99', position: "relative", backgroundColor: 'white', marginBottom: '2rem',
borderRadius: '10px'
}}>
<br />
<div className="mob_block_cross_sell_cat" id="mob_block_cross_sell_cat_new">
@ -2060,7 +2071,7 @@ const New_C_Detail_Formation_2025 = (props) => {
<div style={{ width: '100%', float: 'left', background: "#F4F4FB" }}>
<div style={{ width: '90%', maxWidth: '1400px', marginLeft: 'auto', marginRight: 'auto' }}>
<div style={{ width: '70%', float: 'left', "paddingLeft": "2rem", paddingRight: '2rem' }} >
<div style={{ width: '70%', float: 'left', "paddingLeft": "2rem", paddingRight: '2rem' }} ref={myRef_informe} id="myRef_informe">
{String(inscritpion) === "1" && <div className="description detail_element">
<Inscription internal_url={DetailTraining["internal_url"]} action="inscription"
@ -2113,7 +2124,6 @@ const New_C_Detail_Formation_2025 = (props) => {
<div className="block_info_page_pave_title_desc_title">
Les sessions
</div>
<div className="block_info_page_pave_title_desc_desc session_block">
<ul style={{ "width": "100%" }}>
@ -2126,53 +2136,60 @@ const New_C_Detail_Formation_2025 = (props) => {
{(JSON.parse(formation).session_ondemande) && (JSON.parse(formation).session_ondemande) === "1" && <nav> Sessions de formation à la demande</nav>}
{(!(JSON.parse(formation).session_ondemande) || (JSON.parse(formation).session_ondemande) === "0") && <nav>
{(JSON.parse(formation).distantiel) === "1" && (JSON.parse(formation).presentiel) === "1" &&
{(JSON.parse(formation).mode_animation) === "2" &&
(JSON.parse(formation).date_debut).substring(0, 10) !== (JSON.parse(formation).date_fin).substring(0, 10) &&
<nav>
{(JSON.parse(formation).date_debut).substring(0, 10)}&nbsp; au&nbsp;
{(JSON.parse(formation).date_fin).substring(0, 10)} <b> A Distance</b> et <b>En Présentiel </b>- {(JSON.parse(formation).adresse)} &nbsp;{(JSON.parse(formation).code_postal)}
{(JSON.parse(formation).date_fin).substring(0, 10)}
<Tooltip className="tooltip_css" id="anim_hybride" style={{ "fontSize": "10px" }} />
<a data-tooltip-id="anim_hybride" data-tooltip-html="Une partie en présentiel et une partie à distance"> <b> Animation Hybride <FcInfo /> </b> </a>
- {(JSON.parse(formation).adresse)} &nbsp;{(JSON.parse(formation).code_postal)}
</nav>
}
{(JSON.parse(formation).distantiel) === "1" && (JSON.parse(formation).presentiel) === "1" &&
{(JSON.parse(formation).mode_animation) === "2" &&
(JSON.parse(formation).date_debut).substring(0, 10) === (JSON.parse(formation).date_fin).substring(0, 10) &&
<nav>
Le &nbsp;
{(JSON.parse(formation).date_fin).substring(0, 10)} <b> A Distance</b> et <b>En Présentiel </b>- {(JSON.parse(formation).adresse)} &nbsp;{(JSON.parse(formation).code_postal)}
Le &nbsp; {(JSON.parse(formation).date_debut).substring(0, 10)}&nbsp;
<Tooltip className="tooltip_css" id="anim_hybride" style={{ "fontSize": "10px" }} />
<a data-tooltip-id="anim_hybride" data-tooltip-html="Une partie en présentiel et une partie à distance"> <b> Animation Hybride <FcInfo /> </b> </a>
- {(JSON.parse(formation).adresse)} &nbsp;{(JSON.parse(formation).code_postal)}
</nav>
}
{(JSON.parse(formation).distantiel) === "1" && ((JSON.parse(formation).presentiel) === "0" || !(JSON.parse(formation).presentiel)) &&
{(JSON.parse(formation).mode_animation) === "1" &&
(JSON.parse(formation).date_debut).substring(0, 10) !== (JSON.parse(formation).date_fin).substring(0, 10) &&
<nav>
{(JSON.parse(formation).date_debut).substring(0, 10)}&nbsp; au&nbsp;
{(JSON.parse(formation).date_fin).substring(0, 10)} <b>A Distance </b> </nav>
}
{(JSON.parse(formation).distantiel) === "1" && ((JSON.parse(formation).presentiel) === "0" || !(JSON.parse(formation).presentiel)) &&
{(JSON.parse(formation).mode_animation) === "1" &&
(JSON.parse(formation).date_debut).substring(0, 10) === (JSON.parse(formation).date_fin).substring(0, 10) &&
<nav>
Le &nbsp;
{(JSON.parse(formation).date_fin).substring(0, 10)} <b>A Distance </b> </nav>
Le &nbsp; {(JSON.parse(formation).date_debut).substring(0, 10)}&nbsp; <b>A Distance </b> </nav>
}
{(JSON.parse(formation).presentiel) === "1" && ((JSON.parse(formation).distantiel) === "0" || !(JSON.parse(formation).distantiel)) &&
{(JSON.parse(formation).mode_animation) === "0" &&
(JSON.parse(formation).date_debut).substring(0, 10) !== (JSON.parse(formation).date_fin).substring(0, 10) &&
<nav>
{(JSON.parse(formation).date_debut).substring(0, 10)}&nbsp; au&nbsp;{(JSON.parse(formation).date_fin).substring(0, 10)} <b>En Présentiel </b> -
{(JSON.parse(formation).adresse)} &nbsp;{(JSON.parse(formation).code_postal)}
</nav>}
{(JSON.parse(formation).presentiel) === "1" && ((JSON.parse(formation).distantiel) === "0" || !(JSON.parse(formation).distantiel)) &&
{(JSON.parse(formation).mode_animation) === "0" &&
(JSON.parse(formation).date_debut).substring(0, 10) === (JSON.parse(formation).date_fin).substring(0, 10) &&
<nav>
Le &nbsp; {(JSON.parse(formation).date_fin).substring(0, 10)} <b>En Présentiel </b> -
Le &nbsp; {(JSON.parse(formation).date_debut).substring(0, 10)}&nbsp; <b>En Présentiel </b> -
{(JSON.parse(formation).adresse)} &nbsp;{(JSON.parse(formation).code_postal)}
</nav>}
</nav>}
</li>
@ -2216,7 +2233,7 @@ const New_C_Detail_Formation_2025 = (props) => {
<br />
{DetailTraining["tab_ue_detail_data"] && DetailTraining["tab_ue_detail_data"].length > 0 && < div className="block_info_page_pave_title_desc_long_text" >
<div className="block_info_page_pave_title_desc_title">
Modules
Modules
</div>
@ -2233,7 +2250,7 @@ const New_C_Detail_Formation_2025 = (props) => {
id={val._id}
>
<Typography sx={{ color: 'text.secondary', fontWeight:'500' }}>
<Typography sx={{ color: 'text.secondary', fontWeight: '500' }}>
{val.titre}
</Typography>
</AccordionSummary>
@ -2248,7 +2265,7 @@ const New_C_Detail_Formation_2025 = (props) => {
</div>
))}
</div>
</div>
</div>}
@ -2367,8 +2384,8 @@ const New_C_Detail_Formation_2025 = (props) => {
<div className="block_sticky_info_price">Gratuit
</div>
<div className="tag_eligle_cpf">Eligle CFP
</div>
{DetailTraining["cpf"] && String(DetailTraining["cpf"]) === "1" && <div className="tag_eligle_cpf">Éligible CPF</div>}
{(!DetailTraining["cpf"] || String(DetailTraining["cpf"]) !== "1") && <div className="tag_eligle_cpf">Non Élig. CPF</div>}
</div>
}
@ -2376,8 +2393,12 @@ const New_C_Detail_Formation_2025 = (props) => {
&& DetailTraining["price"] && <div className="block_prix_2025">
<div className="block_sticky_info_price"> {String(DetailTraining["price"])} HT
</div>
<div className="tag_eligle_cpf">Eligle CFP
</div>
{DetailTraining["cpf"] && String(DetailTraining["cpf"]) === "1" && <div className="tag_eligle_cpf">Éligible CPF</div>}
{(!DetailTraining["cpf"] || String(DetailTraining["cpf"]) !== "1") && <div className="tag_eligle_cpf">Non Élig. CPF</div>}
</div>}
{String(DetailTraining["price"]) && String(DetailTraining["price"]) !== String("0") && DetailTraining.business_prices && Object.keys(DetailTraining.business_prices).length > 0

View File

@ -608,13 +608,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1894,13 +1894,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1968,8 +1968,8 @@
text-align: right;
padding-right: 2rem;
border-radius: 20rem;
background-color: #104277;
border: 2px solid #104277;
background-color: #107758;
border: 2px solid #107758;
width: 12rem;
box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.5);
@ -4077,13 +4077,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
background-color: #104277;
background-color: #107758;
color: white;
}
@ -4151,8 +4151,8 @@
text-align: right;
padding-right: 2rem;
border-radius: 20rem;
background-color: #104277;
border: 2px solid #104277;
background-color: #107758;
border: 2px solid #107758;
width: 12rem;
box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.5);
@ -6262,13 +6262,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
background-color: #104277;
background-color: #107758;
color: white;
}
@ -6336,8 +6336,8 @@
text-align: right;
padding-right: 2rem;
border-radius: 20rem;
background-color: #104277;
border: 2px solid #104277;
background-color: #107758;
border: 2px solid #107758;
width: 12rem;
box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.5);

View File

@ -2759,7 +2759,7 @@ const New_C_Marketplace_2025 = () => {
className="displaypartnersession"
>
<DialogTitle style={{ cursor: 'move', background: '#fff', fontFamily:'DM Sans'}} id="draggable-dialog-title"> Contactez Nous</DialogTitle>
<DialogTitle>Contactez Nous</DialogTitle>
<DialogContent className="DialogContent_width">
@ -2898,7 +2898,7 @@ const New_C_Marketplace_2025 = () => {
className="displaypartnersession"
>
<DialogTitle style={{ cursor: 'move', background: '#fff', fontFamily:'DM Sans'}} id="draggable-dialog-title"> MySy Information</DialogTitle>
<DialogTitle>MySy Information</DialogTitle>
<DialogContent className="DialogContent_width">
<DialogContentText>
Confirmez la deconnexion
@ -3683,7 +3683,7 @@ const New_C_Marketplace_2025 = () => {
{result && myApiResponse === "True" && !newresult &&
<div className="okUpdateData">
<div style={{ "width": "100%" }}>
<div style={{ "width": "50%", "float": "left" }}>
<div className="block_pagination">
<Pagination
className="pagination-bar"
currentPage={currentPage2}
@ -3692,7 +3692,7 @@ const New_C_Marketplace_2025 = () => {
onPageChange={page => setCurrentPage2(page)}
/>
</div>
<div style={{ "width": "40%", "float": "right" }}>
<div className="block_trier_par">
<div className="input-group input-group-sm mb-3 ">
<span className="filter_span">Trier par </span>
@ -3704,7 +3704,7 @@ const New_C_Marketplace_2025 = () => {
<option value="duration">Duree</option>
</select>
<span style={{ width: '10%' }}><TbArrowsDownUp style={{ height: '1.5rem', paddingTop: '5px', width: '40%' }}
<span style={{ width: '10%' }}><TbArrowsDownUp style={{ height: '1.5rem', paddingTop: '5px', width: '40%' }}
onClick={(e) => {
if (trier_par === "1")
settrier_par("-1");

View File

@ -31,6 +31,21 @@
display: none;
}
.block_pagination {
width: 100%;
float: left;
}
.block_trier_par {
width: 100%;
float: left;
}
/*style smartphones et petites tablettes en portrait*/
.text_head {
@ -393,11 +408,11 @@
padding-bottom: auto;
word-break: break-word;
margin-right: 0.5rem;
color: #104277;
color: #107758;
font-size: 0.75rem;
white-space: nowrap;
width: 20%;
}
.filter_val {
@ -411,7 +426,7 @@
background: transparent;
color: #3b3e40;
font-family: "DM Sans", "verdana", "Quicksand", "Signika";
border: 1px solid #C7C9CE;
border: 1px solid #C7C9CE;
border-radius: 0.3rem !important;
width: 65%;
margin-top: 0.3rem;
@ -844,7 +859,7 @@
}
.block_nos_formation {
padding: 0px;
padding: 0px;
width: 100%;
}
@ -920,9 +935,9 @@
.content_search_bar {
margin-top: 3rem;
width: 90%;
margin-left: auto;
margin-right: auto;
width: 94%;
margin-left: 3%;
}
.search_bar_h {
@ -957,7 +972,7 @@
padding: 0px;
gap: 24px;
width: 95%;
width: 100%;
height: 80px;
@ -1035,6 +1050,7 @@
order: 0;
flex-grow: 0;
margin-bottom: 1rem;
width: 100%;
}
@ -2194,9 +2210,9 @@
.cta_recherche_TXT_search_loup {
display: block;
width: 100%;
border-radius: 60px;
height: 40px;
@ -2213,7 +2229,7 @@
order: 0;
align-self: stretch;
flex-grow: 0;
background-color: #3e6ee3;
color: #ffffff;
border: none;
@ -2254,6 +2270,17 @@
@media only screen and (min-width: 601px) and (max-width: 991px) {
.block_pagination {
width: 50%;
float: left;
}
.block_trier_par {
width: 40%;
float: right;
}
/*style petites-moyennes tablettes */
.domaine_icone {
display: none
@ -2569,11 +2596,11 @@
padding-bottom: auto;
word-break: break-word;
margin-right: 0.5rem;
color: #104277;
color: #107758;
font-size: 0.75rem;
white-space: nowrap;
width: 20%;
}
.filter_val {
@ -2587,7 +2614,7 @@
background: transparent;
color: #3b3e40;
font-family: "DM Sans", "verdana", "Quicksand", "Signika";
border: 1px solid #C7C9CE;
border: 1px solid #C7C9CE;
border-radius: 0.3rem !important;
width: 65%;
margin-top: 0.3rem;
@ -5334,6 +5361,17 @@
@media only screen and (min-width: 992px) and (max-width: 1199px) {
/*style grande tablettes & Pc portable */
.block_pagination {
width: 50%;
float: left;
}
.block_trier_par {
width: 40%;
float: right;
}
.div_row {
float: left;
border-width: 0.01rem;
@ -5622,12 +5660,12 @@
padding-bottom: auto;
word-break: break-word;
margin-right: 0.5rem;
color: #104277;
color: #107758;
font-size: 0.9rem;
white-space: nowrap;
width: 20%;
padding-top: 10px;
padding-top: 10px;
}
.filter_val {
@ -5641,7 +5679,7 @@
background: transparent;
color: #3b3e40;
font-family: "DM Sans", "verdana", "Quicksand", "Signika";
border: 1px solid #C7C9CE;
border: 1px solid #C7C9CE;
border-radius: 0.3rem !important;
width: 65%;
margin-top: 0.3rem;
@ -8385,6 +8423,17 @@
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
.block_pagination {
width: 50%;
float: left;
}
.block_trier_par {
width: 40%;
float: right;
}
/* Ordi de bureau et grands ecrans*/
.align_gauche {
margin-left: 0rem;
@ -8690,12 +8739,12 @@
padding-bottom: auto;
word-break: break-word;
margin-right: 0.5rem;
color: #104277;
color: #107758;
font-size: 0.9rem;
white-space: nowrap;
width: 20%;
padding-top: 10px;
padding-top: 10px;
}
.filter_val {
@ -8709,7 +8758,7 @@
background: transparent;
color: #3b3e40;
font-family: "DM Sans", "verdana", "Quicksand", "Signika";
border: 1px solid #C7C9CE;
border: 1px solid #C7C9CE;
border-radius: 0.3rem !important;
width: 65%;
margin-top: 0.3rem;
@ -11470,6 +11519,17 @@
}
@media only screen and (min-width: 1920px) {
.block_pagination {
width: 50%;
float: left;
}
.block_trier_par {
width: 40%;
float: right;
}
.calage {
width: 2%;
}
@ -11775,12 +11835,12 @@
padding-bottom: auto;
word-break: break-word;
margin-right: 0.5rem;
color: #104277;
color: #107758;
font-size: 0.75rem;
white-space: nowrap;
width: 20%;
padding-top: 10px;
}
.filter_val {
@ -11794,7 +11854,7 @@
background: transparent;
color: #3b3e40;
font-family: "DM Sans", "verdana", "Quicksand", "Signika";
border: 1px solid #C7C9CE;
border: 1px solid #C7C9CE;
border-radius: 0.3rem !important;
width: 65%;
margin-top: 0.3rem;
@ -14723,7 +14783,7 @@
}
.dHtlYi {
background: #104277;
background: #107758;
}
.bQSvsY {

View File

@ -1419,6 +1419,6 @@
padding-bottom: 0.8rem;
cursor: pointer;
letter-spacing: 1px;
// background-color: #104277 !important;
// background-color: #107758 !important;
}
}

View File

@ -1,5 +1,21 @@
.addclassmanual {
.block_archive {
background-color: #774a10;
width: calc(100% - 20px);
margin-left: 10px;
margin-right: 10px;
border-radius: 5px;
text-align: center;
font-family: DM sans;
color: white;
margin-bottom: 0.5rem;
font-style: italic;
opacity: 80%;
font-weight: 600;
font-size: 14px;
}
.loader-container {
width: 100%;
height: 100vh;
@ -295,7 +311,7 @@
padding: 5px;
padding-left: 5px;
padding-right: 5px;
border: 1px solid #104277;
border: 1px solid #107758;
border-radius: 5px;
background: #81bc3a;
//color: red;
@ -319,7 +335,7 @@
padding: 5px;
padding-left: 5px;
padding-right: 5px;
border: 1px solid #104277;
border: 1px solid #107758;
border-radius: 5px;
background: #81bc3a;
//color: red;
@ -402,7 +418,7 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
@ -556,7 +572,7 @@
padding: 10px;
border-radius: 1rem;
margin-right: 0.5%;
background-color: #104277;
background-color: #107758;
text-align: left;
color: white;
}
@ -724,7 +740,7 @@
padding: 5px;
padding-left: 5px;
padding-right: 5px;
border: 1px solid #104277;
border: 1px solid #107758;
border-radius: 5px;
background: #81bc3a;
//color: red;
@ -748,7 +764,7 @@
padding: 5px;
padding-left: 5px;
padding-right: 5px;
border: 1px solid #104277;
border: 1px solid #107758;
border-radius: 5px;
background: #81bc3a;
//color: red;
@ -809,7 +825,7 @@
flex-direction: row;
align-items: flex-end;
padding: 0px;
border: #104277;
border: #107758;
//padding-bottom: 20px;
//padding-top: 2rem;
// height: 2rem;
@ -891,7 +907,7 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1045,7 +1061,7 @@
margin: auto;
padding: 5px;
border-radius: 1rem;
background-color: #104277;
background-color: #107758;
text-align: left;
color: white;
}
@ -1213,7 +1229,7 @@
padding: 5px;
padding-left: 5px;
padding-right: 5px;
border: 1px solid #104277;
border: 1px solid #107758;
border-radius: 5px;
background: #81bc3a;
//color: red;
@ -1237,7 +1253,7 @@
padding: 5px;
padding-left: 5px;
padding-right: 5px;
border: 1px solid #104277;
border: 1px solid #107758;
border-radius: 5px;
background: #81bc3a;
//color: red;
@ -1298,7 +1314,7 @@
flex-direction: row;
align-items: flex-end;
padding: 0px;
border: #104277;
border: #107758;
//padding-bottom: 20px;
// padding-top: 2rem;
// height: 2rem;
@ -1381,7 +1397,7 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1542,7 +1558,7 @@
margin: auto;
padding: 5px;
border-radius: 1rem;
background-color: #104277;
background-color: #107758;
text-align: left;
color: white;
}
@ -1719,7 +1735,7 @@
padding: 5px;
padding-left: 5px;
padding-right: 5px;
border: 1px solid #104277;
border: 1px solid #107758;
border-radius: 5px;
background: #81bc3a;
//color: red;
@ -1743,7 +1759,7 @@
padding: 5px;
padding-left: 5px;
padding-right: 5px;
border: 1px solid #104277;
border: 1px solid #107758;
border-radius: 5px;
background: #81bc3a;
//color: red;
@ -1805,7 +1821,7 @@
flex-direction: row;
align-items: flex-end;
padding: 0px;
border: #104277;
border: #107758;
// padding-bottom: 20px;
// padding-top: 2rem;
// height: 2rem;
@ -1988,7 +2004,7 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}

View File

@ -176,7 +176,7 @@
.detail_submenu:focus,
.detail_submenu:active,
.detail_submenu:checked {
background-color: #104277;
background-color: #107758;
color: white;
}
@ -360,7 +360,7 @@
.detail_submenu:focus,
.detail_submenu:active,
.detail_submenu:checked {
background-color: #104277;
background-color: #107758;
color: white;
}
@ -542,7 +542,7 @@
.detail_submenu:focus,
.detail_submenu:active,
.detail_submenu:checked {
background-color: #104277;
background-color: #107758;
color: white;
}
@ -727,7 +727,7 @@
.detail_submenu:focus,
.detail_submenu:active,
.detail_submenu:checked {
background-color: #104277;
background-color: #107758;
color: white;
}

View File

@ -161,13 +161,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -792,13 +792,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1480,13 +1480,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2053,13 +2053,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2255,7 +2255,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -134,7 +134,7 @@
.art_criteres {
font-family: "DM Sans", "sans-serif";
color: #104277;
color: #107758;
font-size: small;
padding-bottom: 0rem;
margin-bottom: 0rem;
@ -335,7 +335,7 @@
.art_criteres {
font-family: "DM Sans", "sans-serif";
color: #104277;
color: #107758;
font-size: small;
padding-bottom: 0rem;
margin-bottom: 0rem;
@ -549,7 +549,7 @@
.art_criteres {
font-family: "DM Sans", "sans-serif";
color: #104277;
color: #107758;
font-size: small;
padding-bottom: 0rem;
margin-bottom: 0rem;
@ -754,7 +754,7 @@
.art_criteres {
font-family: "DM Sans", "sans-serif";
color: #104277;
color: #107758;
font-size: small;
padding-bottom: 0rem;
margin-bottom: 0rem;

View File

@ -118,13 +118,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -672,13 +672,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1286,13 +1286,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1754,13 +1754,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1971,7 +1971,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -119,13 +119,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -678,13 +678,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1298,13 +1298,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1772,13 +1772,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1991,7 +1991,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -186,7 +186,7 @@
.detail_submenu:focus,
.detail_submenu:active,
.detail_submenu:checked {
background-color: #104277;
background-color: #107758;
color: white;
}
}

View File

@ -127,13 +127,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -674,13 +674,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -790,7 +790,7 @@
padding: 0.3rem;
width: 80%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}
.css-1x5jdmq {
@ -1280,13 +1280,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1409,7 +1409,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}
.css-1x5jdmq {
@ -1759,13 +1759,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1964,7 +1964,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -167,13 +167,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -785,13 +785,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1459,13 +1459,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2004,13 +2004,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2203,7 +2203,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -167,13 +167,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -785,13 +785,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1459,13 +1459,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2004,13 +2004,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2203,7 +2203,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -73,7 +73,7 @@
padding: 10px;
border-radius: 1rem;
text-align: left;
background-color: #104277;
background-color: #107758;
color: white;
font-size: small;
font-family: "DM Sans", "sans-serif";
@ -325,7 +325,7 @@
padding: 10px;
border-radius: 1rem;
text-align: left;
background-color: #104277;
background-color: #107758;
color: white;
font-size: medium;
font-family: "DM Sans", "sans-serif";
@ -375,7 +375,7 @@
padding: 10px;
border-radius: 1rem;
margin-right: 0.5%;
background-color: #104277;
background-color: #107758;
text-align: left;
color: white;
}
@ -735,7 +735,7 @@
padding: 10px;
border-radius: 1rem;
text-align: left;
background-color: #104277;
background-color: #107758;
color: white;
font-size: medium;
font-family: "DM Sans", "sans-serif";
@ -779,7 +779,7 @@
padding: 10px;
border-radius: 1rem;
margin-right: 0.5%;
background-color: #104277;
background-color: #107758;
text-align: left;
color: white;
}
@ -1119,7 +1119,7 @@
padding: 10px;
border-radius: 1rem;
text-align: left;
background-color: #104277;
background-color: #107758;
color: white;
font-size: small;
font-family: "DM Sans", "sans-serif";
@ -1162,7 +1162,7 @@
padding: 10px;
border-radius: 1rem;
margin-right: 0.5%;
background-color: #104277;
background-color: #107758;
text-align: left;
color: white;
}

View File

@ -37,7 +37,7 @@
padding: 10px;
border-radius: 1rem;
text-align: left;
background-color: #104277;
background-color: #107758;
color: white;
font-size: small;
font-family: "DM Sans", "sans-serif";
@ -167,7 +167,7 @@
padding: 10px;
border-radius: 1rem;
text-align: left;
background-color: #104277;
background-color: #107758;
color: white;
font-size: medium;
font-family: "DM Sans", "sans-serif";
@ -229,7 +229,7 @@
padding: 10px;
border-radius: 1rem;
text-align: left;
background-color: #104277;
background-color: #107758;
color: white;
font-size: large;
font-family: "DM Sans", "sans-serif";

View File

@ -166,13 +166,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -818,13 +818,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1521,13 +1521,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2126,13 +2126,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2372,7 +2372,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -337,13 +337,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1808,13 +1808,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -3892,13 +3892,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -5974,13 +5974,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -6047,8 +6047,8 @@
text-align: right;
padding-right: 2rem;
border-radius: 20rem;
background-color: #104277;
border: 2px solid #104277;
background-color: #107758;
border: 2px solid #107758;
width: 12rem;
box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.5);

View File

@ -523,7 +523,7 @@
padding: 10px;
border-radius: 1rem;
margin-right: 0.5%;
background-color: #104277;
background-color: #107758;
text-align: left;
color: white;
}

View File

@ -241,7 +241,7 @@
.btonPosterComment {
border-radius: 10rem;
background: #104277;
background: #107758;
font-size: 0.75rem;
}
@ -627,7 +627,7 @@
.btonPosterComment {
border-radius: 10rem;
background: #104277;
background: #107758;
font-size: 0.75rem;
}
@ -1017,7 +1017,7 @@
.btonPosterComment {
border-radius: 10rem;
background: #104277;
background: #107758;
font-size: 0.9rem;
}
@ -1160,7 +1160,7 @@
@media only screen and (min-width: 1200px) {
.btonPosterComment {
border-radius: 10rem;
background: #104277;
background: #107758;
font-size: 1rem;
}

View File

@ -114,7 +114,7 @@
text-align: center;
width: 100%;
height: 100%;
color: #104277;
color: #107758;
font-size: small;
}
@ -476,7 +476,7 @@
padding-bottom: auto;
word-break: break-word;
margin-right: 0.5rem;
color: #104277;
color: #107758;
font-size: 0.75rem;
white-space: nowrap;
width: 30%;
@ -641,12 +641,12 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -683,7 +683,7 @@
margin-bottom: 0.8rem;
color: white;
cursor: pointer;
background-color: #104277;
background-color: #107758;
font-weight: normal;
border-radius: 10px;
margin-top: 1rem;
@ -1146,12 +1146,12 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1188,7 +1188,7 @@
margin-bottom: 0.8rem;
color: white;
cursor: pointer;
background-color: #104277;
background-color: #107758;
font-weight: normal;
border-radius: 10px;
margin-top: 1rem;
@ -1650,12 +1650,12 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1692,7 +1692,7 @@
margin-bottom: 0.8rem;
color: white;
cursor: pointer;
background-color: #104277;
background-color: #107758;
font-weight: normal;
border-radius: 10px;
margin-top: 1rem;
@ -2164,12 +2164,12 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2206,7 +2206,7 @@
margin-bottom: 0.8rem;
color: white;
cursor: pointer;
background-color: #104277;
background-color: #107758;
font-weight: normal;
border-radius: 10px;
margin-top: 1rem;
@ -2283,7 +2283,7 @@
}
.gest_bton_popup{
background: #104277;
background: #107758;
color: white;
padding: 5px;
border-radius: 5px;

View File

@ -337,13 +337,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -696,13 +696,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1054,13 +1054,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1410,13 +1410,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1481,8 +1481,8 @@
text-align: right;
padding-right: 2rem;
border-radius: 20rem;
background-color: #104277;
border: 2px solid #104277;
background-color: #107758;
border: 2px solid #107758;
width: 12rem;
box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.5);

View File

@ -337,13 +337,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1812,13 +1812,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -3869,13 +3869,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -5924,13 +5924,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -5997,8 +5997,8 @@
text-align: right;
padding-right: 2rem;
border-radius: 20rem;
background-color: #104277;
border: 2px solid #104277;
background-color: #107758;
border: 2px solid #107758;
width: 12rem;
box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.5);

View File

@ -337,13 +337,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1670,13 +1670,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -3720,13 +3720,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -5772,13 +5772,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -5846,8 +5846,8 @@
text-align: right;
padding-right: 2rem;
border-radius: 20rem;
background-color: #104277;
border: 2px solid #104277;
background-color: #107758;
border: 2px solid #107758;
width: 12rem;
box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.5);

View File

@ -166,13 +166,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -820,13 +820,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1529,13 +1529,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2123,13 +2123,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2353,7 +2353,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -154,13 +154,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -735,13 +735,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -863,7 +863,7 @@
padding: 0.3rem;
width: 80%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}
.css-1x5jdmq {
@ -1374,13 +1374,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1503,7 +1503,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}
.css-1x5jdmq {
@ -1881,13 +1881,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2087,7 +2087,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -32,7 +32,7 @@
}
.css-1s2u09g-control {
background: #104277;
background: #107758;
font-weight: bold;
letter-spacing: 2px;
color: white !important;
@ -453,13 +453,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -937,13 +937,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1423,13 +1423,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1902,13 +1902,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}

View File

@ -181,13 +181,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -802,13 +802,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1465,13 +1465,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2005,13 +2005,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2266,7 +2266,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -131,13 +131,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -700,13 +700,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -828,7 +828,7 @@
padding: 0.3rem;
width: 80%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}
.css-1x5jdmq {
@ -1343,13 +1343,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1472,7 +1472,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}
.css-1x5jdmq {
@ -1876,13 +1876,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2085,7 +2085,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -132,13 +132,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -706,13 +706,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -834,7 +834,7 @@
padding: 0.3rem;
width: 80%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}
.css-1x5jdmq {
@ -1339,13 +1339,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1468,7 +1468,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}
.css-1x5jdmq {
@ -1866,13 +1866,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2068,7 +2068,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -181,13 +181,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -804,13 +804,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1465,13 +1465,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2005,13 +2005,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2266,7 +2266,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -465,7 +465,7 @@
top: 5rem;
z-index: 1;
width: 100%;
//background: #104277;
//background: #107758;
height: 4000px;
}
@ -1508,7 +1508,7 @@
// top: 8rem;
z-index: 1;
width: 100%;
//background: #104277;
//background: #107758;
height: 4000px;
}
@ -2208,7 +2208,7 @@
top: 9rem;
z-index: 1;
width: 100%;
background: #104277;
background: #107758;
}
.pieddepage {
@ -2566,7 +2566,7 @@
top: 4.3rem;
z-index: 1;
width: 100%;
//background: #104277;
//background: #107758;
height: 4000px;
}
@ -3269,7 +3269,7 @@
top: 7rem;
z-index: 1;
width: 100%;
background: #104277;
background: #107758;
}
.pieddepage {
@ -3628,7 +3628,7 @@
top: 3.2rem;
z-index: 1;
width: 100%;
//background: #104277;
//background: #107758;
height: 4000px;
}

View File

@ -43,7 +43,7 @@
.Box_div {
padding: 1rem 1rem;
background: #104277;
background: #107758;
color: white !important;
bottom: 0;
width: 100%;
@ -125,7 +125,7 @@
.Box_div {
padding: 1rem 1rem;
background: #104277;
background: #107758;
color: white !important;
bottom: 0;
width: 100%;
@ -207,7 +207,7 @@
.Box_div {
padding: 1rem 1rem;
background: #104277;
background: #107758;
color: white !important;
bottom: 0;
width: 100%;
@ -289,7 +289,7 @@
.Box_div {
padding: 1rem 1rem;
background: #104277;
background: #107758;
color: white !important;
bottom: 0;
width: 100%;

View File

@ -43,7 +43,7 @@
.Box_div {
padding: 1rem 1rem;
background: #104277;
background: #107758;
color: white !important;
bottom: 0;
width: 100%;
@ -125,7 +125,7 @@
.Box_div {
padding: 1rem 1rem;
background: #104277;
background: #107758;
color: white !important;
bottom: 0;
width: 100%;
@ -207,7 +207,7 @@
.Box_div {
padding: 1rem 1rem;
background: #104277;
background: #107758;
color: white !important;
bottom: 0;
width: 100%;
@ -289,7 +289,7 @@
.Box_div {
padding: 1rem 1rem;
background: #104277;
background: #107758;
color: white !important;
bottom: 0;
width: 100%;

View File

@ -77,7 +77,7 @@
.criteres {
font-size: 0.69rem;
font-family: "DM Sans", "sans-serif";
color: #104277;
color: #107758;
//font-size: smaller;
padding-bottom: 0rem;
margin-bottom: 0rem;
@ -374,7 +374,7 @@
padding: 0.2rem;
width: 95%;
background: #FFFFFF;
color: #104277;
color: #107758;
margin-right: 10px;
height: 2rem;
margin: 5px;
@ -386,7 +386,7 @@
font-size: small;
padding: 0.2rem;
width: 95%;
background: #104277;
background: #107758;
color: white;
margin-right: 10px;
height: 2rem;
@ -531,7 +531,7 @@
.criteres {
font-family: "DM Sans", "sans-serif";
color: #104277;
color: #107758;
font-size: 0.70rem;
padding-bottom: 0rem;
margin-bottom: 0rem;
@ -771,7 +771,7 @@
padding: 0.2rem;
width: 90%;
background: #FFFFFF !important;
color: #104277 !important;
color: #107758 !important;
margin-right: 10px;
height: 2rem;
margin: 5px;
@ -783,7 +783,7 @@
font-size: small;
padding: 0.2rem;
width: 90%;
background-color: #104277 !important;
background-color: #107758 !important;
color: white !important;
margin-right: 10px;
height: 2rem;
@ -878,7 +878,7 @@
.criteres {
font-family: "DM Sans", "sans-serif";
color: #104277;
color: #107758;
font-size: 0.8rem;
padding-bottom: 0rem;
margin-bottom: 0rem;
@ -1116,7 +1116,7 @@
padding: 0.2rem;
width: 60%;
background: #FFFFFF !important;
color: #104277 !important;
color: #107758 !important;
margin-right: 10px;
height: 2rem;
margin: 5px;
@ -1128,7 +1128,7 @@
font-size: small;
padding: 0.2rem;
width: 60%;
background-color: #104277 !important;
background-color: #107758 !important;
color: white !important;
margin-right: 10px;
height: 2rem;
@ -1232,7 +1232,7 @@
.criteres {
font-family: "DM Sans", "sans-serif";
color: #104277;
color: #107758;
font-size: small;
padding-bottom: 0rem;
margin-bottom: 0rem;
@ -1475,7 +1475,7 @@
padding: 0.2rem;
width: 70%;
background: #FFFFFF !important;
color: #104277 !important;
color: #107758 !important;
margin-right: 10px;
height: 2rem;
margin: 5px;
@ -1487,7 +1487,7 @@
font-size: small;
padding: 0.2rem;
width: 70%;
background-color: #104277 !important;
background-color: #107758 !important;
color: white !important;
margin-right: 10px;
height: 2rem;

View File

@ -39,7 +39,7 @@
.criteres {
font-size: 0.69rem;
font-family: "DM Sans", "sans-serif";
color: #104277;
color: #107758;
font-size: small;
padding-bottom: 0rem;
margin-bottom: 0rem;
@ -222,7 +222,7 @@
.criteres {
font-family: "DM Sans", "sans-serif";
color: #104277;
color: #107758;
font-size: 0.77rem;
padding-bottom: 0rem;
margin-bottom: 0rem;
@ -347,7 +347,7 @@
.criteres {
font-family: "DM Sans", "sans-serif";
color: #104277;
color: #107758;
font-size: 0.8rem;
padding-bottom: 0rem;
margin-bottom: 0rem;
@ -471,7 +471,7 @@
.criteres {
font-family: "DM Sans", "sans-serif";
color: #104277;
color: #107758;
font-size: small;
padding-bottom: 0rem;
margin-bottom: 0rem;

View File

@ -81,7 +81,7 @@
.criteres {
font-size: 0.69rem;
font-family: "DM Sans", "sans-serif";
color: #104277;
color: #107758;
//font-size: smaller;
padding-bottom: 0rem;
margin-bottom: 0rem;
@ -380,7 +380,7 @@
padding: 0.2rem;
width: 95%;
background: #FFFFFF;
color: #104277;
color: #107758;
margin-right: 10px;
height: 2rem;
margin: 5px;
@ -392,7 +392,7 @@
font-size: small;
padding: 0.2rem;
width: 95%;
background: #104277;
background: #107758;
color: white;
margin-right: 10px;
height: 2rem;
@ -560,7 +560,7 @@
.criteres {
font-family: "DM Sans", "sans-serif";
color: #104277;
color: #107758;
font-size: 0.70rem;
padding-bottom: 0rem;
margin-bottom: 0rem;
@ -801,7 +801,7 @@
padding: 0.2rem;
width: 90%;
background: #FFFFFF !important;
color: #104277 !important;
color: #107758 !important;
margin-right: 10px;
height: 2rem;
margin: 5px;
@ -813,7 +813,7 @@
font-size: small;
padding: 0.2rem;
width: 90%;
background-color: #104277 !important;
background-color: #107758 !important;
color: white !important;
margin-right: 10px;
height: 2rem;
@ -931,7 +931,7 @@
.criteres {
font-family: "DM Sans", "sans-serif";
color: #104277;
color: #107758;
font-size: 0.8rem;
padding-bottom: 0rem;
margin-bottom: 0rem;
@ -1170,7 +1170,7 @@
padding: 0.2rem;
width: 60%;
background: #FFFFFF !important;
color: #104277 !important;
color: #107758 !important;
margin-right: 10px;
height: 2rem;
margin: 5px;
@ -1182,7 +1182,7 @@
font-size: small;
padding: 0.2rem;
width: 60%;
background-color: #104277 !important;
background-color: #107758 !important;
color: white !important;
margin-right: 10px;
height: 2rem;
@ -1308,7 +1308,7 @@
.criteres {
font-family: "DM Sans", "sans-serif";
color: #104277;
color: #107758;
font-size: small;
padding-bottom: 0rem;
margin-bottom: 0rem;
@ -1605,7 +1605,7 @@
padding: 0.2rem;
width: 70%;
background: #FFFFFF !important;
color: #104277 !important;
color: #107758 !important;
margin-right: 10px;
height: 2rem;
margin: 5px;
@ -1617,7 +1617,7 @@
font-size: small;
padding: 0.2rem;
width: 70%;
background-color: #104277 !important;
background-color: #107758 !important;
color: white !important;
margin-right: 10px;
height: 2rem;

View File

@ -128,7 +128,7 @@
.criteres {
font-family: "DM Sans", "sans-serif";
color: #104277;
color: #107758;
font-size: 0.75rem;
padding-bottom: 0rem;
margin-bottom: 0rem;
@ -367,7 +367,7 @@
padding: 0.2rem;
width: 60%;
background: #FFFFFF !important;
color: #104277 !important;
color: #107758 !important;
margin-right: 10px;
height: 2rem;
margin: 5px;
@ -379,7 +379,7 @@
font-size: small;
padding: 0.2rem;
width: 60%;
background-color: #104277 !important;
background-color: #107758 !important;
color: white !important;
margin-right: 10px;
height: 2rem;
@ -464,7 +464,7 @@
.criteres {
font-family: "DM Sans", "sans-serif";
color: #104277;
color: #107758;
font-size: 0.8rem;
padding-bottom: 0rem;
margin-bottom: 0rem;
@ -702,7 +702,7 @@
padding: 0.2rem;
width: 60%;
background: #FFFFFF !important;
color: #104277 !important;
color: #107758 !important;
margin-right: 10px;
height: 2rem;
margin: 5px;
@ -714,7 +714,7 @@
font-size: small;
padding: 0.2rem;
width: 60%;
background-color: #104277 !important;
background-color: #107758 !important;
color: white !important;
margin-right: 10px;
height: 2rem;
@ -806,7 +806,7 @@
.criteres {
font-family: "DM Sans", "sans-serif";
color: #104277;
color: #107758;
font-size: small;
padding-bottom: 0rem;
margin-bottom: 0rem;
@ -1049,7 +1049,7 @@
padding: 0.2rem;
width: 70%;
background: #FFFFFF !important;
color: #104277 !important;
color: #107758 !important;
margin-right: 10px;
height: 2rem;
margin: 5px;
@ -1061,7 +1061,7 @@
font-size: small;
padding: 0.2rem;
width: 70%;
background-color: #104277 !important;
background-color: #107758 !important;
color: white !important;
margin-right: 10px;
height: 2rem;
@ -1146,7 +1146,7 @@
.criteres {
font-size: 20px;
font-family: "DM Sans", "sans-serif";
color: #104277;
color: #107758;
//font-size: smaller;
padding-bottom: 0rem;
margin-bottom: 0rem;
@ -1444,7 +1444,7 @@
padding: 0.2rem;
width: 95%;
background: #FFFFFF;
color: #104277;
color: #107758;
margin-right: 10px;
height: 2rem;
margin: 5px;
@ -1456,7 +1456,7 @@
font-size: 20px;
padding: 0.2rem;
width: 95%;
background: #104277;
background: #107758;
color: white;
margin-right: 10px;
height: 2rem;

View File

@ -81,7 +81,7 @@
.criteres {
font-size: 0.69rem;
font-family: "DM Sans", "sans-serif";
color: #104277;
color: #107758;
//font-size: smaller;
padding-bottom: 0rem;
margin-bottom: 0rem;
@ -380,7 +380,7 @@
padding: 0.2rem;
width: 95%;
background: #FFFFFF;
color: #104277;
color: #107758;
margin-right: 10px;
height: 2rem;
margin: 5px;
@ -392,7 +392,7 @@
font-size: small;
padding: 0.2rem;
width: 95%;
background: #104277;
background: #107758;
color: white;
margin-right: 10px;
height: 2rem;
@ -560,7 +560,7 @@
.criteres {
font-family: "DM Sans", "sans-serif";
color: #104277;
color: #107758;
font-size: 0.70rem;
padding-bottom: 0rem;
margin-bottom: 0rem;
@ -801,7 +801,7 @@
padding: 0.2rem;
width: 90%;
background: #FFFFFF !important;
color: #104277 !important;
color: #107758 !important;
margin-right: 10px;
height: 2rem;
margin: 5px;
@ -813,7 +813,7 @@
font-size: small;
padding: 0.2rem;
width: 90%;
background-color: #104277 !important;
background-color: #107758 !important;
color: white !important;
margin-right: 10px;
height: 2rem;
@ -931,7 +931,7 @@
.criteres {
font-family: "DM Sans", "sans-serif";
color: #104277;
color: #107758;
font-size: 0.8rem;
padding-bottom: 0rem;
margin-bottom: 0rem;
@ -1170,7 +1170,7 @@
padding: 0.2rem;
width: 60%;
background: #FFFFFF !important;
color: #104277 !important;
color: #107758 !important;
margin-right: 10px;
height: 2rem;
margin: 5px;
@ -1182,7 +1182,7 @@
font-size: small;
padding: 0.2rem;
width: 60%;
background-color: #104277 !important;
background-color: #107758 !important;
color: white !important;
margin-right: 10px;
height: 2rem;
@ -1308,7 +1308,7 @@
.criteres {
font-family: "DM Sans", "sans-serif";
color: #104277;
color: #107758;
font-size: small;
padding-bottom: 0rem;
margin-bottom: 0rem;
@ -1605,7 +1605,7 @@
padding: 0.2rem;
width: 70%;
background: #FFFFFF !important;
color: #104277 !important;
color: #107758 !important;
margin-right: 10px;
height: 2rem;
margin: 5px;
@ -1617,7 +1617,7 @@
font-size: small;
padding: 0.2rem;
width: 70%;
background-color: #104277 !important;
background-color: #107758 !important;
color: white !important;
margin-right: 10px;
height: 2rem;

View File

@ -169,13 +169,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -295,7 +295,7 @@
padding: 0.3rem;
width: 100%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}
.bton_supprimer {
@ -596,13 +596,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -722,7 +722,7 @@
padding: 0.3rem;
width: 80%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}
.bton_supprimer {
@ -1016,13 +1016,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1143,7 +1143,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}
@ -1440,13 +1440,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1651,7 +1651,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}
.bton_supprimer {

View File

@ -132,13 +132,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -706,13 +706,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -834,7 +834,7 @@
padding: 0.3rem;
width: 80%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}
.css-1x5jdmq {
@ -1339,13 +1339,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1468,7 +1468,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}
.css-1x5jdmq {
@ -1866,13 +1866,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2068,7 +2068,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -166,13 +166,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -798,13 +798,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1486,13 +1486,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2059,13 +2059,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2289,7 +2289,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -184,13 +184,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -359,13 +359,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -533,13 +533,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -702,13 +702,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}

View File

@ -5,7 +5,7 @@
z-index: 9999;
}
.tox-statusbar__branding {
display: none !important;
}
@ -61,9 +61,9 @@
text-align: center;
margin-bottom: 0.8rem;
color: white;
cursor: pointer;
cursor: normal;
font-style: italic;
background-color: #104277;
background-color: #107758;
font-weight: normal;
padding-top: 5px;
border-radius: 5px;
@ -117,7 +117,7 @@
padding: 0.3rem;
width: 90%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
height: 2rem;
}
@ -181,9 +181,9 @@
text-align: center;
margin-bottom: 0.8rem;
color: white;
cursor: pointer;
cursor: normal;
font-style: italic;
background-color: #104277;
background-color: #107758;
font-weight: normal;
height: 2rem;
padding-top: 5px;
@ -237,7 +237,7 @@
padding: 0.3rem;
width: 80%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}
.block_spec_fields {
@ -300,9 +300,9 @@
text-align: center;
margin-bottom: 0.8rem;
color: white;
cursor: pointer;
cursor: normal;
font-style: italic;
background-color: #104277;
background-color: #107758;
font-weight: normal;
height: 2rem;
padding-top: 5px;
@ -357,7 +357,7 @@
padding: 0.3rem;
width: 50%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
height: 2rem;
}
@ -421,9 +421,9 @@
text-align: center;
margin-bottom: 0.8rem;
color: white;
cursor: pointer;
cursor: normal;
font-style: italic;
background-color: #104277;
background-color: #107758;
font-weight: normal;
height: 2rem;
padding-top: 5px;
@ -481,7 +481,7 @@
padding: 0.3rem;
width: 50%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
height: 2rem;
}

View File

@ -117,13 +117,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -687,13 +687,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1299,13 +1299,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1789,13 +1789,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2047,7 +2047,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -154,13 +154,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -735,13 +735,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -863,7 +863,7 @@
padding: 0.3rem;
width: 80%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}
.css-1x5jdmq {
@ -1374,13 +1374,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1503,7 +1503,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}
.css-1x5jdmq {
@ -1881,13 +1881,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2087,7 +2087,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -117,13 +117,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -687,13 +687,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1299,13 +1299,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1789,13 +1789,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2047,7 +2047,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -132,13 +132,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -714,13 +714,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -842,7 +842,7 @@
padding: 0.3rem;
width: 80%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}
.css-1x5jdmq {
@ -1354,13 +1354,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1483,7 +1483,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}
.css-1x5jdmq {
@ -1887,13 +1887,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2090,7 +2090,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -287,7 +287,7 @@
padding: 10px;
border-radius: 1rem;
margin-right: 0.5%;
background-color: #104277;
background-color: #107758;
text-align: left;
color: white;
}

View File

@ -129,13 +129,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -681,13 +681,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -809,7 +809,7 @@
padding: 0.3rem;
width: 80%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}
.css-1x5jdmq {
@ -1293,13 +1293,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1422,7 +1422,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}
.css-1x5jdmq {
@ -1766,13 +1766,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1971,7 +1971,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -120,13 +120,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -660,13 +660,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -776,7 +776,7 @@
padding: 0.3rem;
width: 80%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}
.css-1x5jdmq {
@ -1261,13 +1261,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1391,7 +1391,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}
.css-1x5jdmq {
@ -1735,13 +1735,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1938,7 +1938,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -137,13 +137,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -748,13 +748,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1402,13 +1402,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1933,13 +1933,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2194,7 +2194,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -139,13 +139,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -751,13 +751,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1406,13 +1406,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1938,13 +1938,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2199,7 +2199,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -172,13 +172,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -921,13 +921,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1715,13 +1715,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2391,13 +2391,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2621,7 +2621,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -181,13 +181,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -785,13 +785,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1432,13 +1432,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1956,13 +1956,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2217,7 +2217,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -78,7 +78,7 @@
padding: 10px;
border-radius: 0rem;
text-align: left;
background-color: #104277;
background-color: #107758;
color: white;
font-size: small;
font-family: "DM Sans", "sans-serif";
@ -307,7 +307,7 @@
padding: 10px;
border-radius: 1rem;
text-align: left;
//background-color: #104277;
//background-color: #107758;
color: white;
font-size: small;
font-family: "DM Sans", "sans-serif";
@ -546,7 +546,7 @@
padding: 10px;
border-radius: 0rem;
text-align: left;
background-color: #104277;
background-color: #107758;
color: white;
font-size: medium;
font-family: "DM Sans", "sans-serif";
@ -596,7 +596,7 @@
padding: 10px;
border-radius: 1rem;
margin-right: 0.5%;
background-color: #104277;
background-color: #107758;
text-align: left;
color: white;
}
@ -914,7 +914,7 @@
padding: 10px;
border-radius: 1rem;
text-align: left;
//background-color: #104277;
//background-color: #107758;
color: white;
font-size: small;
font-family: "DM Sans", "sans-serif";
@ -1154,7 +1154,7 @@
padding: 10px;
//border-radius: 1rem;
text-align: left;
background-color: #104277;
background-color: #107758;
color: white;
font-size: medium;
font-family: "DM Sans", "sans-serif";
@ -1198,7 +1198,7 @@
padding: 10px;
border-radius: 1rem;
margin-right: 0.5%;
background-color: #104277;
background-color: #107758;
text-align: left;
color: white;
}
@ -1496,7 +1496,7 @@
padding: 10px;
border-radius: 1rem;
text-align: left;
//background-color: #104277;
//background-color: #107758;
color: white;
font-size: small;
font-family: "DM Sans", "sans-serif";
@ -1701,7 +1701,7 @@
padding: 10px;
border-radius: 0rem;
text-align: left;
background-color: #104277;
background-color: #107758;
color: white;
font-size: small;
font-family: "DM Sans", "sans-serif";
@ -1744,7 +1744,7 @@
padding: 10px;
border-radius: 1rem;
margin-right: 0.5%;
background-color: #104277;
background-color: #107758;
text-align: left;
color: white;
}
@ -2095,7 +2095,7 @@
padding: 10px;
border-radius: 1rem;
text-align: left;
//background-color: #104277;
//background-color: #107758;
color: white;
font-size: small;
font-family: "DM Sans", "sans-serif";

View File

@ -187,13 +187,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -791,13 +791,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1438,13 +1438,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1962,13 +1962,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2223,7 +2223,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -188,13 +188,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -800,13 +800,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1455,13 +1455,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1987,13 +1987,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2248,7 +2248,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -181,13 +181,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -785,13 +785,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1432,13 +1432,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1956,13 +1956,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2217,7 +2217,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -118,13 +118,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -672,13 +672,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1286,13 +1286,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1754,13 +1754,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1971,7 +1971,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -168,13 +168,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -800,13 +800,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1488,13 +1488,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2060,13 +2060,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2290,7 +2290,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -168,13 +168,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -800,13 +800,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1488,13 +1488,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2060,13 +2060,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2290,7 +2290,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -166,13 +166,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -798,13 +798,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1486,13 +1486,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2059,13 +2059,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2289,7 +2289,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -172,13 +172,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -921,13 +921,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1715,13 +1715,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2391,13 +2391,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2621,7 +2621,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -117,13 +117,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -687,13 +687,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1299,13 +1299,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1789,13 +1789,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2047,7 +2047,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -168,13 +168,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -800,13 +800,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1488,13 +1488,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2060,13 +2060,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2290,7 +2290,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -168,13 +168,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -800,13 +800,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1488,13 +1488,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2060,13 +2060,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2290,7 +2290,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -168,13 +168,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -800,13 +800,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1488,13 +1488,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2060,13 +2060,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2290,7 +2290,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -168,13 +168,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -800,13 +800,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -1488,13 +1488,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2060,13 +2060,13 @@
.detail_class_submenu:hover:active,
.detail_class_submenu:hover {
background-color: #104277;
background-color: #107758;
color: white;
}
.detail_class_submenu:focus {
//border: 3px dotted green;
background-color: #104277;
background-color: #107758;
color: white;
}
@ -2290,7 +2290,7 @@
padding: 0.3rem;
width: 60%;
background-color: white;
color: #104277 !important;
color: #107758 !important;
}

View File

@ -374,7 +374,7 @@
padding-bottom: auto;
word-break: break-word;
margin-right: 0.5rem;
color: #104277;
color: #107758;
font-size: 0.75rem;
white-space: nowrap;
width: 30%;
@ -2882,7 +2882,7 @@
padding-bottom: auto;
word-break: break-word;
margin-right: 0.5rem;
color: #104277;
color: #107758;
font-size: 0.75rem;
white-space: nowrap;
width: 30%;
@ -6154,7 +6154,7 @@
padding-bottom: auto;
word-break: break-word;
margin-right: 0.5rem;
color: #104277;
color: #107758;
font-size: 0.9rem;
white-space: nowrap;
width: 30%;
@ -9444,7 +9444,7 @@
padding-bottom: auto;
word-break: break-word;
margin-right: 0.5rem;
color: #104277;
color: #107758;
font-size: 0.9rem;
white-space: nowrap;
width: 30%;
@ -12757,7 +12757,7 @@
padding-bottom: auto;
word-break: break-word;
margin-right: 0.5rem;
color: #104277;
color: #107758;
font-size: 0.75rem;
white-space: nowrap;
width: 30%;
@ -15907,7 +15907,7 @@
}
.dHtlYi {
background: #104277;
background: #107758;
}
.bQSvsY {

View File

@ -379,7 +379,7 @@
padding-bottom: auto;
word-break: break-word;
margin-right: 0.5rem;
color: #104277;
color: #107758;
font-size: 0.75rem;
white-space: nowrap;
width: 30%;
@ -2903,7 +2903,7 @@
padding-bottom: auto;
word-break: break-word;
margin-right: 0.5rem;
color: #104277;
color: #107758;
font-size: 0.75rem;
white-space: nowrap;
width: 30%;
@ -6183,7 +6183,7 @@
padding-bottom: auto;
word-break: break-word;
margin-right: 0.5rem;
color: #104277;
color: #107758;
font-size: 0.9rem;
white-space: nowrap;
width: 30%;
@ -9462,7 +9462,7 @@
padding-bottom: auto;
word-break: break-word;
margin-right: 0.5rem;
color: #104277;
color: #107758;
font-size: 0.9rem;
white-space: nowrap;
width: 30%;
@ -12763,7 +12763,7 @@
padding-bottom: auto;
word-break: break-word;
margin-right: 0.5rem;
color: #104277;
color: #107758;
font-size: 0.75rem;
white-space: nowrap;
width: 30%;
@ -15902,7 +15902,7 @@
}
.dHtlYi {
background: #104277;
background: #107758;
}
.bQSvsY {

Some files were not shown because too many files have changed in this diff Show More