Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iqual-ch/iq_backend_theme
https://github.com/iqual-ch/iq_backend_theme
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/iqual-ch/iq_backend_theme
- Owner: iqual-ch
- Created: 2022-01-26T14:48:31.000Z (almost 3 years ago)
- Default Branch: 2.x
- Last Pushed: 2023-07-20T08:07:08.000Z (over 1 year ago)
- Last Synced: 2024-11-14T16:30:33.133Z (about 2 months ago)
- Language: SCSS
- Size: 61.5 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# iq_backend_theme
Backend theme for unicorn installations.\
Per default, gin's dark mode is enabled but each user can override the admin
theme settings the user profile (/user/edit).Installation guide:
// Install composer package
composer require iqual/iq_backend_theme// Enable gin theme
drush then gin// Enable dependency modules
drush en gin_toolbar gin_login iq_backend_theme_helper// Enable theme
drush then iq_backend_theme// Set as admin theme
drush php:eval '$config = \Drupal::service("config.factory")->getEditable("system.theme"); $config->set("admin", "iq_backend_theme")->save();'**Or as a sexy one-liner:**
composer require iqual/iq_backend_theme && drush then gin && drush en gin_toolbar gin_login iq_backend_theme_helper && drush then iq_backend_theme && drush php:eval '$config = \Drupal::service("config.factory")->getEditable("system.theme"); $config->set("admin", "iq_backend_theme")->save();'
**Don't forget to uninstall Adminimal, once everything is working fine!**
drush thun adminimal
composer remove drupal/adminimal