_modal.scss 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. }
  21. .modal-footer {
  22. justify-content: flex-start;
  23. }
  24. }
  25. .scrollable-container {
  26. max-height: 50vh;
  27. overflow-y: auto;
  28. }
  29. .role-form, .affiliation-form {
  30. padding: 2em 0 1em 0;
  31. }
  32. .set-xmpp-status {
  33. margin: 1em;
  34. .custom-control-label {
  35. margin-top: 0.25em;
  36. }
  37. }
  38. #omemo-tabpanel {
  39. margin-top: 1em;
  40. }
  41. .btn {
  42. font-weight: normal;
  43. }
  44. #user-profile-modal {
  45. .profile-form {
  46. label {
  47. font-weight: bold;
  48. }
  49. }
  50. .fingerprint-removal {
  51. label {
  52. display: flex;
  53. padding: 0.75rem 1.25rem;
  54. }
  55. }
  56. .list-group-item {
  57. display: flex;
  58. justify-content: left;
  59. font-size: 95%;
  60. input[type="checkbox"] {
  61. margin-right: 1em;
  62. }
  63. }
  64. }
  65. .fingerprints {
  66. width: 100%;
  67. margin-bottom: 1em;
  68. }
  69. .fingerprint-trust {
  70. display: flex;
  71. justify-content: space-between;
  72. font-size: 95%;
  73. .fingerprint {
  74. margin-left: 1em;
  75. }
  76. }
  77. }
  78. }