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

ui_mars.scss « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1178c1892475f7d1075735d263a4473e889144ec (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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
/**
 * 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_mars {
  background:#eee;

  .container { 
    border: 1px solid rgba(0,0,0,.22); 
    box-shadow: 0 0 0px 4px rgba(0,0,0,.04);
    background:white;
    margin-top:20px;
    min-height:500px;

    nav.main_menu { 
      margin:0;
      margin-bottom: 20px;
      border:none;
      border-bottom: 1px solid #bbb;
      border-radius:0;

      a { 
        border-radius:0;
      }
    }
  }


  /*
   * Common styles
   *
   */
  a {
    color: $link_color;
    &:hover { 
      text-decoration:none; 
      color: $style_color;
    }
  }


  /*
   *  Application Header
   *
   */
  header { 
    width:100%;
    padding:0;
    margin:0;
    top:1px;
    left:0;


    background: #474D57 url('bg-header.png') repeat-x bottom;

    z-index:10;
    height:60px;

    .search { 
      float: right;
      margin-right: 55px;
      .search-input { 
        background-image:url("icon-search.png");
        float: right;
        text-shadow: none;
        width: 130px;
        background-image: url("icon-search.png");
        background-repeat: no-repeat;
        background-position: 10px;
        border-radius: 100px;
        border: 1px solid rgba(0, 0, 0, 0.7);
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2), 0 2px 2px rgba(0, 0, 0, 0.4) inset;
        background-color: #D2D5DA;
        background-color: rgba(255, 255, 255, 0.5);
        padding: 5px;
        padding-left: 26px;

        &:focus {
          background-color: white;
        }
      }
    }
    .search-input::-webkit-input-placeholder {
      color: #666;
    }
    .app_logo {
      width:230px;
      float:left;
      position:relative;
      top:-5px;

      a { 
        float:left;

        h1 { 
          background: url('logo_wh.png') no-repeat -3px -4px;
          float:left;
          margin-left:5px;
          font-size:20px;
          line-height:36px;
          font-weight:bold;
          color:#ccc;
          text-shadow: 0 1px 1px #111;
          padding-left:50px;
          padding-top:5px;
        }
      }
    }
    .wrapper { 
      margin:auto;
      min-width:$min_app_width;
      max-width:$max_app_width;
      position:relative;
      padding:15px 0;

      .account-box img { 
        right:0;
      }
    }

    .project_name {
      float:left;
      width:360px;
      margin:0;
      margin-right:30px;
      font-size:20px;
      line-height:38px;
      font-weight:bold;
      color:#fff;
      text-shadow: 0 1px 1px #111;
    }

    .admin_link { 
      width: 16px;
      height: 16px;
      padding: 5px;
      margin-right: 15px;
      float:right;
    }
  }
  /*
   *  End of Application Header
   *
   */
}