Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

_invite.scss 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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-conference-id {
  11. color: orange;
  12. margin-left: 3px;
  13. }
  14. /*
  15. * dial-in-numbers-copy styling is needed for the feature of copying
  16. * text to the clipboard. The styling keeps the element invisible
  17. * to the user but still programmatically selectable for copying.
  18. */
  19. .dial-in-numbers-copy {
  20. opacity: 0;
  21. pointer-events: none;
  22. position: fixed;
  23. -webkit-user-select: text;
  24. user-select: text;
  25. }
  26. .dial-in-numbers-trigger {
  27. position: relative;
  28. width: 100%;
  29. .dial-in-numbers-trigger-icon {
  30. position: absolute;
  31. right: 0;
  32. top: 4px;
  33. }
  34. }
  35. .is-disabled,
  36. .is-loading {
  37. .dial-in-numbers-trigger-icon {
  38. display: none;
  39. }
  40. }
  41. }
  42. .form-control {
  43. padding: 0;
  44. }
  45. .inviteLink {
  46. color: $readOnlyInputColor;
  47. }
  48. .lock-state {
  49. display: flex;
  50. }
  51. .password-overview {
  52. margin-top: 10px;
  53. .form-control {
  54. margin-top: 10px;
  55. }
  56. .password-overview-status,
  57. .remove-password {
  58. display: flex;
  59. justify-content: space-between;
  60. }
  61. .password-overview-toggle-edit,
  62. .remove-password-link {
  63. cursor: pointer;
  64. text-decoration: none;
  65. }
  66. .remove-password {
  67. margin-top: 15px;
  68. }
  69. }
  70. .remove-password-current {
  71. color: $inputControlEmColor;
  72. }
  73. }