You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_invite.scss 899B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * Sets the default cursor the remove password link. The link doesn't use
  3. * the href attribute, so we need to set the cursor manually.
  4. */
  5. #inviteDialogRemovePassword {
  6. cursor: hand;
  7. }
  8. .invite-dialog {
  9. .form-control {
  10. padding: 0;
  11. }
  12. .inviteLink {
  13. color: $readOnlyInputColor;
  14. }
  15. .lock-state {
  16. display: flex;
  17. }
  18. .password-overview {
  19. .form-control {
  20. margin-top: 10px;
  21. }
  22. .password-overview-status,
  23. .remove-password {
  24. display: flex;
  25. justify-content: space-between;
  26. }
  27. .password-overview-toggle-edit,
  28. .remove-password-link {
  29. cursor: pointer;
  30. text-decoration: none;
  31. }
  32. .remove-password {
  33. margin-top: 15px;
  34. }
  35. }
  36. .remove-password-current {
  37. color: $inputControlEmColor;
  38. }
  39. }