_modal.scss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. #conversejs {
  2. #converse-modals {
  3. .modal {
  4. background-color: rgba(0, 0, 0, 0.4);
  5. .modal-body {
  6. overflow-y: auto;
  7. max-height: 75vh;
  8. margin-bottom: 2em;
  9. p {
  10. padding: 0.25rem 0;
  11. }
  12. .confirm {
  13. .form-group {
  14. p:first-child {
  15. font-size: 110%;
  16. font-weight: bold;
  17. }
  18. }
  19. }
  20. &.fit-content {
  21. box-sizing: content-box;
  22. img {
  23. max-width: 90vw;
  24. }
  25. }
  26. }
  27. .modal-body--image {
  28. .chat-image {
  29. max-height: 99%;
  30. max-width: 100%;
  31. }
  32. }
  33. .modal-footer {
  34. justify-content: flex-start;
  35. }
  36. .roomid-policy-error {
  37. color: var(--error-color);
  38. font-size: var(--font-size-small);
  39. float: right;
  40. }
  41. }
  42. .scrollable-container {
  43. max-height: 45vh;
  44. overflow-y: auto;
  45. }
  46. .role-form, .affiliation-form {
  47. padding: 2em 0 1em 0;
  48. }
  49. .set-xmpp-status {
  50. margin: 1em;
  51. .custom-control-label {
  52. padding-top: 0.25em;
  53. }
  54. }
  55. #omemo-tabpanel {
  56. margin-top: 1em;
  57. }
  58. .btn {
  59. font-weight: normal;
  60. }
  61. #user-profile-modal {
  62. .profile-form {
  63. label {
  64. font-weight: bold;
  65. }
  66. }
  67. .fingerprint-removal {
  68. label {
  69. display: flex;
  70. padding: 0.75rem 1.25rem;
  71. }
  72. }
  73. .list-group-item {
  74. display: flex;
  75. justify-content: left;
  76. font-size: 95%;
  77. input[type="checkbox"] {
  78. margin-right: 1em;
  79. }
  80. }
  81. }
  82. .fingerprints {
  83. width: 100%;
  84. margin-bottom: 1em;
  85. }
  86. .fingerprint-trust {
  87. display: flex;
  88. justify-content: space-between;
  89. font-size: 95%;
  90. .fingerprint {
  91. margin-left: 1em;
  92. }
  93. }
  94. }
  95. }