Image tabs not displaying in Ecosia

Users and developers helping users with generic and technical Pale Moon issues on all operating systems.

Moderator: trava90

Forum rules
This board is for technical/general usage questions and troubleshooting for the Pale Moon browser only.
Technical issues and questions not related to the Pale Moon browser should be posted in other boards!
Please keep off-topic and general discussion out of this board, thank you!
User avatar
steve
Newbie
Newbie
Posts: 3
Joined: 2022-05-11, 13:03

Image tabs not displaying in Ecosia

Unread post by steve » 2022-05-11, 13:44

Operating system: Windows 11:
Browser version: 31.0.0:
64-bit browser:
Problem URL: Ecosia:
Browser theme: Default:
Installed add-ons: None:
Installed plugins: None:

Hi. There appears to be from my end an issue where Ecosia's image search isn't displaying image tabs. I've known about this for years on my old hardware but I put that down to some privacy setting that I must have locked and couldn't find again, so I used Ecosia in a Firefox browser when I want to search for an image. Thing is I've recently got me some new hardware and the problem is replicated without any plugins or add-ons. I've uploaded a screenshot in the link below to show what I'm seeing on my end.

https://files.catbox.moe/ierhwx.png

User avatar
FranklinDM
Add-ons Team
Add-ons Team
Posts: 575
Joined: 2017-01-14, 02:40
Location: Philippines
Contact:

Re: Image tabs not displaying in Ecosia

Unread post by FranklinDM » 2022-05-11, 15:10

Most likely caused by their usage of calc in flex-grow properties. See Issue #1826.

Code: Select all

Error in parsing value for ‘flex-grow’ after substituting variables. Generated value was ‘calc(417/311)’.  Falling back to ‘initial’.  
cb6532e.css:20:25842
Error in parsing value for ‘flex-grow’ after substituting variables. Generated value was ‘calc(474/490)’.  Falling back to ‘initial’.  
cb6532e.css:20:25842
You may opt to use the following snippet in a user style as a temporary workaround:

Code: Select all

@-moz-document domain("ecosia.org") {
  .image-feed__item {
    flex-grow: 1 !important;
  }
}

User avatar
steve
Newbie
Newbie
Posts: 3
Joined: 2022-05-11, 13:03

Re: Image tabs not displaying in Ecosia

Unread post by steve » 2022-05-11, 15:40

FranklinDM wrote:
2022-05-11, 15:10
You may opt to use the following snippet in a user style as a temporary workaround:

Code: Select all

@-moz-document domain("ecosia.org") {
  .image-feed__item {
    flex-grow: 1 !important;
  }
}
Do I paste that in the ecosia xml located in the searchplugins folder?

BTW, I'm an absolute newb when it comes to stuff like this.

User avatar
FranklinDM
Add-ons Team
Add-ons Team
Posts: 575
Joined: 2017-01-14, 02:40
Location: Philippines
Contact:

Re: Image tabs not displaying in Ecosia

Unread post by FranklinDM » 2022-05-11, 16:34

See this post by moonbat for more details about adding user styles using Stylem.

User avatar
steve
Newbie
Newbie
Posts: 3
Joined: 2022-05-11, 13:03

Re: Image tabs not displaying in Ecosia

Unread post by steve » 2022-05-12, 12:52

FranklinDM wrote:
2022-05-11, 16:34
See this post by moonbat for more details about adding user styles using Stylem.
Got the workaround running, thank you. I had no idea that there was an add-on called Stylem, that threw me off as I read "style" as some accidental typo.

Locked