_email.scss 1.19 KB
Newer Older
1 2 3 4 5 6 7 8
.email-editor {
  border: 1px solid #c8c8c8;
}

.xmodule_edit {
  ul {
    margin: 0;
    padding: 0;
9
    margin-bottom: ($baseline/2);
10 11 12 13 14 15 16 17 18
    list-style: none;
  }

  a {
    line-height: (16*1.48) + px;
    line-height: 1.48rem;
  }
}

19
.submit-email-action {
20
  margin-top: ($baseline/2);
21 22
  line-height: 1.3;

23
  ul {
24
    margin-top: 0;
25
    margin-bottom: ($baseline/2);
26 27 28
  }
}

29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
.email-background{
  .content-history-email-table {
    display: none;
  }

  .email-content-wrapper {
    min-height: 100%;
    background: #f5f5f5;

    hr {
      width: 90%;
      margin-left: 5%;
      margin-top: 0;
    }
  }

  .message-bold em {
    font-weight: bold;
    font-style: normal;
  }

  .email-content-header {
    padding: 20px 5%;

    h2 {
      text-align: left;
55
      padding-top: ($baseline/2);
56 57 58 59
      margin: 0;
    }

    input {
60
      margin-top: ($baseline*0.75);
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
      float: right;
    }
  }

  .email-content-message {
     padding: 5px 5% 40px 5%;
  }

  .email-modal {
    overflow: auto;
    color: $black;
  }

  .email-content-cell {
    p {
      padding: 15px;
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
    }

    a:hover {
      font-weight: bold;
    }
  }
}