mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-20 21:33:27 -07:00
Merge 2263918bb0
into b7a43ea118
This commit is contained in:
commit
645d143662
2 changed files with 8 additions and 4 deletions
|
@ -463,6 +463,10 @@ a.propButton img {
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#torrentsFilterToolbar.invisible {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
#torrentsFilterInput {
|
#torrentsFilterInput {
|
||||||
background-color: var(--color-background-default);
|
background-color: var(--color-background-default);
|
||||||
background-image: url("../images/edit-find.svg");
|
background-image: url("../images/edit-find.svg");
|
||||||
|
|
|
@ -1308,7 +1308,7 @@ window.addEventListener("DOMContentLoaded", (event) => {
|
||||||
document.getElementById("filtersColumn_handle").classList.add("invisible");
|
document.getElementById("filtersColumn_handle").classList.add("invisible");
|
||||||
document.getElementById("mainColumn").classList.add("invisible");
|
document.getElementById("mainColumn").classList.add("invisible");
|
||||||
document.getElementById("torrentsFilterToolbar").classList.add("invisible");
|
document.getElementById("torrentsFilterToolbar").classList.add("invisible");
|
||||||
MochaUI.Desktop.resizePanels();
|
MochaUI.Desktop.setDesktopSize();
|
||||||
};
|
};
|
||||||
|
|
||||||
const showSearchTab = (() => {
|
const showSearchTab = (() => {
|
||||||
|
@ -1342,7 +1342,7 @@ window.addEventListener("DOMContentLoaded", (event) => {
|
||||||
|
|
||||||
const hideSearchTab = () => {
|
const hideSearchTab = () => {
|
||||||
document.getElementById("searchTabColumn").classList.add("invisible");
|
document.getElementById("searchTabColumn").classList.add("invisible");
|
||||||
MochaUI.Desktop.resizePanels();
|
MochaUI.Desktop.setDesktopSize();
|
||||||
};
|
};
|
||||||
|
|
||||||
const showRssTab = (() => {
|
const showRssTab = (() => {
|
||||||
|
@ -1380,7 +1380,7 @@ window.addEventListener("DOMContentLoaded", (event) => {
|
||||||
const hideRssTab = () => {
|
const hideRssTab = () => {
|
||||||
document.getElementById("rssTabColumn").classList.add("invisible");
|
document.getElementById("rssTabColumn").classList.add("invisible");
|
||||||
window.qBittorrent.Rss && window.qBittorrent.Rss.unload();
|
window.qBittorrent.Rss && window.qBittorrent.Rss.unload();
|
||||||
MochaUI.Desktop.resizePanels();
|
MochaUI.Desktop.setDesktopSize();
|
||||||
};
|
};
|
||||||
|
|
||||||
const showLogTab = (() => {
|
const showLogTab = (() => {
|
||||||
|
@ -1417,7 +1417,7 @@ window.addEventListener("DOMContentLoaded", (event) => {
|
||||||
|
|
||||||
const hideLogTab = () => {
|
const hideLogTab = () => {
|
||||||
document.getElementById("logTabColumn").classList.add("invisible");
|
document.getElementById("logTabColumn").classList.add("invisible");
|
||||||
MochaUI.Desktop.resizePanels();
|
MochaUI.Desktop.setDesktopSize();
|
||||||
window.qBittorrent.Log && window.qBittorrent.Log.unload();
|
window.qBittorrent.Log && window.qBittorrent.Log.unload();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue