From f3b58386b63c8ad8e8a5ab12d9b69d21e20845e5 Mon Sep 17 00:00:00 2001 From: Rik Smith-Unna Date: Thu, 29 Jun 2017 19:18:48 +0300 Subject: [PATCH] Move selection style outside components (fixes #102) --- app/client/style.css | 1 + app/client/views/detail.js | 5 ----- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/app/client/style.css b/app/client/style.css index e5a8a67..5b0d064 100644 --- a/app/client/style.css +++ b/app/client/style.css @@ -102,6 +102,7 @@ body { ::selection { background: white; + color: black; } .clickable { diff --git a/app/client/views/detail.js b/app/client/views/detail.js index 36a880a..291fb7c 100644 --- a/app/client/views/detail.js +++ b/app/client/views/detail.js @@ -45,11 +45,6 @@ module.exports = (state, emit) => { user-select: text; } - .paper ::selection { - background: ${C.WHITE}; - color: ${C.GREYBLUE}; - } - .row { flex-direction: row; justify-content: space-between;