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

nav.scss « sections « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bc19bc75a6797d0a95a99e01696913ba4560f222 (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
/*
 *  Main Menu of Application
 *
 */
ul.main_menu {
  margin: auto;
  margin: 30px 0;
  margin-top: 10px;
  border-bottom: 1px solid #DDD;
  height: 37px;
  position: relative;
  overflow: hidden;
  .count {
    position: relative;
    top: -1px;
    display: inline-block;
    height: 15px;
    margin: 0 0 0 5px;
    padding: 0 8px 1px 8px;
    height: auto;
    font-size: 0.82em;
    line-height: 14px;
    text-align: center;
    color: #777;
  }
  .label {
    background: $hover;
    text-shadow: none;
    color: $style_color;
  }
  li {
    list-style-type: none;
    margin: 0;
    display: table-cell;
    width: 1%;
    &.active {
      border-bottom: 2px solid #474D57;
      a {
        color: $style_color;
      }
    }

    &.home {
      a {
        background: url(home_icon.PNG) no-repeat center center;
        text-indent:-9999px;
        min-width: 20px;
        img {
          position: relative;
          top: 4px;
        }
      }
    }
  }
  a {
    display: block;
    text-align: center;
    font-weight: normal;
    height: 35px;
    line-height: 36px;
    color: #777;
    text-shadow: 0 1px 1px white;
    padding: 0 10px;
  }
}
/*
 *  End of Main Menu
 *
 */