Bläddra i källkod

Merge pull request #3945 from dlitsman/issue-3929

Extend the "Rendering Glyphs In The Margin" example to include a transparent color note.
Henning Dieterichs 2 år sedan
förälder
incheckning
4d4f13ced1

+ 2 - 1
website/src/website/data/playground-samples/interacting-with-the-editor/rendering-glyphs-in-the-margin/sample.css

@@ -2,5 +2,6 @@
 	background: red;
 }
 .myContentClass {
-	background: lightblue;
+	/* Make sure to use transparent colors for the selection to work */
+	background: rgba(173, 216, 230, 0.5);
 }