mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-10-16 21:41:23 +02:00
Merge branch 'master' of git.fakecake.org:tt-rss
This commit is contained in:
commit
a34509c8ae
@ -154,10 +154,7 @@ class Backend extends Handler {
|
|||||||
print "</ul>";
|
print "</ul>";
|
||||||
}
|
}
|
||||||
|
|
||||||
print "<footer>";
|
print "<footer class='text-center'>";
|
||||||
print "<button dojoType='dijit.form.Button' style='float : left' class='alt-info' onclick='window.open(\"https://tt-rss.org/wiki/InterfaceTips\")'>
|
|
||||||
<i class='material-icons'>help</i> ".__("More info...")."</button>";
|
|
||||||
|
|
||||||
print "<button dojoType='dijit.form.Button'
|
print "<button dojoType='dijit.form.Button'
|
||||||
onclick=\"return dijit.byId('helpDlg').hide()\">".__('Close this window')."</button>";
|
onclick=\"return dijit.byId('helpDlg').hide()\">".__('Close this window')."</button>";
|
||||||
print "</footer>";
|
print "</footer>";
|
||||||
|
@ -367,6 +367,10 @@ div#floatingTitle.Unread a.title {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.cdm.expandable:not(.active) {
|
||||||
|
user-select : none;
|
||||||
|
}
|
||||||
|
|
||||||
.cdm.expandable.Unread {
|
.cdm.expandable.Unread {
|
||||||
background : white;
|
background : white;
|
||||||
}
|
}
|
||||||
|
@ -196,6 +196,7 @@ body.ttrss_main .hl {
|
|||||||
flex-wrap: nowrap;
|
flex-wrap: nowrap;
|
||||||
background: #f5f5f5;
|
background: #f5f5f5;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
user-select: none;
|
||||||
}
|
}
|
||||||
body.ttrss_main .hl > * {
|
body.ttrss_main .hl > * {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
@ -1368,6 +1369,9 @@ div#floatingTitle.Unread a.title {
|
|||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
.cdm.expandable:not(.active) {
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
.cdm.expandable.Unread {
|
.cdm.expandable.Unread {
|
||||||
background: white;
|
background: white;
|
||||||
}
|
}
|
||||||
|
File diff suppressed because one or more lines are too long
@ -226,6 +226,7 @@ body.ttrss_main {
|
|||||||
flex-wrap : nowrap;
|
flex-wrap : nowrap;
|
||||||
background : @color-panel-bg;
|
background : @color-panel-bg;
|
||||||
align-items : center;
|
align-items : center;
|
||||||
|
user-select : none;
|
||||||
|
|
||||||
> * {
|
> * {
|
||||||
white-space : nowrap;
|
white-space : nowrap;
|
||||||
|
@ -168,19 +168,40 @@ define(["dojo/_base/declare"], function (declare) {
|
|||||||
} else {
|
} else {
|
||||||
if (App.isCombinedMode()) {
|
if (App.isCombinedMode()) {
|
||||||
|
|
||||||
if (Article.getActive() != id) {
|
if (event.altKey && !in_body) {
|
||||||
|
|
||||||
|
Article.openInNewWindow(id);
|
||||||
|
Headlines.toggleUnread(id, 0);
|
||||||
|
|
||||||
|
} else if (Article.getActive() != id) {
|
||||||
|
|
||||||
|
Headlines.select('none');
|
||||||
Article.setActive(id);
|
Article.setActive(id);
|
||||||
|
|
||||||
if (!App.getInitParam("cdm_expanded"))
|
if (App.getInitParam("cdm_expanded")) {
|
||||||
|
if (!in_body)
|
||||||
|
Article.openInNewWindow(id);
|
||||||
|
|
||||||
|
Headlines.toggleUnread(id, 0);
|
||||||
|
} else {
|
||||||
Article.cdmScrollToId(id);
|
Article.cdmScrollToId(id);
|
||||||
|
}
|
||||||
|
|
||||||
} else if (in_body) {
|
} else if (in_body) {
|
||||||
Headlines.toggleUnread(id, 0);
|
Headlines.toggleUnread(id, 0);
|
||||||
|
} else { /* !in body */
|
||||||
|
Article.openInNewWindow(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
return in_body;
|
return in_body;
|
||||||
} else {
|
} else {
|
||||||
Article.view(id);
|
if (event.altKey) {
|
||||||
|
Article.openInNewWindow(id);
|
||||||
|
Headlines.toggleUnread(id, 0);
|
||||||
|
} else {
|
||||||
|
Headlines.select('none');
|
||||||
|
Article.view(id);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -197,6 +197,7 @@ body.ttrss_main .hl {
|
|||||||
flex-wrap: nowrap;
|
flex-wrap: nowrap;
|
||||||
background: #222;
|
background: #222;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
user-select: none;
|
||||||
}
|
}
|
||||||
body.ttrss_main .hl > * {
|
body.ttrss_main .hl > * {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
@ -1369,6 +1370,9 @@ div#floatingTitle.Unread a.title {
|
|||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
.cdm.expandable:not(.active) {
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
.cdm.expandable.Unread {
|
.cdm.expandable.Unread {
|
||||||
background: white;
|
background: white;
|
||||||
}
|
}
|
||||||
|
File diff suppressed because one or more lines are too long
@ -197,6 +197,7 @@ body.ttrss_main .hl {
|
|||||||
flex-wrap: nowrap;
|
flex-wrap: nowrap;
|
||||||
background: #222;
|
background: #222;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
user-select: none;
|
||||||
}
|
}
|
||||||
body.ttrss_main .hl > * {
|
body.ttrss_main .hl > * {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
@ -1369,6 +1370,9 @@ div#floatingTitle.Unread a.title {
|
|||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
.cdm.expandable:not(.active) {
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
.cdm.expandable.Unread {
|
.cdm.expandable.Unread {
|
||||||
background: white;
|
background: white;
|
||||||
}
|
}
|
||||||
|
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user