From 8e617ff4e209818c85b2d758899b90d18c129393 Mon Sep 17 00:00:00 2001 From: simurai Date: Thu, 29 Jan 2015 09:27:17 +0900 Subject: [PATCH] :memo: Update Shadow DOM selector --- docs/customizing-atom.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/customizing-atom.md b/docs/customizing-atom.md index b7c11c521..d2151f350 100644 --- a/docs/customizing-atom.md +++ b/docs/customizing-atom.md @@ -169,7 +169,7 @@ For example, to change the color of the cursor, you could add the following rule to your _~/.atom/styles.less_ file: ```less -atom-text-editor.is-focused .cursor { +atom-text-editor::shadow .cursor { border-color: pink; } ```