Welcome to mirror list, hosted at ThFree Co, Russian Federation.

editor.scss « pages « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 759ba6b1c226bb0aae58f1c477e5c951755b87ba (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
44
45
46
47
48
49
50
51
52
53
54
.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 {
    display: inline-block;
    margin: 0;
    padding: 2px;

    > * {
      float: left;
    }

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

  .file-title {
    @extend .monospace;
    font-size: 14px;
    padding: 5px;
  }

  .editor-ref {
    background: $background-color;
    padding: 11px 15px;
    border-right: 1px solid #CCC;
    display: inline-block;
    margin: -5px -5px;
    margin-right: 10px;
  }

  .editor-file-name {
    .new-file-name {
      display: inline-block;
      width: 200px;
    }
  }
}