about summary refs log tree commit diff
path: root/tvix/docs/mdbook-extra.css
diff options
context:
space:
mode:
authortoastal <toastal@posteo.net>2024-06-23T08·49+0700
committertoastal <toastal@posteo.net>2024-06-27T07·16+0000
commitfbce56b8494998868b3fd841b1d43c2e272603c2 (patch)
tree0a262abc56df72ccfdba2240e8bf54a756c55aba /tvix/docs/mdbook-extra.css
parentcd485661739ed1d4544498118599869ebd9152e2 (diff)
docs: prompts in shell sessions shouldn’t be selectable r/8316
these just indicate the start of the prompt by convention & if the user
is root or not with `#` & `$` respectively

Change-Id: Id65f5f879b067ee96715b3e7dc63f68c7ad791b8
Reviewed-on: https://cl.tvl.fyi/c/depot/+/11868
Reviewed-by: flokli <flokli@flokli.de>
Tested-by: BuildkiteCI
Diffstat (limited to '')
-rw-r--r--tvix/docs/mdbook-extra.css7
1 files changed, 7 insertions, 0 deletions
diff --git a/tvix/docs/mdbook-extra.css b/tvix/docs/mdbook-extra.css
new file mode 100644
index 000000000000..7a50fdbeed68
--- /dev/null
+++ b/tvix/docs/mdbook-extra.css
@@ -0,0 +1,7 @@
+@charset "utf-8";
+
+.hljs-meta.prompt_ {
+	-webkit-user-select: none;
+	-moz-user-select: none;
+	user-select: none;
+}