_modal.scss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. #conversejs {
  2. #converse-modals {
  3. .modal-body {
  4. margin-bottom: 2em;
  5. }
  6. .scrollable-container {
  7. max-height: 50vh;
  8. overflow-y: auto;
  9. }
  10. .role-form, .affiliation-form {
  11. padding: 2em 0 1em 0;
  12. }
  13. .set-xmpp-status {
  14. margin: 1em;
  15. .custom-control-label {
  16. margin-top: 0.25em;
  17. }
  18. }
  19. #omemo-tabpanel {
  20. margin-top: 1em;
  21. }
  22. .btn {
  23. font-weight: normal;
  24. }
  25. #user-profile-modal {
  26. .profile-form {
  27. label {
  28. font-weight: bold;
  29. }
  30. }
  31. .fingerprint-removal {
  32. label {
  33. display: flex;
  34. padding: 0.75rem 1.25rem;
  35. }
  36. }
  37. .list-group-item {
  38. display: flex;
  39. justify-content: left;
  40. font-size: 95%;
  41. input[type="checkbox"] {
  42. margin-right: 1em;
  43. }
  44. }
  45. }
  46. .fingerprints {
  47. width: 100%;
  48. margin-bottom: 1em;
  49. }
  50. .fingerprint-trust {
  51. display: flex;
  52. justify-content: space-between;
  53. font-size: 95%;
  54. .fingerprint {
  55. margin-left: 1em;
  56. }
  57. }
  58. }
  59. }