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

preferences.scss « profiles « page_bundles « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d09ad42a722815709d32f3dd163a170126145fa5 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
@import 'page_bundles/mixins_and_variables_and_functions';

.application-theme {
  $ui-gray-bg: $gray-900;
  $ui-light-gray-bg: $gray-50;
  $ui-dark-mode-bg: $gray-950;

  .preview {
    font-size: 0;
    height: 48px;
    border-radius: 4px;
    min-width: 112px;
    margin-bottom: $gl-padding-8;

    &.ui-indigo {
      background-color: $indigo-900;
    }

    &.ui-light-indigo {
      background-color: $indigo-700;
    }

    &.ui-blue {
      background-color: $theme-blue-900;
    }

    &.ui-light-blue {
      background-color: $theme-light-blue-700;
    }

    &.ui-green {
      background-color: $theme-green-900;
    }

    &.ui-light-green {
      background-color: $theme-green-700;
    }

    &.ui-red {
      background-color: $theme-red-900;
    }

    &.ui-light-red {
      background-color: $theme-light-red-700;
    }

    &.ui-gray {
      background-color: $ui-gray-bg;
      border: solid 1px $border-color;
    }

    &.ui-light-gray {
      background-color: $ui-light-gray-bg;
    }

    &.gl-dark {
      background-color: $ui-dark-mode-bg;
      border: solid 1px $border-color;
    }
  }

  .preview-row {
    display: block;
  }
}

.syntax-theme {
  label {
    .preview {
      margin-bottom: 8px;

      img {
        border-radius: 4px;
        max-width: 100%;
      }
    }
  }
}