mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 02:39:10 -04:00
3.2.5
This commit is contained in:
BIN
public/android-chrome-192x192.png
Normal file
BIN
public/android-chrome-192x192.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.9 KiB |
BIN
public/android-chrome-512x512.png
Normal file
BIN
public/android-chrome-512x512.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 7.1 KiB |
BIN
public/apple-touch-icon.png
Normal file
BIN
public/apple-touch-icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.5 KiB |
26
public/css/custom.css
vendored
26
public/css/custom.css
vendored
@@ -1,3 +1,27 @@
|
||||
.text-excel {
|
||||
color: #0f9d58;
|
||||
}
|
||||
|
||||
.text-word {
|
||||
color: #4b87e4;
|
||||
}
|
||||
|
||||
.text-image {
|
||||
color: #d93025;
|
||||
}
|
||||
|
||||
.text-pdf {
|
||||
color: #ea4335;
|
||||
}
|
||||
|
||||
.text-powerpoint {
|
||||
color: #fd7541;
|
||||
}
|
||||
|
||||
.text-code {
|
||||
color: #e16156;
|
||||
}
|
||||
|
||||
.word-wrap {
|
||||
white-space: normal;
|
||||
word-break: break-word;
|
||||
@@ -1724,4 +1748,4 @@ td{
|
||||
}
|
||||
h2 {
|
||||
text-transform: capitalize !important;
|
||||
}
|
||||
}
|
||||
|
||||
BIN
public/favicon-16x16.png
Normal file
BIN
public/favicon-16x16.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 290 B |
BIN
public/favicon-32x32.png
Normal file
BIN
public/favicon-32x32.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 532 B |
BIN
public/favicon.ico
Normal file
BIN
public/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
21
public/js/plugins/schedule/editor.js
vendored
21
public/js/plugins/schedule/editor.js
vendored
@@ -36,7 +36,24 @@ function initScheduleEditor(id, eventType)
|
||||
}
|
||||
});
|
||||
$('.richeditor').trumbowyg({
|
||||
lang: 'fr'
|
||||
lang: 'fr',
|
||||
btns: [
|
||||
['viewHTML'],
|
||||
['emoji'],
|
||||
['undo', 'redo'], // Only supported in Blink browsers
|
||||
['strong', 'em', 'del'],
|
||||
['superscript', 'subscript'],
|
||||
['fontfamily'],
|
||||
['fontsize'],
|
||||
['foreColor', 'backColor'],
|
||||
['link'],
|
||||
['insertImage'],
|
||||
['justifyLeft', 'justifyCenter', 'justifyRight', 'justifyFull'],
|
||||
['unorderedList', 'orderedList'],
|
||||
['horizontalRule'],
|
||||
['removeformat'],
|
||||
['fullscreen']
|
||||
]
|
||||
});
|
||||
$('select').selectpicker();
|
||||
|
||||
@@ -264,6 +281,7 @@ function selectCourseMode(mode, niveau, periode)
|
||||
$('#nameContainer'+niveau+'-'+periode).removeClass('d-none');
|
||||
$('#modeSwitchC'+niveau+'-'+periode).addClass('active');
|
||||
$('#modeSwitchO'+niveau+'-'+periode).removeClass('active');
|
||||
$('#use_course_n'+niveau+'_p'+periode).prop("checked", true);
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -274,6 +292,7 @@ function selectCourseMode(mode, niveau, periode)
|
||||
$('#nameContainer'+niveau+'-'+periode).addClass('d-none');
|
||||
$('#modeSwitchC'+niveau+'-'+periode).removeClass('active');
|
||||
$('#modeSwitchO'+niveau+'-'+periode).addClass('active');
|
||||
$('#use_course_n'+niveau+'_p'+periode).prop("checked", false);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user