2018-05-17 18:24:30 +02:00
|
|
|
#conversejs {
|
2018-07-22 16:12:36 +02:00
|
|
|
.btn--small {
|
|
|
|
font-size: 80%;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
2018-05-17 18:24:30 +02:00
|
|
|
form {
|
2019-04-24 11:03:27 +02:00
|
|
|
.hidden-username {
|
|
|
|
opacity: 0 !important;
|
|
|
|
height: 0 !important;
|
|
|
|
padding: 0 !important;
|
|
|
|
}
|
2019-04-11 23:41:56 +02:00
|
|
|
.error-feedback {
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
}
|
2018-05-17 18:24:30 +02:00
|
|
|
.form-check-label {
|
2018-05-18 12:03:03 +02:00
|
|
|
margin-top: $form-check-input-margin-y;
|
2018-05-17 18:24:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.form-control {
|
|
|
|
&::-webkit-input-placeholder { /* Chrome/Opera/Safari */
|
2018-10-25 20:42:56 +02:00
|
|
|
color: var(--subdued-color);
|
2018-05-17 18:24:30 +02:00
|
|
|
}
|
|
|
|
&::-moz-placeholder { /* Firefox 19+ */
|
2018-10-25 20:42:56 +02:00
|
|
|
color: var(--subdued-color);
|
2018-05-17 18:24:30 +02:00
|
|
|
}
|
|
|
|
&:-ms-input-placeholder { /* IE 10+ */
|
2018-10-25 20:42:56 +02:00
|
|
|
color: var(--subdued-color);
|
2018-05-17 18:24:30 +02:00
|
|
|
}
|
|
|
|
&:-moz-placeholder { /* Firefox 18- */
|
2018-10-25 20:42:56 +02:00
|
|
|
color: var(--subdued-color);
|
2018-05-17 18:24:30 +02:00
|
|
|
}
|
|
|
|
&::placeholder {
|
2018-10-25 20:42:56 +02:00
|
|
|
color: var(--subdued-color);
|
2018-05-17 18:24:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.clear-input {
|
2019-06-19 15:37:55 +02:00
|
|
|
margin-top: 0.5em;
|
|
|
|
margin-bottom : 0.5em;
|
2018-05-17 18:24:30 +02:00
|
|
|
position: absolute;
|
|
|
|
right: 0.2em;
|
|
|
|
cursor: pointer;
|
2019-06-19 15:37:55 +02:00
|
|
|
font-size: var(--font-size);
|
2018-05-17 18:24:30 +02:00
|
|
|
}
|
|
|
|
|
2019-07-04 14:12:12 +02:00
|
|
|
&#converse-register,
|
2018-05-17 18:24:30 +02:00
|
|
|
&#converse-login {
|
2020-01-10 11:02:40 +01:00
|
|
|
background: var(--controlbox-pane-background-color);
|
2018-05-17 18:24:30 +02:00
|
|
|
legend {
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
margin: 0 auto 0.5em auto;
|
|
|
|
}
|
|
|
|
fieldset.buttons {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.login-anon {
|
|
|
|
height: auto;
|
|
|
|
white-space: normal;
|
|
|
|
}
|
|
|
|
.save-submit {
|
2018-10-25 20:42:56 +02:00
|
|
|
color: var(--save-button-color);
|
2018-05-17 18:24:30 +02:00
|
|
|
}
|
|
|
|
.form-url {
|
|
|
|
display: block;
|
|
|
|
font-weight: normal;
|
|
|
|
margin: 1em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&.converse-form {
|
2019-01-10 21:11:18 +01:00
|
|
|
padding: 1.2rem;
|
2018-05-17 18:24:30 +02:00
|
|
|
legend {
|
2018-10-25 20:42:56 +02:00
|
|
|
color: var(--text-color);
|
2018-05-17 18:24:30 +02:00
|
|
|
font-size: 125%;
|
|
|
|
margin-bottom: 1.5em;
|
|
|
|
}
|
|
|
|
select,
|
|
|
|
input[type=password],
|
|
|
|
input[type=number],
|
|
|
|
input[type=text] {
|
|
|
|
min-width: 50%;
|
|
|
|
}
|
|
|
|
input[type=text],
|
|
|
|
input[type=password],
|
|
|
|
input[type=number],
|
|
|
|
input[type=button],
|
|
|
|
input[type=submit] {
|
|
|
|
padding: 0.5em;
|
|
|
|
}
|
|
|
|
input[type=button],
|
|
|
|
input[type=submit] {
|
|
|
|
padding-left: 1em;
|
|
|
|
padding-right: 1em;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
input.error {
|
2018-10-25 20:42:56 +02:00
|
|
|
border: 1px solid var(--error-color);
|
|
|
|
color: var(--text-color);
|
2018-05-17 18:24:30 +02:00
|
|
|
}
|
|
|
|
.text-muted {
|
2018-10-25 20:42:56 +02:00
|
|
|
color: var(--subdued-color) !important;
|
2018-05-17 18:24:30 +02:00
|
|
|
font-size: 85%;
|
|
|
|
padding-top: 0.5em;
|
|
|
|
a {
|
2018-10-25 20:42:56 +02:00
|
|
|
color: var(--link-color-lighten-10-percent);
|
2018-05-17 18:24:30 +02:00
|
|
|
}
|
|
|
|
&.error {
|
2018-10-25 20:42:56 +02:00
|
|
|
color: var(--error-color);
|
2018-05-17 18:24:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-08-20 13:40:26 +02:00
|
|
|
|
|
|
|
&.converse-form--modal {
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2018-05-17 18:24:30 +02:00
|
|
|
&.converse-centered-form {
|
2019-04-24 11:03:27 +02:00
|
|
|
min-height: 66%;
|
2018-05-17 18:24:30 +02:00
|
|
|
text-align: center;
|
2019-04-24 11:03:27 +02:00
|
|
|
input {
|
|
|
|
max-width: 30em;
|
|
|
|
margin: auto;
|
|
|
|
}
|
2018-05-17 18:24:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|