_dialogs.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. md-dialog {
  2. min-width: 470px;
  3. max-width: 600px;
  4. p {
  5. margin-bottom: 16px;
  6. line-height: 1.3em;
  7. &:last-of-type {
  8. margin-bottom: 0;
  9. }
  10. }
  11. h2 {
  12. font-size: 1.4em;
  13. margin-top: 24px;
  14. margin-bottom: 16px;
  15. }
  16. ul {
  17. margin-left: 1.3em;
  18. li {
  19. line-height: 1.5em;
  20. }
  21. }
  22. md-dialog-content {
  23. line-height: 1.3em;
  24. // If a h2 is the first child of a dialog, remove the top margin
  25. .md-dialog-content>h2:first-child {
  26. margin-top: 0;
  27. }
  28. }
  29. .md-subheader-inner {
  30. padding-left: 0;
  31. }
  32. .status {
  33. padding-left: 16px;
  34. }
  35. }
  36. md-dialog.send-file-dialog {
  37. md-input-container.input-caption {
  38. margin-bottom: 0;
  39. }
  40. md-input-container.input-send-as-file {
  41. margin-top: 0;
  42. margin-bottom: 0;
  43. }
  44. .preview {
  45. display: block;
  46. margin: 0px auto;
  47. max-height: 250px;
  48. max-width: 100%;
  49. }
  50. }
  51. md-dialog.message-history-dialog {
  52. md-dialog-content {
  53. padding: 24px;
  54. }
  55. .event-type {
  56. font-weight: bold;
  57. }
  58. .event-type:after {
  59. content: ':';
  60. }
  61. }