From d1252513ea3cced988973d2c9c039987c0308bf2 Mon Sep 17 00:00:00 2001 From: Greg-T Date: Thu, 23 May 2019 09:23:53 +0000 Subject: [PATCH 1/2] Workaround for drag and drop in Firefox It is just a temporary workaround, as *.map isn't updated. --- css/default.css | 1 + 1 file changed, 1 insertion(+) diff --git a/css/default.css b/css/default.css index 9d6b81fd1..e83631c19 100644 --- a/css/default.css +++ b/css/default.css @@ -1762,6 +1762,7 @@ body.ttrss_utility.share_popup .content { } .flat .dijitTree .dijitTreeRow { overflow: hidden; + -moz-user-select: none; /* TODO: temporary workaround for bug: https://discourse.tt-rss.org/t/is-it-possible-to-create-a-hierarchy-of-categories/876/13 */ text-overflow: ellipsis; } .flat label.dijitButton { From 7770903a7f97ca124e46e00ae1ff4862c203a9b1 Mon Sep 17 00:00:00 2001 From: Greg-T Date: Thu, 23 May 2019 09:55:35 +0000 Subject: [PATCH 2/2] Workaround for drag and drop in Firefox It is just a temporary workaround. --- css/dijit_basic.less | 1 + 1 file changed, 1 insertion(+) diff --git a/css/dijit_basic.less b/css/dijit_basic.less index 7c13eff84..4609333c4 100644 --- a/css/dijit_basic.less +++ b/css/dijit_basic.less @@ -132,6 +132,7 @@ .dijitTreeRow { overflow: hidden; + -moz-user-select: none; /* TODO: temporary workaround for bug: https://discourse.tt-rss.org/t/is-it-possible-to-create-a-hierarchy-of-categories/876/13 */ text-overflow: ellipsis; }