layout-trello icon indicating copy to clipboard operation
layout-trello copied to clipboard

Issue with the extension?

Open Bestseller23 opened this issue 1 year ago • 14 comments

As of three days ago, whenever I click the extension in Chrome to shift my Trello list to vertical, the spacing between rows is huge. It never used to be, and looks like an error.

Can this be looked at please?

Bestseller23 avatar Oct 08 '23 06:10 Bestseller23

Same issue here.

Venaen avatar Oct 11 '23 06:10 Venaen

I use Brave and I have been having this issue with the horizontal rows. I also have the same issue in Chrome.

ksim-rhet avatar Oct 13 '23 16:10 ksim-rhet

same!

voorvoor64 avatar Oct 14 '23 09:10 voorvoor64

same. couldn't find a simple CSS solution, probably trello changed something more fundamental in the layout.

yudayuda avatar Oct 16 '23 13:10 yudayuda

Thanks for the reports everyone. I don't have a lot of time to dedicate to maintaining this extension and am personally no longer actively using it so I can't make any promises about when or if it will be fixed. I've unpublished it from the Chrome Web Store for the time being. I'm open to Pull Requests if an devs out there want to dig into the CSS changes.

sudonatalie avatar Oct 24 '23 00:10 sudonatalie

Hi Natalie! I supervise a vocational learning lab for students who are neurodivergent. When I came into my role, we've already been using the trello task board where we assign tasks to about 20-25 students with task images under their names. The google chrome extension you created made our workspace perfect in the sense that all students had individual lists and cards assigned to their "names" and the grid format you allowed with your extension, made it very easy for every student to see their assigned tasks without us having to scroll down or across. Since the current change by trello, with the big gap between rows 1-3, the ease for our students to see their assigned tasks on the big screen has dramatically changed. I understand that you don't have time to dedicate to creating a fix for the extension you created especially as you don't use it anymore yourself. Can you advise us on anything we can try to do to get back to a grid view with no gap. Would you know if the paid version of trello contains the same capability as your extension? This task board and the extension you created is a primary tool we use in process to assist our students and program in learning various work related tasks, and it's very unfortunate for us that the Internal Trello Change or Update broke your extension. Is there any advise you can give us? we aren't very technologically proficient as a non profit generally speaking, which is why I figured I'd reach out to you! -All the best, Boris Yagudayev

borisyagudayev avatar Oct 25 '23 12:10 borisyagudayev

Has anyone found an alternative extension?

sgkrasts avatar Oct 26 '23 16:10 sgkrasts

No, so far. The other extensions that offered grid layout are experiencing the same issue... bummer

yudayuda avatar Oct 26 '23 16:10 yudayuda

Decided to use a custom user-style CSS, so that my browser will inject the required styles to all trello.com pages. I am using the Stylus Chrome extension for that, but you can use any other user-styles extension, like Stylish, Stylebot etc. The CSS that works for me is:

@-moz-document url-prefix("https://trello.com/") {
  ol#board {
    flex-wrap: wrap;
  }  
  li[data-testid="list-wrapper"] {
    max-height: 43vh;
    margin-bottom: 1em;
  }
}

yudayuda avatar Oct 28 '23 16:10 yudayuda

Thanks @yudayuda. It looks like it's a pretty minor change then, data-testid instead of a class on the children. I'm not going to update the Chrome extension because it's out of date in a few other ways that would need updating too, but for those looking for a one-click alternative, I've uploaded the updated CSS as Stylish themes that you can install here (pick one):

Hope that helps some folks!

sudonatalie avatar Oct 29 '23 01:10 sudonatalie

Natalie! Thank you so much for helping fix this issue! We really appreciate your time and help with this, and everyone else who looked into it for us! Much love and gratitude!

On Sat, Oct 28, 2023 at 9:25 PM Natalie Chouinard @.***> wrote:

Thanks @yudayuda https://github.com/yudayuda. It looks like it's a pretty minor change then, data-testid instead of a class on the children. I'm not going to update the Chrome extension because it's out of date in a few other ways that would need updating too, but for those looking for a one-click alternative, I've uploaded the updated CSS as Stylish https://chrome.google.com/webstore/detail/stylish-custom-themes-for/fjnbnpbmkenffdnngjfgmeleoegfcffe themes that you can install here (pick one):

Hope that helps some folks!

— Reply to this email directly, view it on GitHub https://github.com/sudonatalie/layout-trello/issues/69#issuecomment-1783969885, or unsubscribe https://github.com/notifications/unsubscribe-auth/BDQTNTEEWDIB5Z2SMDZ3BPTYBWV7NAVCNFSM6AAAAAA5XPKMLCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTOOBTHE3DSOBYGU . You are receiving this because you commented.Message ID: @.***>

--

This electronic message and any attachments are intended to be for the use only of the named recipient, and may contain information that is confidential and/or privileged. If you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution or use of the contents of this message and/or attachments is strictly prohibited. If you have received this message in error or are not the named recipient, please notify the sender immediately at the electronic mail address as provided above and delete/destroy all copies of this message. Receipt by anyone other than the intended recipient is not a waiver of any attorney-client or other privilege Thank you for your anticipated cooperation.

borisyagudayev avatar Oct 30 '23 12:10 borisyagudayev

Hi, following the Trello changes, I've made the fixes (regarding the layouts + color schemes) on my fork here: https://github.com/Gwened/tredolist . The source code version is functional, however I think I will need to port it to Manifest v3 until I can publish it to Google Web Store again.

Gwened avatar Nov 01 '23 16:11 Gwened

Thank you, @sudonatalie!!!

ksim-rhet avatar Nov 01 '23 19:11 ksim-rhet

Hi, following the Trello changes, I've made the fixes (regarding the layouts + color schemes) on my fork here: https://github.com/Gwened/tredolist . The source code version is functional, however I think I will need to port it to Manifest v3 until I can publish it to Google Web Store again.

Just to let you guys knows that I've upgraded Tredolist (my fork of List Layouts for Trello) to Manifest v3, and it was approved by Google. You can find it on the Chrome Web Store here: https://chromewebstore.google.com/detail/tredolist-beta/ccdkhfdflkpacnhjcefjlhlaopfgjkab

Gwened avatar Nov 23 '23 10:11 Gwened