summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/sections/editor.scss
blob: f62f46ee1685c50ad7fb41d5e5e80c361b880eb9 (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
.file-editor {
  #editor{
    border: none;
    @include border-radius(0);
    height: 500px;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
  }

  .cancel-btn {
    color: #B94A48;
    &:hover {
      color: #B94A48;
    }
  }
  .commit-button-annotation {
    @extend .alert;
    @extend .alert-info;
    display: inline-block;
    margin: 0;
    padding: 2px;

    > * {
      float: left;
    }

    .message {
      display: inline-block;
      margin: 5px 8px 0 8px;
    }
  }
}