summaryrefslogtreecommitdiff
path: root/web-ui/app/scss/_reply.scss
blob: 5a044b0b2f110808d7ddc28c6aff0cdd4b5e1c2c (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

#reply-section {
  .reply-container {
    margin: 10px 0;
    padding: 10px;
    border: 1px dashed darken($contrast, 10%);
    @include btn-transition;
  }

  button {
    margin: 0;
  }

  #all-recipients {
    color: #000;
  }

  #all-recipients:focus {
    background-color: darken($contrast, 10%)
  }

  #reply-button, #reply-all-button, #forward-button {
    text-align: center;
    font-weight: 100;
    font-size: 1.1em;
    background: #FFF;
    color: #999;
    padding: 25px;
    margin: 0;
    @include border-radius(0);
    &:hover {
      background: darken($contrast, 5%);
      cursor: pointer;
    }
  }
}