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

preferences.scss « profiles « pages « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f8da0983b7709b6cb59a3dea01b04c133649cce3 (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
55
56
.application-theme {
  label {
    margin-right: 20px;
    text-align: center;

    .preview {
      border-radius: 4px;

      height: 80px;
      margin-bottom: 10px;
      width: 160px;

      &.ui_blue {
        background: $theme-blue;
      }

      &.ui_charcoal {
        background: $theme-charcoal;
      }

      &.ui_graphite {
        background: $theme-graphite;
      }

      &.ui_gray {
        background: $theme-gray;
      }

      &.ui_green {
        background: $theme-green;
      }

      &.ui_violet {
        background: $theme-violet;
      }
    }
  }
}

.syntax-theme {
  label {
    margin-right: 20px;
    text-align: center;

    .preview {
      margin-bottom: 10px;
      width: 160px;

      img {
        border-radius: 4px;

        max-width: 100%;
      }
    }
  }
}