VOGONS

Common searches


First post, by CwF

User metadata
Rank Member
Rank
Member

This is strange!

My cursor is 10% size ONLY on any Vogons page.
Right click give me the context menu, and the cursor returns to normal size momentarily.
Same browser, any different site, everywhere else, normal.

I just noticed, assume it's a new thing. Did recently upgrade some things, but only here is effected?
Debian12 on FF-esr. Any user setting here I missed?

I used to know what I was doing...

Reply 2 of 3, by schmatzler

User metadata
Rank Oldbie
Rank
Oldbie

It was a problem with DPI scaling on Windows for a while and I remember Edge browser (the original one) not supporting cursor scaling properly.

Those should all be things of the past now. Do you have any DPI scaling active?

The cursor comes from these styles applied to various elements:

@media screen and (min-width: 0)
:root, .popup_button::before, .popup_button::after, form:invalid .button[type='submit']:not([formnovalidate]), form.invalid .button[type='submit']:not([formnovalidate]), .button:disabled, .button[data-disabled], form:invalid .push-button[type='submit']:not([formnovalidate]), form.invalid .push-button[type='submit']:not([formnovalidate]), .push-button:disabled, .push-button[data-disabled], form:invalid .menu-button[type='submit']:not([formnovalidate]), form.invalid .menu-button[type='submit']:not([formnovalidate]), .menu-button:disabled, .menu-button[data-disabled], label:disabled, select:disabled, [type='button']:disabled, [type='checkbox']:disabled, [type='file']:disabled, [type='radio']:disabled, [type='submit']:disabled, label[data-disabled], textarea:disabled, [type='email']:disabled, [type='input']:disabled, [type='password']:disabled, [type='search']:disabled, [type='text']:disabled, [type='url']:disabled, [type='date']:disabled {
cursor: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PHBhdGggZD0iTTguNSAxOS41YzEuNSAwIDEtMiAxLTJsLTMtNmg0LjI1TC41IDEuMjVWMTUuNWwzLTNMNi43NSAxOXMuNTM2LjUgMS43NS41eiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBmaWxsPSIjZmZmIiBzdHJva2U9IiMwMDAiLz48L3N2Zz4=),default;
}

media screen and (min-width: 0)
:link, :visited, summary, label, select, [type='button'], [type='checkbox'], [type='file'], [type='radio'], [type='submit'], .autocomplete_list>*:not([data-empty]), .alert_close, .search-bar_input, .post_hidden-message_show {
cursor: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PHBhdGggZD0iTTQuNSAxLjVjMC0xIDEtMSAxLTFoMXMxIDAgMSAxdjRoMmMxIDAgMSAxIDEgMWgyYzEgMCAxIDEgMSAxaDFjMSAwIDIgMSAyIDJ2NGMwIDEtMiA4LTMgOGgtOHMtMi03LTMtOC0yLTItMi0zYzAgMCAwLTEgMS0xczMgMiAzIDJ6bTMgOHYtNG0zIDR2LTNtMyA0di0zbS05IDV2LTEiIGZpbGw9IiNmZmYiIHN0cm9rZT0iIzAwMCIgc3Ryb2tlLW1pdGVybGltaXQ9IjIiLz48L3N2Zz4=) 5 0,pointer;
}

You can probably use a CSS override extension like Stylish and override those to always use the defaults like this:

@media screen and (min-width: 0)
:root, .popup_button::before, .popup_button::after, form:invalid .button[type='submit']:not([formnovalidate]), form.invalid .button[type='submit']:not([formnovalidate]), .button:disabled, .button[data-disabled], form:invalid .push-button[type='submit']:not([formnovalidate]), form.invalid .push-button[type='submit']:not([formnovalidate]), .push-button:disabled, .push-button[data-disabled], form:invalid .menu-button[type='submit']:not([formnovalidate]), form.invalid .menu-button[type='submit']:not([formnovalidate]), .menu-button:disabled, .menu-button[data-disabled], label:disabled, select:disabled, [type='button']:disabled, [type='checkbox']:disabled, [type='file']:disabled, [type='radio']:disabled, [type='submit']:disabled, label[data-disabled], textarea:disabled, [type='email']:disabled, [type='input']:disabled, [type='password']:disabled, [type='search']:disabled, [type='text']:disabled, [type='url']:disabled, [type='date']:disabled {
cursor: default !important;
}

media screen and (min-width: 0)
:link, :visited, summary, label, select, [type='button'], [type='checkbox'], [type='file'], [type='radio'], [type='submit'], .autocomplete_list>*:not([data-empty]), .alert_close, .search-bar_input, .post_hidden-message_show {
cursor: pointer !important;
}

"Windows 98's natural state is locked up"

Reply 3 of 3, by CwF

User metadata
Rank Member
Rank
Member

It's only the vogons page;
not the menu, border, something else in a different tab, other programs, panels, etc.
It's the Vogons html whatever code, not my config.

Yes, 144 global dpi, no scaling. The cursor within the page display is the size of a coma. The 'I' in this editor is smaller than an 'i'. Firefox is zoomed to 133% and it doesn't change the cursor, that's normal.

I used to know what I was doing...