Browse Source

WebUI: make various dialog resizable

And enlarge dialog default width.
adaptive-webui-19844
Chocobo1 3 years ago
parent
commit
08f3630f01
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C
  1. 4
      src/webui/www/private/newcategory.html
  2. 2
      src/webui/www/private/newtag.html
  3. 2
      src/webui/www/private/rename.html
  4. 22
      src/webui/www/private/scripts/mocha-init.js
  5. 4
      src/webui/www/private/setlocation.html

4
src/webui/www/private/newcategory.html

@ -132,9 +132,9 @@ @@ -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>

2
src/webui/www/private/newtag.html

@ -95,7 +95,7 @@ @@ -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>

2
src/webui/www/private/rename.html

@ -65,7 +65,7 @@ @@ -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>

22
src/webui/www/private/scripts/mocha-init.js

@ -489,7 +489,7 @@ const initializeWindows = function() { @@ -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() { @@ -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() { @@ -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() { @@ -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() { @@ -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() { @@ -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() { @@ -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,

4
src/webui/www/private/setlocation.html

@ -68,8 +68,8 @@ @@ -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">&nbsp;</div>
<input type="text" id="setLocation" autocorrect="off" autocapitalize="none" style="width: 99%;" />
<div style="float: none; width: 99%;" id="error_div">&nbsp;</div>
<div style="text-align: center; padding-top: 10px;">
<input type="button" value="QBT_TR(Save)QBT_TR[CONTEXT=HttpServer]" id="setLocationButton" />
</div>

Loading…
Cancel
Save