Compare commits

...

4 Commits

Author SHA1 Message Date
Peter Pfeufer
60c1d24d9e Merge branch 'docker-mariadb-lts' into 'master'
[CHANGE] Keep MariaDB up-to-date with the LTS cycle

See merge request allianceauth/allianceauth!1745
2025-08-10 02:31:22 +00:00
Ariel Rin
1e822729c3 Merge branch 'cursor-style' into 'master'
[FIX] Force AA framework cursor style

See merge request allianceauth/allianceauth!1749
2025-08-10 02:31:11 +00:00
Peter Pfeufer
80ac8f7feb
[FIX] Force AA framework cursor style
Might be overwritten by Bootstrap otherwise.
2025-08-09 22:30:29 +02:00
Peter Pfeufer
4477016722
[CHANGE] Keep MariaDB up-to-date with the LTS cycle 2025-08-06 15:58:36 +02:00
2 changed files with 12 additions and 12 deletions

View File

@ -80,47 +80,47 @@
------------------------------------------------------------------------------------- */
@media all {
.cursor-auto {
cursor: auto;
cursor: auto !important;
}
.cursor-default {
cursor: default;
cursor: default !important;
}
.cursor-pointer {
cursor: pointer;
cursor: pointer !important;
}
.cursor-wait {
cursor: wait;
cursor: wait !important;
}
.cursor-text {
cursor: text;
cursor: text !important;
}
.cursor-move {
cursor: move;
cursor: move !important;
}
.cursor-help {
cursor: help;
cursor: help !important;
}
.cursor-not-allowed {
cursor: not-allowed;
cursor: not-allowed !important;
}
.cursor-inherit {
cursor: inherit;
cursor: inherit !important;
}
.cursor-zoom-in {
cursor: zoom-in;
cursor: zoom-in !important;
}
.cursor-zoom-out {
cursor: zoom-out;
cursor: zoom-out !important;
}
}

View File

@ -44,7 +44,7 @@ x-allianceauth-health-check: &allianceauth-health-checks
services:
auth_mysql:
image: mariadb:10.11
image: mariadb:lts
command: [mysqld, --character-set-server=utf8mb4, --collation-server=utf8mb4_unicode_ci, --default-authentication-plugin=mysql_native_password]
volumes:
- ./mysql-data:/var/lib/mysql