1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- md-dialog {
- min-width: 470px;
- max-width: 600px;
- p {
- margin-bottom: 16px;
- line-height: 1.3em;
- &:last-of-type {
- margin-bottom: 0;
- }
- }
- h2 {
- font-size: 1.4em;
- margin-top: 24px;
- margin-bottom: 16px;
- }
- 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: 0px auto;
- max-height: 250px;
- max-width: 100%;
- }
- }
- md-dialog.message-history-dialog {
- md-dialog-content {
- padding: 24px;
- }
- .event-type {
- font-weight: bold;
- }
- .event-type:after {
- content: ':';
- }
- }
|