mirror of
https://github.com/bckelley/blueberry-pma-theme.git
synced 2026-08-24 03:04:11 -05:00
df7ce470923f0c1a3e6ae024b102afd5b07e6e74
CssSyntaxError: themes/darkwolf/css/theme.rtl.css:5432:26: Missed semicolon
5430 | }
5431 | .accordion-body {
> 5432 | padding: 1rem 1.25rem background-color: #121517;
| ^
5433 | color: #999;
5434 | border: 1px dashed #555;
phpMyAdmin themes
Various contributed themes.
Download
Themes can be downloaded at https://www.phpmyadmin.net/themes/.
How to contribute
Get started
- Go to the phpmyadmin/themes repository
- "Fork" the repository (see: GitHub tutorial on how to fork a repository)
- "Clone" your forked repository locally (see: GitHub tutorial on how to clone a repository)
Updating/Creating themes
If you already have the theme in your local phpMyAdmin folder, then delete the theme folder here and replace it with your local version (folder).
For example:
rm -r /home/username/phpmyadmin/themes/mytheme
cp -r /var/www/phpMyAdmin/themes/mytheme /home/username/phpmyadmin/themes/
Update the version
Update "version" in /home/username/phpmyadmin/themes/mytheme/theme.json with the new version (of your theme).
Create a branch and commit the changes
Learn more about what is a commit: here
For example:
# Go to the repository folder (your fork)
cd /home/username/phpmyadmin/themes/
# Create a new branch for your changes
git checkout -b mytheme-version-x.y.z
# Add your changes to git
git add ./mytheme
# Commit them
git commit -m "[mytheme] version x.y.z"
Push the changes and open a pull-request
Make the push:
git push
And then open a new pull-request: https://github.com/phpmyadmin/themes/pulls
Releasing
There is a script create-release.sh which creates a zip file with the theme and optionally
tags the git repository and uploads it to the phpMyAdmin website.
Languages
PHP
40.9%
CSS
34.5%
SCSS
24.4%
Shell
0.2%