浏览代码

Allow selection of card text via webkit/user-select attributes

Fixes open issue around webkit/user-select attributes. Modifies values to allow "text" values to be selected in cards and on the board.
walster001 4 天之前
父节点
当前提交
7b545d12c7
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      client/components/main/layouts.css

+ 3 - 3
client/components/main/layouts.css

@@ -59,8 +59,8 @@ button {
 html {
   font-size: 100%;
   max-height: 100%;
-  -webkit-user-select: none;
-  user-select: none;
+  -webkit-user-select: text;
+  user-select: text;
 
   -webkit-text-size-adjust: 100%;
 text-size-adjust: 100%;
@@ -192,7 +192,7 @@ strong {
   font-weight: bold;
 }
 p {
-  -webkit-user-select: none;
+  -webkit-user-select: text;
   user-select: text;