summaryrefslogtreecommitdiff
path: root/web-ui/app/scss/views/_compose-button.scss
blob: 81e0bb3304c7f7a3bb0e5c7d157601ddf47201d3 (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
// COMPOSE BUTTON
#compose {
  margin-bottom: 5px;
  padding-right: 4px;
  #compose-trigger {
    width: 100%;
    display: inline-block;
    padding: 5px;
    #compose-mails-trigger {
      background: $action_buttons;
      color: $white;
      padding: 10px 30px;
      text-align: center;
      font-weight: 400;
      font-size: 1.2em;
      width: 100%;
      height: 100%;
      margin-bottom: 0px;
      @include btn-transition;
      &:hover {
        background: lighten($action_buttons, 10%);
        cursor: pointer;
      }
    }
  }
}