Skip to content

Commit 89aa229

Browse files
Merge remote-tracking branch 'upstream/master' into GH-7514
2 parents adc690b + ca8dfd4 commit 89aa229

100 files changed

Lines changed: 6894 additions & 2210 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.opensourcefinder-verify

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,16 @@ chown -R root: .env config/
147147

148148
Your Chamilo is ready to use!
149149

150+
## Configuration
151+
152+
Most configuration changes are made through the administration page inside Chamilo's web interface, but the database connection
153+
and other settings critical to the Symfony layer are located in the `.env` file at the root of Chamilo.
154+
155+
Other core, Symfony-related, settings for advanced administration are located in the `config/packages/` folder (`*.yaml` files),
156+
but remember that these files are updated with each new version of Chamilo. Instead of modifying those directly, it is
157+
highly recommended to copy them into the `config/packages/prod/` folder and modifying them there (for your production
158+
environment). This will improve maintainability through different Chamilo upgrades in the future.
159+
150160
## Documentation
151161

152162
For more information on Chamilo 2, visit https://2.chamilo.org/documentation/index.html

assets/css/scss/organisms/_cards.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.p-card {
2-
@apply rounded-lg bg-white border border-gray-25 transition
2+
@apply rounded-lg bg-white border border-gray-25 transition isolate
33
hover:shadow-xl;
44

55
.p-card-body {
@@ -14,7 +14,7 @@
1414
@apply relative;
1515

1616
img {
17-
@apply rounded-t-lg object-cover;
17+
@apply rounded-t-lg object-cover w-full h-auto;
1818
}
1919
}
2020

assets/css/scss/organisms/_course_card.scss

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@
66
}
77

88
&__category-list {
9-
@apply absolute top-2 left-2 flex flex-wrap gap-1;
9+
@apply absolute top-2 left-2 flex flex-wrap gap-1 pointer-events-none;
1010
}
1111

1212
&__title {
13-
@apply text-gray-90 text-body-1 font-semibold space-y-2 flex items-center gap-2;
13+
@apply text-gray-90 text-body-1 font-semibold flex flex-col flex-1 justify-center gap-1;
1414

1515
.session {
16+
@apply flex flex-col;
17+
1618
&__title {
1719
@apply text-body-2 font-semibold;
1820
}
@@ -23,6 +25,22 @@
2325
}
2426
}
2527

28+
&__notification-button {
29+
@apply absolute right-3 top-3 inline-flex h-9 w-9 items-center justify-center rounded-full text-gray-50 pointer-events-auto hover:bg-white/90;
30+
31+
&--badge::before {
32+
@apply absolute right-0 top-0 h-4 w-4 rounded-full bg-danger content-[""];
33+
}
34+
}
35+
36+
&__completed-overlay {
37+
@apply absolute rounded-t-lg pointer-events-none bg-support-3 w-full h-full flex items-center justify-center;
38+
39+
.mdi {
40+
@apply text-white opacity-90 text-7xl/4;
41+
}
42+
}
43+
2644
&__language {
2745
@apply absolute bottom-2 right-2;
2846
}

assets/vue/components/basecomponents/BaseIcon.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const props = defineProps({
2121
size: {
2222
type: String,
2323
default: "normal",
24-
validator: (value) => ["big", "normal", "small"].includes(value),
24+
validator: (value) => ["big", "normal", "small", "custom"].includes(value),
2525
},
2626
title: {
2727
type: String,

assets/vue/components/basecomponents/ChamiloIcons.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,4 +160,6 @@ export const chamiloIconToClass = {
160160
"help": "mdi mdi-face-agent",
161161
"robot": "mdi mdi-robot",
162162
"compass": "mdi mdi-compass-outline",
163+
"globe": "mdi mdi-web",
164+
"notification": "mdi mdi-bell",
163165
}

assets/vue/components/course/AdvancedCourseFilters.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@
1111
/>
1212
</div>
1313

14-
<CourseCategorySelect v-model="model.categories" />
14+
<CourseCategorySelect
15+
v-model="model.categories"
16+
action="catalogue"
17+
/>
1518

1619
<template
1720
v-for="f in fields"

0 commit comments

Comments
 (0)