mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-27 11:49:01 +03:00
WebUI: make various dialog resizable
And enlarge dialog default width.
This commit is contained in:
parent
2b17838820
commit
08f3630f01
5 changed files with 17 additions and 17 deletions
|
@ -132,9 +132,9 @@
|
|||
<body>
|
||||
<div style="padding: 10px 10px 0px 10px;">
|
||||
<p style="font-weight: bold;">QBT_TR(Category)QBT_TR[CONTEXT=TransferListWidget]:</p>
|
||||
<input type="text" id="categoryName" style="width: 220px;" />
|
||||
<input type="text" id="categoryName" style="width: 99%;" />
|
||||
<p style="font-weight: bold;">QBT_TR(Save path)QBT_TR[CONTEXT=TransferListWidget]:</p>
|
||||
<input type="text" id="savePath" style="width: 220px;" />
|
||||
<input type="text" id="savePath" style="width: 99%;" />
|
||||
<div style="text-align: center; padding-top: 10px;">
|
||||
<input type="button" value="QBT_TR(Add)QBT_TR[CONTEXT=HttpServer]" id="categoryNameButton" />
|
||||
</div>
|
||||
|
|
|
@ -95,7 +95,7 @@
|
|||
<body>
|
||||
<div style="padding: 10px 10px 0px 10px;">
|
||||
<p id="legendText" style="font-weight: bold;">QBT_TR(Comma-separated tags:)QBT_TR[CONTEXT=TransferListWidget]</p>
|
||||
<input type="text" id="tagName" style="width: 220px;" />
|
||||
<input type="text" id="tagName" style="width: 99%;" />
|
||||
<div style="text-align: center; padding-top: 10px;">
|
||||
<input type="button" value="QBT_TR(Add)QBT_TR[CONTEXT=HttpServer]" id="tagNameButton" />
|
||||
</div>
|
||||
|
|
|
@ -65,7 +65,7 @@
|
|||
<body>
|
||||
<div style="padding: 10px 10px 0px 10px;">
|
||||
<p style="font-weight: bold;">QBT_TR(New name)QBT_TR[CONTEXT=TransferListWidget]:</p>
|
||||
<input type="text" id="rename" style="width: 220px;" />
|
||||
<input type="text" id="rename" style="width: 99%;" />
|
||||
<div style="text-align: center; padding-top: 10px;">
|
||||
<input type="button" value="QBT_TR(Save)QBT_TR[CONTEXT=HttpServer]" id="renameButton" />
|
||||
</div>
|
||||
|
|
|
@ -489,7 +489,7 @@ const initializeWindows = function() {
|
|||
loadMethod: 'iframe',
|
||||
contentURL: new URI("setlocation.html").setData("hashes", hashes.join('|')).setData("path", row.full_data.save_path).toString(),
|
||||
scrollbars: false,
|
||||
resizable: false,
|
||||
resizable: true,
|
||||
maximizable: false,
|
||||
paddingVertical: 0,
|
||||
paddingHorizontal: 0,
|
||||
|
@ -511,11 +511,11 @@ const initializeWindows = function() {
|
|||
loadMethod: 'iframe',
|
||||
contentURL: new URI("rename.html").setData("hash", hash).setData("name", row.full_data.name).toString(),
|
||||
scrollbars: false,
|
||||
resizable: false,
|
||||
resizable: true,
|
||||
maximizable: false,
|
||||
paddingVertical: 0,
|
||||
paddingHorizontal: 0,
|
||||
width: 250,
|
||||
width: 400,
|
||||
height: 100
|
||||
});
|
||||
}
|
||||
|
@ -532,11 +532,11 @@ const initializeWindows = function() {
|
|||
loadMethod: 'iframe',
|
||||
contentURL: new URI("newcategory.html").setData("action", action).setData("hashes", hashes.join('|')).toString(),
|
||||
scrollbars: false,
|
||||
resizable: false,
|
||||
resizable: true,
|
||||
maximizable: false,
|
||||
paddingVertical: 0,
|
||||
paddingHorizontal: 0,
|
||||
width: 250,
|
||||
width: 400,
|
||||
height: 150
|
||||
});
|
||||
}
|
||||
|
@ -567,11 +567,11 @@ const initializeWindows = function() {
|
|||
loadMethod: 'iframe',
|
||||
contentURL: new URI("newcategory.html").setData("action", action).toString(),
|
||||
scrollbars: false,
|
||||
resizable: false,
|
||||
resizable: true,
|
||||
maximizable: false,
|
||||
paddingVertical: 0,
|
||||
paddingHorizontal: 0,
|
||||
width: 250,
|
||||
width: 400,
|
||||
height: 150
|
||||
});
|
||||
updateMainData();
|
||||
|
@ -587,11 +587,11 @@ const initializeWindows = function() {
|
|||
loadMethod: 'iframe',
|
||||
contentURL: new URI('newcategory.html').setData("action", action).setData("categoryName", categoryName).setData("savePath", savePath).toString(),
|
||||
scrollbars: false,
|
||||
resizable: false,
|
||||
resizable: true,
|
||||
maximizable: false,
|
||||
paddingVertical: 0,
|
||||
paddingHorizontal: 0,
|
||||
width: 250,
|
||||
width: 400,
|
||||
height: 150
|
||||
});
|
||||
updateMainData();
|
||||
|
@ -682,7 +682,7 @@ const initializeWindows = function() {
|
|||
loadMethod: 'iframe',
|
||||
contentURL: new URI("newtag.html").setData("action", action).setData("hashes", hashes.join("|")).toString(),
|
||||
scrollbars: false,
|
||||
resizable: false,
|
||||
resizable: true,
|
||||
maximizable: false,
|
||||
paddingVertical: 0,
|
||||
paddingHorizontal: 0,
|
||||
|
@ -728,7 +728,7 @@ const initializeWindows = function() {
|
|||
loadMethod: 'iframe',
|
||||
contentURL: new URI("newtag.html").setData("action", action).toString(),
|
||||
scrollbars: false,
|
||||
resizable: false,
|
||||
resizable: true,
|
||||
maximizable: false,
|
||||
paddingVertical: 0,
|
||||
paddingHorizontal: 0,
|
||||
|
|
|
@ -68,8 +68,8 @@
|
|||
<body>
|
||||
<div style="padding: 10px 10px 0px 10px;">
|
||||
<p style="font-weight: bold;">QBT_TR(Location)QBT_TR[CONTEXT=TransferListWidget]:</p>
|
||||
<input type="text" id="setLocation" autocorrect="off" autocapitalize="none" style="width: 370px;" />
|
||||
<div style="float: none; width: 370px;" id="error_div"> </div>
|
||||
<input type="text" id="setLocation" autocorrect="off" autocapitalize="none" style="width: 99%;" />
|
||||
<div style="float: none; width: 99%;" id="error_div"> </div>
|
||||
<div style="text-align: center; padding-top: 10px;">
|
||||
<input type="button" value="QBT_TR(Save)QBT_TR[CONTEXT=HttpServer]" id="setLocationButton" />
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue