e062057cf6
As the server defines some SCSS rules using "XXX + .icon-confirm" the selector is more specific than just "input" used in "guest.css", so the server SCSS rules took precedence over the guest CSS rules. Now a more specific selector was added to the guest and public share auth rules; as the guest and public share auth rules are loaded after the server ones now the guest rules for input elements take precedence over the server ones. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
28 lines
534 B
CSS
28 lines
534 B
CSS
form fieldset {
|
|
display: flex !important;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#password {
|
|
margin-right: 0 !important;
|
|
border-top-right-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
height: 45px;
|
|
box-sizing: border-box;
|
|
flex: 1 1 auto;
|
|
width: 100% !important;
|
|
min-width: 0; /* FF hack for to override default value */
|
|
}
|
|
|
|
input[type='submit'],
|
|
input[type='submit'].icon-confirm {
|
|
width: 45px;
|
|
height: 45px;
|
|
margin-left: 0 !important;
|
|
border-top-left-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
}
|
|
|
|
fieldset > p {
|
|
display: inline-flex;
|
|
}
|