mirror of
https://github.com/nextcloud/server.git
synced 2025-05-01 12:30:27 +00:00

of type TYPE_EMAIL, when the "video verification" checkbox isn't checked. Users accessing non-anonymous public shares (TYPE_EMAIL shares) can now request a temporary password themselves. - Creates a migration step for the files_sharing app to add the 'password_expiration_time' attribute to the oc_shares table. - Makes share temporary passwords' expiration time configurable via a system value. - Adds a system config value to allow permanent share passwords -Fixes a typo in a comment in apps/files_sharing/src/components/SharingEntryLink.vue See https://github.com/nextcloud/server/issues/31005 Signed-off-by: Cyrille Bollu <cyrpub@bollu.be>
36 lines
760 B
CSS
36 lines
760 B
CSS
form fieldset {
|
|
display: flex !important;
|
|
flex-direction: column;
|
|
}
|
|
|
|
form fieldset > p {
|
|
position: relative;
|
|
}
|
|
|
|
#email,
|
|
#password {
|
|
margin: 5px 0;
|
|
padding-right: 45px;
|
|
height: 45px;
|
|
box-sizing: border-box;
|
|
flex: 1 1 auto;
|
|
width: 100% !important;
|
|
min-width: 0; /* FF hack for to override default value */
|
|
}
|
|
|
|
#password-input-form input[type='submit'],
|
|
#email-input-form input[type='submit'],
|
|
#email-input-form input[type='submit'].icon-confirm,
|
|
#password-input-form input[type='submit'].icon-confirm {
|
|
position: absolute;
|
|
top: 0px;
|
|
right: -5px;
|
|
width: 45px !important;
|
|
height: 45px;
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
.warning > .warning {
|
|
/* Do not use a top margin for warning messages in the warning container. */
|
|
margin-top: 0;
|
|
}
|