WebUI: Apply box-sizing reset

Box-sizing: border-box is now applied globally. A lot of tiny changes were made but they were necessary to correct resulting inconsistencies. Everything should be pretty much as it was with just some minor exceptions.

Looks like this PR also indirectly fixed #21414.

PR #21464.
This commit is contained in:
skomerko 2024-10-12 08:22:07 +02:00 committed by GitHub
parent 81509dfb65
commit 0704049026
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
29 changed files with 195 additions and 188 deletions

View file

@ -367,7 +367,7 @@ window.qBittorrent.DynamicTable ??= (() => {
actions: actions,
menu: menuId,
offsets: {
x: -15,
x: 0,
y: 2
}
});
@ -2109,7 +2109,7 @@ window.qBittorrent.DynamicTable ??= (() => {
const dirImg = new Element("img", {
src: "images/directory.svg",
styles: {
"width": 15,
"width": 20,
"padding-right": 5,
"margin-bottom": -3,
"margin-left": (node.depth * 20)
@ -2442,7 +2442,7 @@ window.qBittorrent.DynamicTable ??= (() => {
const dirImg = new Element("img", {
src: "images/directory.svg",
styles: {
"width": 15,
"width": 20,
"padding-right": 5,
"margin-bottom": -3
},