您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

_invite.scss 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. .dial-in-numbers {
  10. .dial-in-numbers-trigger {
  11. position: relative;
  12. width: 100%;
  13. .dial-in-numbers-trigger-icon {
  14. position: absolute;
  15. right: 0;
  16. top: 4px;
  17. }
  18. }
  19. .is-disabled,
  20. .is-loading {
  21. .dial-in-numbers-trigger-icon {
  22. display: none;
  23. }
  24. }
  25. }
  26. .form-control {
  27. padding: 0;
  28. }
  29. .inviteLink {
  30. color: $readOnlyInputColor;
  31. }
  32. .lock-state {
  33. display: flex;
  34. }
  35. .password-overview {
  36. margin-top: 10px;
  37. .form-control {
  38. margin-top: 10px;
  39. }
  40. .password-overview-status,
  41. .remove-password {
  42. display: flex;
  43. justify-content: space-between;
  44. }
  45. .password-overview-toggle-edit,
  46. .remove-password-link {
  47. cursor: pointer;
  48. text-decoration: none;
  49. }
  50. .remove-password {
  51. margin-top: 15px;
  52. }
  53. }
  54. .remove-password-current {
  55. color: $inputControlEmColor;
  56. }
  57. }