summaryrefslogtreecommitdiff
path: root/css/default.css
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-03-07 13:39:47 +0300
committerAndrew Dolgov <[email protected]>2019-03-07 13:39:47 +0300
commitb54c40c45b40ba435eafaa003714afd8324e6fc7 (patch)
treea3619e57d6ed9153f09bf53b432773eac8b726d0 /css/default.css
parent5373b2fe0aa345494dc50d1572cd33b082fbf42d (diff)
forbid text selection on normal headline rows / unexpanded CDM rows to prevent annoying glitches when selecting ranges etc
Diffstat (limited to 'css/default.css')
-rw-r--r--css/default.css4
1 files changed, 4 insertions, 0 deletions
diff --git a/css/default.css b/css/default.css
index 5d2ed7caf..b971a19cc 100644
--- a/css/default.css
+++ b/css/default.css
@@ -196,6 +196,7 @@ body.ttrss_main .hl {
flex-wrap: nowrap;
background: #f5f5f5;
align-items: center;
+ user-select: none;
}
body.ttrss_main .hl > * {
white-space: nowrap;
@@ -1368,6 +1369,9 @@ div#floatingTitle.Unread a.title {
font-weight: normal;
cursor: pointer;
}
+.cdm.expandable:not(.active) {
+ user-select: none;
+}
.cdm.expandable.Unread {
background: white;
}