mirror of
https://github.com/RetroShare/RSNewWebUI.git
synced 2026-09-12 19:50:04 +05:00
Merge branch 'master' into fix-issues
This commit is contained in:
commit
ca26e85364
@ -79,8 +79,6 @@ const retroshareId = () => {
|
||||
'textarea[readonly].textArea',
|
||||
{
|
||||
id: 'retroId',
|
||||
rows: 1,
|
||||
cols: v.attrs.ownCert.length + 2,
|
||||
placeholder: 'certificate',
|
||||
onclick: () => {
|
||||
document.getElementById('retroId').select();
|
||||
|
||||
@ -52,7 +52,12 @@ function loginComponent() {
|
||||
const buttonLogin = () =>
|
||||
m(
|
||||
'button[type=submit].submit-btn#loginBtn',
|
||||
{ onclick: () => verifyLogin(uname, passwd, url) },
|
||||
{
|
||||
onclick: (ev) => {
|
||||
ev.preventDefault();
|
||||
verifyLogin(uname, passwd, url);
|
||||
},
|
||||
},
|
||||
'Login'
|
||||
);
|
||||
|
||||
|
||||
@ -53,7 +53,9 @@
|
||||
border-radius: 4px;
|
||||
background: transparentize($dark-color, 0.95);
|
||||
& .textArea {
|
||||
padding: 0.25rem;
|
||||
padding: 0;
|
||||
width: 100%;
|
||||
min-height: 75px;
|
||||
font-size: 1rem;
|
||||
font-family: monospace;
|
||||
background: transparent;
|
||||
|
||||
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user