2021-11-15 21:16:06 +00:00
|
|
|
.enroll-secrets {
|
|
|
|
|
&__secret {
|
|
|
|
|
display: flex;
|
2022-09-08 13:44:04 +00:00
|
|
|
align-items: center;
|
2022-10-13 13:28:59 +00:00
|
|
|
margin-bottom: $pad-medium;
|
2022-09-08 13:44:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-field {
|
|
|
|
|
margin-bottom: 0;
|
2023-02-14 17:00:36 +00:00
|
|
|
width: 500px; // TODO: configurable from classname in reusable component
|
2021-11-15 21:16:06 +00:00
|
|
|
}
|
2022-09-08 13:44:04 +00:00
|
|
|
|
2021-11-15 21:16:06 +00:00
|
|
|
&__secret-input {
|
|
|
|
|
.form-field__label {
|
|
|
|
|
position: relative;
|
|
|
|
|
font-size: $x-small;
|
|
|
|
|
font-weight: $bold;
|
2022-09-08 13:44:04 +00:00
|
|
|
margin-bottom: 0;
|
2022-11-22 22:41:10 +00:00
|
|
|
height: 0;
|
2022-12-16 22:32:51 +00:00
|
|
|
min-height: 0;
|
2021-11-15 21:16:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.input-field {
|
|
|
|
|
&--disabled {
|
|
|
|
|
letter-spacing: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&--password {
|
|
|
|
|
letter-spacing: 4px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-07 17:48:43 +00:00
|
|
|
&__copy-message {
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 65px;
|
|
|
|
|
background-color: $ui-light-grey;
|
|
|
|
|
border: solid 1px #e2e4ea;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
padding: 2px 6px;
|
2021-11-15 21:16:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.buttons {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
position: absolute;
|
2023-05-17 17:07:38 +00:00
|
|
|
right: 4px;
|
2022-09-08 13:44:04 +00:00
|
|
|
top: 12px;
|
2021-11-15 21:16:06 +00:00
|
|
|
height: 16px;
|
|
|
|
|
|
|
|
|
|
span {
|
|
|
|
|
font-weight: $regular;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&--multiple-secrets {
|
|
|
|
|
.form-field__label {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-07 17:48:43 +00:00
|
|
|
&__show-secret-icon,
|
|
|
|
|
&__copy-secret-icon,
|
|
|
|
|
&__edit-secret-icon,
|
|
|
|
|
&__delete-secret-icon {
|
|
|
|
|
padding: 0 $pad-small;
|
|
|
|
|
margin-left: $pad-xsmall;
|
2021-11-15 21:16:06 +00:00
|
|
|
}
|
|
|
|
|
}
|