Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Theme appears broken in kanboard v1.2.30 (latest release) #23

Open
dangerstudios opened this issue Jun 7, 2023 · 3 comments
Open

Theme appears broken in kanboard v1.2.30 (latest release) #23

dangerstudios opened this issue Jun 7, 2023 · 3 comments

Comments

@dangerstudios
Copy link

dangerstudios commented Jun 7, 2023

This theme breaks the UI in the latest kanboard release:
https://github.com/kanboard/kanboard/releases/tag/v1.2.30

image
image

@trebor2109
Copy link

The problem exists since Kanboard V1.2.29 when the new theme support (dark, light, automatic) was added. So the last working version of Kanboard for this theme here is version 1.2.28. It would be very cool if the theme here is adapted accordingly, that it also works under the current version (1.2.30). Thanks for the work on this theme.

@xyttyxy
Copy link

xyttyxy commented Jun 26, 2023

In 1.2.28 the visuals work but I cannot create new columns, swimlanes or rename existing ones. Clicking the save button has no effect.

Edit: just checked on KB 1.2.27 the above 2 points are working

@pittss
Copy link

pittss commented Aug 23, 2023

Quick fix:

In file: <work_dir>/plugins/ThemeRevision/Template/layout.php
Replace line 17

<?= $this->asset->css('assets/css/app.min.css') ?>

To

<?php if (! isset($not_editable)): ?>
	<?= $this->asset->css('assets/css/'.$this->user->getTheme().'.min.css') ?>
<?php else: ?>
	<?= $this->asset->css('assets/css/light.min.css') ?>
<?php endif ?>

fabiorino added a commit to fabiorino/ThemeRevision that referenced this issue Mar 19, 2024
All credits go to pittss that posted the solution here:
greyaz#23 (comment)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants