forbid text selection on normal headline rows / unexpanded CDM rows to prevent annoying glitches when selecting ranges etc

master
Andrew Dolgov 5 years ago
parent 5373b2fe0a
commit b54c40c45b

@ -367,6 +367,10 @@ div#floatingTitle.Unread a.title {
}
.cdm.expandable:not(.active) {
user-select : none;
}
.cdm.expandable.Unread {
background : white;
}

@ -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;
}

File diff suppressed because one or more lines are too long

@ -226,6 +226,7 @@ body.ttrss_main {
flex-wrap : nowrap;
background : @color-panel-bg;
align-items : center;
user-select : none;
> * {
white-space : nowrap;

@ -197,6 +197,7 @@ body.ttrss_main .hl {
flex-wrap: nowrap;
background: #222;
align-items: center;
user-select: none;
}
body.ttrss_main .hl > * {
white-space: nowrap;
@ -1369,6 +1370,9 @@ div#floatingTitle.Unread a.title {
font-weight: normal;
cursor: pointer;
}
.cdm.expandable:not(.active) {
user-select: none;
}
.cdm.expandable.Unread {
background: white;
}

File diff suppressed because one or more lines are too long

@ -197,6 +197,7 @@ body.ttrss_main .hl {
flex-wrap: nowrap;
background: #222;
align-items: center;
user-select: none;
}
body.ttrss_main .hl > * {
white-space: nowrap;
@ -1369,6 +1370,9 @@ div#floatingTitle.Unread a.title {
font-weight: normal;
cursor: pointer;
}
.cdm.expandable:not(.active) {
user-select: none;
}
.cdm.expandable.Unread {
background: white;
}

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save