rosa.gr - side element overlaps with text

For support with specific websites

Moderator: trava90

Forum rules
Please always mention the name/domain of the website in question in your topic title.
Please one website per topic thread (to help keep things organized). While behavior on different sites might at first glance seem similar, they are not necessarily caused by the same.

Please try to include any relevant output from the Toolkit Error Console or the Developer Tools Web Console using the following procedure:
  1. Clear any current output
  2. Navigate or refresh the page in question
  3. Copy and paste Errors or seemingly relevant Warnings into a single [ code ] block.
User avatar
back2themoon
Moon Magic practitioner
Moon Magic practitioner
Posts: 2866
Joined: 2012-08-19, 20:32

rosa.gr - side element overlaps with text

Unread post by back2themoon » 2025-04-20, 19:33

https://www.rosa.gr/koinonia/m-karystia ... -fili-tis/

(click the left button to reject cookies, if asked)
rosa.png
rosa console.png
Tried flipping both below, but noticed no difference.

dom.enable_performance_observer
dom.serviceWorkers.enabled
You do not have the required permissions to view the files attached to this post.

User avatar
adoxa
Lunatic
Lunatic
Posts: 401
Joined: 2019-03-16, 13:26
Location: Qld, Aus.

Re: rosa.gr - side element overlaps with text

Unread post by adoxa » 2025-04-21, 01:03

I think the problem is due to the writing mode being vertical (writing-mode: vertical-rl), but the width is still being treated as if it was horizontal. Try adding this style: .title-column: {width: 50px}.

User avatar
back2themoon
Moon Magic practitioner
Moon Magic practitioner
Posts: 2866
Joined: 2012-08-19, 20:32

Re: rosa.gr - side element overlaps with text

Unread post by back2themoon » 2025-04-21, 07:56

Thanks. Auto-converted it into a userscript as always, conversion was successful but the script doesn't work.

I then tried creating a userstyle from that line, but failed:

Expected identified for pseudo-class or pseudo-element but found ''. Ruleset ignored due to bad selector

User avatar
back2themoon
Moon Magic practitioner
Moon Magic practitioner
Posts: 2866
Joined: 2012-08-19, 20:32

Re: rosa.gr - side element overlaps with text

Unread post by back2themoon » 2025-04-21, 09:22

Adding the following uBO filter, seems to solve it by cutting away the unimportant left title of that side element:

Code: Select all

www.rosa.gr##.popular-container > .title-column
rosa uBO.png
This below is the intended, correct result. Hopefully, you guys will find out what is going on.

rosa correct.png
You do not have the required permissions to view the files attached to this post.
Last edited by back2themoon on 2025-04-21, 09:37, edited 1 time in total.

User avatar
adoxa
Lunatic
Lunatic
Posts: 401
Joined: 2019-03-16, 13:26
Location: Qld, Aus.

Re: rosa.gr - side element overlaps with text

Unread post by adoxa » 2025-04-21, 09:34

Typical, as usual when I don't test it I do it wrong, there should not have been a colon. Using this style:

Code: Select all

@-moz-document domain("www.rosa.gr") {
  .title-column {
    width: 50px
  }
}
I get the correct result (in Basilisk).

User avatar
back2themoon
Moon Magic practitioner
Moon Magic practitioner
Posts: 2866
Joined: 2012-08-19, 20:32

Re: rosa.gr - side element overlaps with text

Unread post by back2themoon » 2025-04-21, 09:43

Thanks adoxa. Works great. :thumbup: