123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- md-dialog {
- min-width: 520px;
- max-width: 750px;
- p {
- margin-bottom: 16px;
- line-height: 1.3em;
- &:last-of-type {
- margin-bottom: 0;
- }
- }
- h2 {
- margin-top: 24px;
- margin-bottom: 16px;
- font-size: 1.4em;
- }
- ul {
- margin-left: 1.3em;
- li {
- line-height: 1.5em;
- }
- }
- md-dialog-content {
- line-height: 1.3em;
- // If a h2 is the first child of a dialog, remove the top margin
- .md-dialog-content > h2 {
- &:first-child {
- margin-top: 0;
- }
- }
- }
- .md-subheader-inner {
- padding-left: 0;
- }
- .status {
- padding-left: 16px;
- }
- }
- md-dialog.send-file-dialog {
- md-input-container.input-caption {
- margin-bottom: 0;
- }
- md-input-container.input-send-as-file {
- margin-top: 0;
- margin-bottom: 0;
- }
- .preview {
- display: block;
- margin: 0 auto;
- max-width: 100%;
- max-height: 250px;
- }
- }
- md-dialog.message-history-dialog {
- md-dialog-content {
- padding: 24px;
- }
- .event-type {
- font-weight: bold;
- &::after {
- content: ':';
- }
- }
- }
|