summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/mailers/repository_push_email.scss
blob: 001994db97b72970e271e6f60f380883e2f33036 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
@import "framework/variables";

table.code {
  width: 100%;
  font-family: monospace;
  border: none;
  border-collapse: separate;
  margin: 0;
  padding: 0;
  -premailer-cellpadding: 0;
  -premailer-cellspacing: 0;
  -premailer-width: 100%;

  td {
    line-height: $code_line_height;
    font-family: monospace;
    font-size: $code_font_size;
  }

  td.diff-line-num {
    margin: 0;
    padding: 0;
    border: none;
    background: $background-color;
    color: rgba(0, 0, 0, 0.3);
    padding: 0 5px;
    border-right: 1px solid $border-color;
    text-align: right;
    min-width: 35px;
    max-width: 50px;
    width: 35px;
  }

  td.line_content {
    display: block;
    margin: 0;
    padding: 0 0.5em;
    border: none;
    white-space: pre;
  }
}

@import "highlight/white";