Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 42cc5c233e61
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6ed0b0a86fd2
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 14, 2020

  1. doc: Make prompt unselectable

    Weirdly, no-one seems to have noticed this was broken.
    jtojnar committed Jan 14, 2020
    Copy the full SHA
    8334b83 View commit details
  2. doc: Make callout marks in code unselectable

    To make example copying easier.
    jtojnar committed Jan 14, 2020
    Copy the full SHA
    1e6265a View commit details
  3. Merge pull request #77683 from jtojnar/prompt-no-select

    doc: Make callout marks & prompts unselectable
    grahamc authored Jan 14, 2020
    Copy the full SHA
    6ed0b0a View commit details
Showing with 14 additions and 1 deletion.
  1. +14 −1 doc/overrides.css
15 changes: 14 additions & 1 deletion doc/overrides.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,22 @@
.docbook .xref img[src^=images\/callouts\/],
.screen img,
.programlisting img {
.programlisting img,
.literallayout img,
.synopsis img {
width: 1em;
}

.calloutlist img {
width: 1.5em;
}

.prompt,
.screen img,
.programlisting img,
.literallayout img,
.synopsis img {
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}