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

ui_basic.scss « themes « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 16517dc73bea4a29a9e509a1c044dd054c2ba2ab (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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/**
 * 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 styles
 * - main menu styles
 *
 */
.ui_basic { 
  /*
   * Common styles
   *
   */
  a {
    color: $link_color;
    &:hover { 
      text-decoration:none; 
      color: $blue_link;
    }
  }


  /*
   *  Application Header
   *
   */
  header { 
    width:100%;
    padding:0;
    margin:0;
    top:1px;
    left:0;
    background: #F1F1F1; /* for non-css3 browsers */
    border-bottom: 1px solid #ccc; 
    box-shadow: 0 -1px 0 white inset;
    -moz-box-shadow: 0 -1px 0 white inset;
    -webkit-box-shadow: 0 -1px 0 white inset;
    z-index:10;
    height:60px;

    .app_logo {
      width:230px;
      float:left;
      position:relative;
      top:-5px;

      a { 
        float:left;

        h1 { 
          text-indent:-9999px;
          width:102px;
          background: url('logo_text.png') no-repeat 0px -3px;
          float:left;
          margin-left:5px;
          font-size:20px;
          line-height:36px;
          font-weight:bold;
          color:#aaa;
          text-shadow: 0 1px 1px #FFF;
          padding-left:50px;
        }
      }
      .separator {
        margin-left:20px;
        float: left;
        height: 60px;
        width: 1px;
        background: white;
        border-left: 1px solid #DDD;
        margin-top: -10px;
      }
    }
    .container { 
      .top_panel_content { 
        margin:auto;
        position:relative;
        padding:15px 0;
      }
    }

    .project_name {
      float:left;
      margin:0;
      margin-right:30px;
      font-size:20px;
      line-height:36px;
      font-weight:bold;
      color:$style_color;
      text-shadow: 0 1px 1px #FFF;
    }

    .fbtn { 
      float: right;
      margin-right:10px;
      .btn { 
        margin-left:8px;
      }
    }

    .search { 
      float: right;
      margin-right: 55px;

      .search-input { 
        width:130px;
        background-image: url("icon-search.png");
        background-repeat: no-repeat;
        background-position: 10px;
        padding-left:25px;
        @include border-radius(5px);
        border:1px solid #ccc;
      }
    }
  }
  /*
   *  End of Application Header
   *
   */
}