123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- #conversejs {
- .btn--small {
- font-size: 80%;
- font-weight: normal;
- }
- form {
- .form-check-label {
- margin-top: $form-check-input-margin-y;
- }
- .form-control {
- &::-webkit-input-placeholder { /* Chrome/Opera/Safari */
- color: $subdued-color;
- }
- &::-moz-placeholder { /* Firefox 19+ */
- color: $subdued-color;
- }
- &:-ms-input-placeholder { /* IE 10+ */
- color: $subdued-color;
- }
- &:-moz-placeholder { /* Firefox 18- */
- color: $subdued-color;
- }
- &::placeholder {
- color: $subdued-color;
- }
- }
- .clear-input {
- position: absolute;
- right: 0.2em;
- cursor: pointer;
- font-size: 0.75rem;
- }
- &#converse-register,
- &#converse-login {
- 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 {
- color: $save-button-color;
- }
- .form-url {
- display: block;
- font-weight: normal;
- margin: 1em 0;
- }
- }
- &.converse-form {
- background: white;
- padding: 1.5em;
- legend {
- color: $text-color;
- 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;
- margin: 0.5em 0;
- border: none;
- }
- input.error {
- border: 1px solid $error-color;
- color: $text-color;
- }
- .text-muted {
- color: $subdued-color !important;
- font-size: 85%;
- padding-top: 0.5em;
- a {
- color: lighten($link-color, 10%);
- }
- &.error {
- color: $error-color;
- }
- }
- }
- &.converse-form--modal {
- padding-bottom: 0;
- }
- &.converse-centered-form {
- text-align: center;
- }
- }
- }
|