When I go to https://forums.x-plane.org/ the screen/site does not render properly...
This is what I see...
This is what it should look like. (In Waterfox)
Does anyone else get this? Is there any fix?
Scott
X-Plane.org forum/website problem...
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:
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:
- Clear any current output
- Navigate or refresh the page in question
- Copy and paste Errors or seemingly relevant Warnings into a single [ code ] block.
-
f-117
- Fanatic

- Posts: 134
- Joined: 2017-02-04, 20:41
X-Plane.org forum/website problem...
You do not have the required permissions to view the files attached to this post.
-
Gemmaugr
- Astronaut

- Posts: 692
- Joined: 2025-02-03, 07:55
Re: X-Plane.org forum/website problem...
Code: Select all
TypeError: ips.loader is undefined[Learn More]
root_library.js:12:150
boot/< https://forums.x-plane.org/static/js/global/root_library.js:12:150
TypeError: ips.loader is undefined[Learn More]
root_library.js:13:116
boot/< https://forums.x-plane.org/static/js/global/root_library.js:13:116
SyntaxError: ':popover-open' is not a valid selector
root_component_navigationMenu.js:1
connectedCallback/< https://forums.x-plane.org/static/js/global/root_component_navigationMenu.js:1:549
forEach self-hosted:383:7
connectedCallback https://forums.x-plane.org/static/js/global/root_component_navigationMenu.js:1:471
registerWebComponent https://forums.x-plane.org/static/js/global/root_framework.js:224:232
<anonymous> https://forums.x-plane.org/static/js/global/root_component_navigationMenu.js:20:106
<anonymous> https://forums.x-plane.org/static/js/global/root_component_navigationMenu.js:20:258
onStopRequest chrome://hterr/content/grabber.js:416:27
onStopRequest chrome://decdn/content/interceptor.js:846:27
next self-hosted:1386:9
SyntaxError: ':popover-open' is not a valid selector
root_component_dropdown.js:1
connectedCallback https://forums.x-plane.org/static/js/global/root_component_dropdown.js:1:456
registerWebComponent https://forums.x-plane.org/static/js/global/root_framework.js:224:232
<anonymous> https://forums.x-plane.org/static/js/global/root_component_dropdown.js:42:8
<anonymous> https://forums.x-plane.org/static/js/global/root_component_dropdown.js:42:136
||OS: Win 10 | CPU: i7 10700 | GPU: GeForce RTX 3070||
"Judge a person not by their superficial identity attributes, but by the content of their character."
"Organized Identity Politics are the bane of civilized society."
"Judge a person not by their superficial identity attributes, but by the content of their character."
"Organized Identity Politics are the bane of civilized society."
-
adoxa
- Astronaut

- Posts: 644
- Joined: 2019-03-16, 13:26
- Location: Qld, Aus.
Re: X-Plane.org forum/website problem...
Until Issue #2230 (UXP) is implemented stick with Waterfox (there's just too much to work around).
-
f-117
- Fanatic

- Posts: 134
- Joined: 2017-02-04, 20:41
Re: X-Plane.org forum/website problem...
Ok, Just updated to 34.3.0. Here is what the site looks like now...
It looks a little better, but not much compared to what it should... (Still missing the "white" menu list at the top)
Scott
It looks a little better, but not much compared to what it should... (Still missing the "white" menu list at the top)
Scott
You do not have the required permissions to view the files attached to this post.
-
Night Wing
- Knows the dark side

- Posts: 5996
- Joined: 2011-10-03, 10:19
- Location: Piney Woods of Southeast Texas, USA
Re: X-Plane.org forum/website problem...
I get the same look as you and I am using 64 bit (GTK2) linux Pale Moon (34.3.0).
MX Linux 25.2 (Infinity) Xfce w/Pale Moon, Waterfox, Firefox
Linux Debian 13.5 (Trixie) Xfce w/Pale Moon, Waterfox, Firefox
Linux Debian 13.5 (Trixie) Xfce w/Pale Moon, Waterfox, Firefox
-
adoxa
- Astronaut

- Posts: 644
- Joined: 2019-03-16, 13:26
- Location: Qld, Aus.
Re: X-Plane.org forum/website problem...
The colors are wrong because calc is not supported within a color definition (e.g. oklch(100% 100% 0) is white, but oklch(calc(100%) 100% 0) is invalid). The display is wrong because :has is not supported, which is used to override the grid layout. Here's a userstyle to fix the menu and initial layout, but I didn't look any further than that.
Code: Select all
@-moz-document domain("forums.x-plane.org") {
.ipsGrid.ipsGrid_collapsePhone {
grid-template-columns: repeat(12, 1fr) !important;
}
.ipsHeader__secondary {
color: white;
}
.ipsNav__dropdown {
color: black !important;
background-color: white !important;
}
}