From 9b0427fd3389c8264d9f14be9f842bff0fa0dcc8 Mon Sep 17 00:00:00 2001 From: David Lechner Date: Sun, 24 Jan 2021 10:39:43 -0600 Subject: [PATCH] allow selecting text in dialogs and toasts It is useful to be able to copy this info when reporting bugs. Issue: pybricks/pybricks-support#228 --- src/index.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/index.scss b/src/index.scss index a7ad1e20..3fe4babf 100644 --- a/src/index.scss +++ b/src/index.scss @@ -40,7 +40,11 @@ body { // global style tweaks -.#{$ns}-dialog { +.#{$ns}-toast { + user-select: text; +} + +.#{$ns}-button { user-select: none; }