nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #77683 from jtojnar/prompt-no-select

doc: Make callout marks & prompts unselectable

authored by

Graham Christensen and committed by
GitHub
6ed0b0a8 42cc5c23

+14 -1
+14 -1
doc/overrides.css
··· 1 1 .docbook .xref img[src^=images\/callouts\/], 2 2 .screen img, 3 - .programlisting img { 3 + .programlisting img, 4 + .literallayout img, 5 + .synopsis img { 4 6 width: 1em; 5 7 } 6 8 7 9 .calloutlist img { 8 10 width: 1.5em; 11 + } 12 + 13 + .prompt, 14 + .screen img, 15 + .programlisting img, 16 + .literallayout img, 17 + .synopsis img { 18 + -moz-user-select: none; 19 + -webkit-user-select: none; 20 + -ms-user-select: none; 21 + user-select: none; 9 22 }