This package is built on top of the forked Decap CMS. As a new version of the Decap interface is being implemented, I aim to preserve the existing user experience. This alternative version maintains the same Decap functionality and the old theme with ui fixes of mine.
→ Demo
- Optimized for the mobile.
- Widgets are displayed in a single view.
- Minor fixes and simplification of UI.
- The CMS accent color can be customized.
For the testing include the link of the packege into your admin/index.html
instead of the official one. Or, you can download this package to your project's admin folder and then link to it.
/admin/index.html
:
<!-- <body> -->
<!-- <script src="https://unpkg.com/decap-cms@^3.1.11/dist/decap-cms.js"></script> -->
<script src="https://unpkg.com/decap-cms-alter@^3.1.11/dist/decap-cms.js"></script>
<!-- </body> -->
Add the color to the head of admin/index.html
in HEX
format. For example:
<!-- <head> -->
<style>
:root {
--accent: #683bab !important;
--accent-light: #683bab19 !important;
}
</style>
<!-- </head> -->
Note: 19
in --accent-light
is the alpha value. !important
must be. This approach is necessary measure until the ability to customize the Theme Config is implemented.
- Dark Mode
- Theme Config
— fix: clear field error in Editor after the field value is changed
If you are not familiar with Decap CMS, please read the official install guide.
Last tested on v3.3.0