| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- /*
- * Sets the default cursor the remove password link. The link doesn't use
- * the href attribute, so we need to set the cursor manually.
- */
- #inviteDialogRemovePassword {
- cursor: hand;
- }
-
- .invite-dialog {
- .dial-in-numbers {
- .dial-in-numbers-copy {
- opacity: 0;
- pointer-events: none;
- position: fixed;
- user-select: text;
- -webkit-user-select: text;
- }
-
- .dial-in-numbers-conference-id {
- color: orange;
- margin-left: 3px;
- }
-
- .dial-in-numbers-trigger {
- position: relative;
- width: 100%;
-
- .dial-in-numbers-trigger-icon {
- position: absolute;
- right: 0;
- top: 4px;
- }
- }
-
- .is-disabled,
- .is-loading {
- .dial-in-numbers-trigger-icon {
- display: none;
- }
- }
- }
-
- .form-control {
- padding: 0;
- }
-
- .inviteLink {
- color: $readOnlyInputColor;
- }
-
- .lock-state {
- display: flex;
- }
-
- .password-overview {
- margin-top: 10px;
-
- .form-control {
- margin-top: 10px;
- }
-
- .password-overview-status,
- .remove-password {
- display: flex;
- justify-content: space-between;
- }
-
- .password-overview-toggle-edit,
- .remove-password-link {
- cursor: pointer;
- text-decoration: none;
- }
-
- .remove-password {
- margin-top: 15px;
- }
- }
-
- .remove-password-current {
- color: $inputControlEmColor;
- }
- }
|