mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-20 13:23:34 -07:00
WebUI: remove outdated CSS property
WebUI already has the standard counterparts.
This commit is contained in:
parent
9df3ee0de8
commit
3e18b1d30c
3 changed files with 0 additions and 9 deletions
|
@ -678,15 +678,11 @@ td.statusBarSeparator {
|
||||||
}
|
}
|
||||||
|
|
||||||
#searchResultsTableContainer {
|
#searchResultsTableContainer {
|
||||||
-moz-height: calc(100% - 177px);
|
|
||||||
-webkit-height: calc(100% - 177px);
|
|
||||||
height: calc(100% - 177px);
|
height: calc(100% - 177px);
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
#searchResultsTableDiv {
|
#searchResultsTableDiv {
|
||||||
-moz-height: calc(100% - 26px) !important;
|
|
||||||
-webkit-height: calc(100% - 26px) !important;
|
|
||||||
height: calc(100% - 26px) !important;
|
height: calc(100% - 26px) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -174,7 +174,6 @@ window.qBittorrent.ContextMenu ??= (() => {
|
||||||
addTarget: function(t) {
|
addTarget: function(t) {
|
||||||
// prevent long press from selecting this text
|
// prevent long press from selecting this text
|
||||||
t.style.userSelect = "none";
|
t.style.userSelect = "none";
|
||||||
t.style["-webkit-user-select"] = "none";
|
|
||||||
|
|
||||||
this.targets[this.targets.length] = t;
|
this.targets[this.targets.length] = t;
|
||||||
this.setupEventListeners(t);
|
this.setupEventListeners(t);
|
||||||
|
|
|
@ -17,8 +17,6 @@
|
||||||
#searchPluginsTable {
|
#searchPluginsTable {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: calc(100% - 150px);
|
height: calc(100% - 150px);
|
||||||
-moz-height: calc(100% - 150px);
|
|
||||||
-webkit-height: calc(100% - 150px);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#searchPluginsTable .dynamicTable {
|
#searchPluginsTable .dynamicTable {
|
||||||
|
@ -27,8 +25,6 @@
|
||||||
|
|
||||||
#searchPluginsTableDiv {
|
#searchPluginsTableDiv {
|
||||||
height: calc(100% - 26px);
|
height: calc(100% - 26px);
|
||||||
-moz-height: calc(100% - 26px);
|
|
||||||
-webkit-height: calc(100% - 26px);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#dynamicTableFixedHeaderDiv {
|
#dynamicTableFixedHeaderDiv {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue