Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > alt.comp.software.seamonkey > #8132

Re: MDN [was: SM v2.53.22 is out on its web site]

From Dirk Fieldhouse <surname@gmx.net.removethisandtherest.example.invalid>
Newsgroups alt.comp.software.seamonkey
Subject Re: MDN [was: SM v2.53.22 is out on its web site]
Date 2025-11-13 07:23 +0000
Organization Speaking personally
Message-ID <10f411n$b0l$1@solani.org> (permalink)
References (2 earlier) <FZePQ.113737$P8zb.70503@fx04.iad> <10ekfq5$2rn6$1@solani.org> <10ekih9$2edkm$1@paganini.bofh.team> <10ettlq$91i3$1@solani.org> <10eu0hi$bql1$5@dont-email.me>

Show all headers | View raw


On 11/11/2025 00:38, Nuno Silva wrote:
> On 2025-11-10, Dirk Fieldhouse wrote:
> 
>> Recently MDN (eg, <https://developer.mozilla.org/en-US/docs/Web/HTML>)
>> broke itself so that you can only read the article text (and not just
>> the navigation) with page styles disabled.
>>
>> This is seen in 2.53.19 and 2.53.21, obvs with JS disabled. Until the
>> 32-bit build of 2.53.22 appears, I can't test whether the same is true.
>>
>> /df
> 
> This is what I currently have in userContent.css (haven't tested it a
> lot yet, though). I lose the navigation part, but it's not something
> I've been in need of using. Still a quick and dirty hack, perhaps I
> should look for a better approach that preserves the navigation
> elements...
> 
> @-moz-document url-prefix("https://developer.mozilla.org/en-US/docs/"){
> [...]
> 	.navigation {
> 		display: none !important;
> 	}
> }

Thanks. Inspired by that:

@-moz-document url-prefix("https://developer.mozilla.org/en-US/docs/") {
  /* lay out horizontally if possible ... */
  .a11y-menu {
    display: flex;
  }
  /* show nav menu on hover or tab */
  .page-layout__header:hover, .page-layout__header:focus-within {
    height:  50vh;
    overflow: scroll;
  }
  /* ... and lay out again */
  .page-layout__header .menu {
    display: flex;
  }
  /* or minimise */
  .page-layout__header {
    height: 3ch;
    overflow: hidden;
  }
}

And I learned about the focus-within pseudo-class, too!

/df

-- 
London
UK

Back to alt.comp.software.seamonkey | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

SM v2.53.22 is out on its web site. ant@zimage.comANT (Ant) - 2025-11-02 00:46 +0000
  Re: SM v2.53.22 is out on its web site. frg <frgrahl@gmx.net> - 2025-11-02 12:12 +0100
    Re: SM v2.53.22 is out on its web site. ant@zimage.comANT (Ant) - 2025-11-03 00:04 +0000
      Re: SM v2.53.22 is out on its web site. frg <frgrahl@gmx.net> - 2025-11-03 17:37 +0100
        Re: SM v2.53.22 is out on its web site. ant@zimage.comANT (Ant) - 2025-11-04 23:18 +0000
          Re: SM v2.53.22 is out on its web site. R Daneel Olivaw <Danni@hyperspace.vogon.gov.invalid> - 2025-11-05 12:48 +0100
            Re: SM v2.53.22 is out on its web site. Jordi Garcia Soler <jordialcoister@gmail.com> - 2025-11-05 18:29 +0100
              SM v2.53.22 is out! ant@zimage.comANT (Ant) - 2025-11-10 01:30 +0000
  Re: SM v2.53.22 is out on its web site. R Daneel Olivaw <Danni@hyperspace.vogon.gov.invalid> - 2025-11-03 22:36 +0100
    Re: SM v2.53.22 is out on its web site. R Daneel Olivaw <Danni@hyperspace.vogon.gov.invalid> - 2025-11-04 10:24 +0100
      Re: SM v2.53.22 is out on its web site. Nuno Silva <nunojsilva@invalid.invalid> - 2025-11-09 10:47 +0000
        Re: SM v2.53.22 is out on its web site. R Daneel Olivaw <Danni@hyperspace.vogon.gov.invalid> - 2025-11-09 15:31 +0100
          Re: SM v2.53.22 is out on its web site. ant@zimage.comANT (Ant) - 2025-11-10 01:31 +0000
  Re: SM v2.53.22 is out on its web site. Peter45 <pseudo.address@example.invalid> - 2025-11-07 05:21 +0100
    Re: SM v2.53.22 is out on its web site. Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-11-07 04:56 +0000
      Re: SM v2.53.22 is out on its web site. Peter45 <pseudo.address@example.invalid> - 2025-11-07 10:57 +0100
        Re: SM v2.53.22 is out on its web site. R Daneel Olivaw <Danni@hyperspace.vogon.gov.invalid> - 2025-11-07 11:43 +0100
          MDN [was: SM v2.53.22 is out on its web site] Dirk Fieldhouse <surname@gmx.net.removethisandtherest.example.invalid> - 2025-11-10 23:49 +0000
            Re: MDN [was: SM v2.53.22 is out on its web site] Nuno Silva <nunojsilva@invalid.invalid> - 2025-11-11 00:38 +0000
              Re: MDN [was: SM v2.53.22 is out on its web site] Dirk Fieldhouse <surname@gmx.net.removethisandtherest.example.invalid> - 2025-11-13 07:23 +0000

csiph-web