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

navbar.scss « sections « ci « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: efa70eb295628a0d52fe80daec8ebdc1d4cd03d1 (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
.navbar-static-top {
  margin-bottom: 20px;
}

.navbar-ci {
  background: $style_color;

  .navbar-brand {
    color: #fff;

    &:hover {
      color: #fff;
    }
  }
  .brand,
  .nav > li > a {
    color: #fff;

    &:hover, &:focus, &:active {
      background: none;
    }
  }

  .profile-holder {
    position: relative;

    img {
      position: absolute;
      top: -8px;
      width: 32px;
      @include border-radius(32px);
    }

    span {
      margin-left: 42px;
    }
  }

  .btn-login {
    padding: 7px 22px;
    margin-top: 7px;
    &:hover, &:active, &:focus {
      background: #018865 !important;
    }
  }
}

.turbolink-spinner {
  position: absolute;
  top: 11px;
  left: 50%;
  color: #FFF;
  font-size: 20px;
}