mirror of
https://github.com/nextcloud/server.git
synced 2025-02-07 01:50:38 +00:00
ce7b331d33
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
40 lines
888 B
CSS
40 lines
888 B
CSS
/*!
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
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;
|
|
}
|