https://pulse.wedopulse.com/my/welcome - Sign-in page is blank

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
hujan86
Fanatic
Fanatic
Posts: 202
Joined: 2017-09-27, 06:50

https://pulse.wedopulse.com/my/welcome - Sign-in page is blank

Unread post by hujan86 » 2024-05-21, 13:02

Pale Moon:
Image

LibreWolf:
Image

Code: Select all

Timestamp: 5/21/2024 7:46:51 PM
Warning: unreachable code after return statement
Source File: https://pulse.wedopulse.com/_Incapsula_Resource?SWJIYLWA=719d34d31c8e3a6e6fffd425f7e032f3&ns=2&cb=145527072
Line: 1, Column: 46211
Source Code:
e6,_0x401ea8,_0x360561;continue;case'\x36':return _0x460193;continue;case'\x37':var _0x460193,_0x12413c,_0x522e4e;contin

Timestamp: 5/21/2024 7:46:51 PM
Warning: unreachable code after return statement
Source File: https://pulse.wedopulse.com/_Incapsula_Resource?SWJIYLWA=719d34d31c8e3a6e6fffd425f7e032f3&ns=2&cb=145527072
Line: 1, Column: 48482
Source Code:
, '\x39\x23\x51\x6a'));continue;case'\x33':return _0x47c900;continue;case'\x34':for(var _0x558880=0x0;_0x2b32d5[_0x108a(

Timestamp: 5/21/2024 7:46:51 PM
Warning: unreachable code after return statement
Source File: https://pulse.wedopulse.com/_Incapsula_Resource?SWJIYLWA=719d34d31c8e3a6e6fffd425f7e032f3&ns=2&cb=145527072
Line: 1, Column: 61083
Source Code:
31':return _0x3422b3[_0x108a('0xa3', '\x71\x77\x62\x59')]();continue;case'\x32':for(var _0x3f944c=0x0;_0x1381e9[_0x108a(

Timestamp: 5/21/2024 7:46:51 PM
Warning: unreachable code after return statement
Source File: https://pulse.wedopulse.com/_Incapsula_Resource?SWJIYLWA=719d34d31c8e3a6e6fffd425f7e032f3&ns=2&cb=145527072 line 1 > eval
Line: 1, Column: 61083
Source Code:
31':return _0x3422b3[_0x108a('0xa3', '\x71\x77\x62\x59')]();continue;case'\x32':for(var _0x3f944c=0x0;_0x1381e9[_0x108a(

Timestamp: 5/21/2024 7:46:51 PM
Warning: unreachable code after return statement
Source File: https://pulse.wedopulse.com/_Incapsula_Resource?SWJIYLWA=719d34d31c8e3a6e6fffd425f7e032f3&ns=2&cb=145527072 line 1 > eval
Line: 1, Column: 48482
Source Code:
, '\x39\x23\x51\x6a'));continue;case'\x33':return _0x47c900;continue;case'\x34':for(var _0x558880=0x0;_0x2b32d5[_0x108a(
Avatar's Source: yereverluvinuncleber

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

Re: https://pulse.wedopulse.com/my/welcome - Sign-in page is blank

Unread post by adoxa » 2024-05-22, 07:10

CSS issues: it doesn't seem to like flex-basis: 0% and aspect-ratio is not supported. Use your userstyle manager of choice for a workaround.

Code: Select all

@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document domain("pulse.wedopulse.com") {
  #__next {
    flex-basis: auto !important;
  }
  .r-1udh08x {
    height: 521px;
  }
}
There's also an issue with the slide tracker not being centered, but I didn't look into that.

User avatar
andyprough
Board Warrior
Board Warrior
Posts: 1090
Joined: 2020-05-31, 04:33

Re: https://pulse.wedopulse.com/my/welcome - Sign-in page is blank

Unread post by andyprough » 2024-05-22, 07:17

It's a weird one. If I reduce the browser to about half the size of the monitor then the important elements show up, like the "Create an Account" button.
Screenshot_2024-05-22_02-04-39.png
I wonder what "overflow-hidden" means in this css line:

Code: Select all

class="css-175oi2r bg-b-1 border-f-5 flex w-full flex-row overflow-hidden rounded-[24px] border-[2px]"
w3schools says "hidden - The overflow is clipped, and the rest of the content will be invisible". That looks kind of like what is happening here.
You do not have the required permissions to view the files attached to this post.

User avatar
hujan86
Fanatic
Fanatic
Posts: 202
Joined: 2017-09-27, 06:50

Re: https://pulse.wedopulse.com/my/welcome - Sign-in page is blank

Unread post by hujan86 » 2024-05-24, 12:40

adoxa wrote:
2024-05-22, 07:10
CSS issues: it doesn't seem to like flex-basis: 0% and aspect-ratio is not supported. Use your userstyle manager of choice for a workaround.
Thanks. The workaround works with Stylem. :thumbup:
andyprough wrote:
2024-05-22, 07:17
It's a weird one. If I reduce the browser to about half the size of the monitor then the important elements show up, like the "Create an Account" button.
You're right. Didn't occur to me fiddling with browser window would do the trick. :o
Avatar's Source: yereverluvinuncleber

User avatar
Moonchild
Pale Moon guru
Pale Moon guru
Posts: 37493
Joined: 2011-08-28, 17:27
Location: Motala, SE

Re: https://pulse.wedopulse.com/my/welcome - Sign-in page is blank

Unread post by Moonchild » 2024-05-24, 13:49

I had a quick look to see what's going on, and it seems to be the issue that they are using individual properties alongside the shorthand form of flex, with the shorthand being later in the block overriding individually-set properties:
Image1.png
"flex: 1" overrides the individual (striked through) properties here which causes the issue (the short-hand means grow:1 shrink:1 basis: 0%).
Disabling the shorthand line fixes the layout.
You do not have the required permissions to view the files attached to this post.
"A dead end street is a place to turn around and go into a new direction" - Anonymous
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite