Skip to content

Commit cd78ee6

Browse files
Merge remote-tracking branch 'upstream/master' into GH-4980
2 parents c17f419 + f490bdd commit cd78ee6

File tree

564 files changed

+967025
-354390
lines changed

Some content is hidden

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

564 files changed

+967025
-354390
lines changed

.github/workflows/behat.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
php-versions: ['8.2', '8.3']
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v6
1818

1919
- name: Setup apache
2020
run: |
@@ -113,7 +113,7 @@ jobs:
113113
sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 & # optional
114114
115115
- name: Set up JDK
116-
uses: actions/setup-java@v4
116+
uses: actions/setup-java@v5
117117
with:
118118
distribution: 'temurin'
119119
java-version: '17'

.github/workflows/format_code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
php-versions: ['8.2']
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v6
2121

2222
- name: Setup PHP, with composer and extensions
2323
uses: shivammathur/setup-php@v2

.github/workflows/php_analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
php-versions: ['8.2']
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v6
1818

1919
- name: Setup PHP, with composer and extensions
2020
uses: shivammathur/setup-php@v2

.github/workflows/phpunit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
php-versions: ['8.2']
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v6
2121

2222
- name: Setup node
2323
run: |
Lines changed: 300 additions & 300 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
nodeLinker: node-modules
22

3-
yarnPath: .yarn/releases/yarn-4.10.3.cjs
3+
yarnPath: .yarn/releases/yarn-4.11.0.cjs

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ Install the software stack and Chamilo using the commands below.
5959
apt update && apt -y upgrade
6060
apt install -y apache2 libapache2-mod-php mariadb-client mariadb-server redis php-pear php-{apcu,bcmath,cli,curl,dev,gd,intl,ldap,mbstring,mysql,redis,soap,xml,zip} git unzip curl certbot
6161
mysql -e "GRANT ALL PRIVILEGES ON chamilo2.* TO chamilo2@localhost IDENTIFIED BY 'chamilo2';"
62-
cd /var/www && wget https://github.com/chamilo/chamilo-lms/releases/download/v2.0.0-alpha.2/chamilo-2.0.0-alpha.2.tar.gz
63-
tar zxf chamilo-2.0.0-alpha.2.tar.gz
64-
mv chamilo-2.0.0-alpha.2 chamilo
62+
cd /var/www && wget https://github.com/chamilo/chamilo-lms/releases/download/v2.0.0-beta.1/chamilo-2.0.0-beta.1.tar.gz
63+
tar zxf chamilo-2.0.0-beta.1.tar.gz
64+
mv chamilo-2.0.0-beta.1 chamilo
6565
cd chamilo
6666
cp public/main/install/apache.dist.conf /etc/apache2/sites-available/my.chamilo.net.conf
6767
a2ensite my.chamilo.net

assets/css/app.scss

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -985,6 +985,34 @@ img.course-tool__icon {
985985
}
986986
.app-breadcrumb .p-breadcrumb-separator { padding-inline: .25rem; }
987987

988+
// Glossary auto-highlighted term
989+
.glossary-term {
990+
position: relative;
991+
cursor: help;
992+
font-weight: 500;
993+
color: #2563eb;
994+
border-bottom: 1px dotted currentColor;
995+
text-decoration: none;
996+
997+
&::after {
998+
content: "";
999+
font-size: 0.7em;
1000+
margin-left: 0.15rem;
1001+
vertical-align: super;
1002+
opacity: 0.7;
1003+
}
1004+
1005+
&:hover {
1006+
color: #1d4ed8;
1007+
border-bottom-style: solid;
1008+
}
1009+
1010+
&:focus-visible {
1011+
outline: 2px solid currentColor;
1012+
outline-offset: 2px;
1013+
}
1014+
}
1015+
9881016
@import "~@fancyapps/fancybox/dist/jquery.fancybox.css";
9891017
@import "~timepicker/jquery.timepicker.min.css";
9901018
@import "~qtip2/dist/jquery.qtip.min.css";

assets/css/scss/_admin_index.scss

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
11
.admin-index {
2-
@apply gap-4 grid grid-cols-1 lg:grid-cols-2 xl:grid-cols-3;
3-
//@apply gap-4 lg:columns-2 xl:columns-3 space-y-4;
2+
@apply grid gap-4 grid-cols-1 md:grid-cols-2 xl:grid-cols-3 items-start;
3+
4+
&__block-container {
5+
@apply h-full;
6+
}
47

58
&__block {
6-
@apply flex flex-col p-4 gap-4 rounded-lg shadow-lg border border-solid border-gray-25 break-inside-avoid-column;
9+
@apply flex flex-col h-full p-4 gap-4 rounded-lg shadow-md border border-solid border-gray-25 bg-white;
10+
}
11+
12+
&__block-container--full {
13+
@apply col-span-1 md:col-span-2 xl:col-span-3;
714
}
815

916
.p-menu {
10-
@apply border-none border-0 m-0 p-0 w-full;
17+
@apply border-none m-0 p-0 w-full;
1118
}
1219
}
1320

0 commit comments

Comments
 (0)