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

ui_gray.scss « themes « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 959febad6fe7dcf25a5aca64508b428e5e9b9741 (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
/**
 * This file represent some UI that can be changed
 * during web app restyle or theme select.
 *
 * Next items should be placed there
 * - link colors
 * - header restyles
 *
 */
.ui_gray {
  /*
   *  Application Header
   *
   */
  header {
    @extend .header-dark;
    &.navbar-gitlab {
      .navbar-inner {
        background: #373737;
        border-bottom: 1px solid #272727;
        .app_logo, .navbar-toggle {
          &:hover {
            background-color: #272727;
          }
        }
        .separator {
          background: #272727;
          border-left: 1px solid #474747;
        }
      }
    }
  }
}