fix: open torrent dialog layout adjusted (#4063)

This commit is contained in:
Hakjoon Sim 2022-11-01 23:14:15 +09:00 committed by GitHub
parent 745c884774
commit 41422c357e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 1 deletions

View File

@ -1571,6 +1571,17 @@ dialog {
padding-left: 10px;
}
/// OPEN TORRENT DIALOG
.open-torrent {
input {
margin-bottom: 15px;
}
#auto-start-label {
margin-left: 5px;
}
}
/// HOTKEYS DIALOG
.shortcuts-dialog {

View File

@ -160,7 +160,7 @@ export class OpenDialog extends EventTarget {
label = document.createElement('label');
label.id = 'add-dialog-folder-label';
label.for = input_id;
label.textContent = 'Destination folder:';
label.textContent = 'Destination folder: ';
workarea.append(label);
const freespace = document.createElement('span');