mirror of
https://github.com/transmission/transmission
synced 2025-02-20 21:26:53 +00:00
fix: open torrent dialog layout adjusted (#4063)
This commit is contained in:
parent
745c884774
commit
41422c357e
2 changed files with 12 additions and 1 deletions
|
@ -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 {
|
||||
|
|
|
@ -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');
|
||||
|
|
Loading…
Reference in a new issue