File size: 2,241 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
.credentials-form {
margin-top: 24px;
margin-bottom: -24px;
.form-fieldset {
width: 100%;
}
.form-select {
width: 100%;
}
.dialog__action-buttons::before {
background: initial;
}
h3 {
margin-bottom: 4px;
}
.credentials-form__intro-text {
color: var(--color-text-subtle);
font-size: $font-body-small;
}
.credentials-form__buttons.form-fieldset:last-child {
margin-bottom: 20px;
}
@include breakpoint-deprecated( ">660px" ) {
.credentials-form__intro-text {
font-size: $font-body;
}
}
&__remember-credentials-info-popover {
vertical-align: middle;
margin-inline-start: 2px;
}
}
.credentials-form__buttons .credentials-form__buttons-flex {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
.credentials-form__btn {
width: 100%;
@include breakpoint-deprecated( ">480px" ) {
width: 200px;
}
}
.credentials-form__btn--cancel {
margin-right: 16px;
}
.credentials-form__mode-control {
display: flex;
justify-content: center;
margin-bottom: 16px;
.segmented-control {
max-width: 244px;
margin-right: 5px;
.is-selected {
a {
background-color: var(--color-neutral-70);
color: var(--color-text-inverted);
&:hover,
&:focus {
background-color: var(--color-neutral-60);
color: var(--color-text-inverted);
}
}
}
}
}
.credentials-form__row {
display: flex;
flex-wrap: wrap;
.form-fieldset:last-child {
margin-bottom: 24px;
}
}
@include breakpoint-deprecated( ">960px" ) {
.credentials-form__server-address.form-fieldset,
.credentials-form__username.form-fieldset,
.credentials-form__password.form-fieldset {
flex: 1 0 240px;
}
.credentials-form__server-address.form-fieldset,
.credentials-form__username.form-fieldset {
margin-right: 16px;
}
.credentials-form__port-number.form-fieldset {
flex: 0 0 160px;
}
}
.credentials-form__support-info {
align-items: center;
display: flex;
flex-direction: row;
justify-content: space-between;
.form-label {
margin-bottom: 0;
margin-right: 5px;
}
}
.inline-info {
p {
font-size: $font-body-small;
}
ul,
ol {
margin-left: 16px;
}
}
.credentials-form__credentials-guide-link {
width: 100%;
margin-bottom: 35px;
}
|