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

colors.scss « pages « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aeaf2d7c1b348aa616d19970872162361aa61932 (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
79
80
.color-item {
  @include gl-display-flex;
}

.color-item-color {
  @include gl-flex-shrink-0;
  @include gl-mr-3;
  @include gl-top-0;
}

.right-sidebar-collapsed {
  .color-item {
    @include gl-pt-3;
  }

  .color-item-color {
    margin: 0;
  }

  .color-item-text {
    display: none;
  }
}

.warning-title {
  color: var(--gray-900, $gray-900);
}

.danger-title {
  color: var(--red-500, $red-500);
}

.suggest-colors {
  padding-top: 3px;

  a {
    border-radius: 4px;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    text-decoration: none;

    &:focus,
    &:focus:active {
      position: relative;
      z-index: 1;
      @include gl-focus;
    }
  }

  &.suggest-colors-dropdown {
    margin-top: 10px;
    margin-bottom: 10px;

    a {
      border-radius: 0;
      width: (100% / 7);
      margin-right: 0;
      margin-bottom: -5px;

      &:first-of-type {
        border-top-left-radius: $gl-border-radius-base;
      }

      &:nth-of-type(7) {
        border-top-right-radius: $gl-border-radius-base;
      }
      
      &:nth-last-child(7) {
        border-bottom-left-radius: $gl-border-radius-base;
      }

      &:last-of-type {
        border-bottom-right-radius: $gl-border-radius-base;
      }
    }
  }
}