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

ui_modern.scss « themes « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cb55bcc8efd5d889cd879ec33163ffcae924e7f0 (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
/**
 * 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_modern { 

  background:#eee;

  > .container { 
    background:#FFF;
    border: 1px solid #ccc;
    padding:20px;
    margin-top:30px;
    -moz-box-shadow: 0 0 1px 1px #E3E3E3;
    -webkit-box-shadow: 0 0 1px 1px #E3E3E3;
    box-shadow: 0 0 1px 1px #E3E3E3;
  }

  nav.main_menu { 
    position: absolute;
    width: 100%;
    left: 0;
    top: 35px;
    @include border-radius(0px);

    a.current { 
      border-bottom:none;
    }
  }

  .commit-box, .issue_form_box {
    margin-top: 0px;
  }

  .ui-box { 
    @include border-radius(0px);
  }

  /*
   * 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: #FFF; /* for non-css3 browsers */
    z-index:10;
    height:100px;

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

      a { 
        float:left;

        h1 { 

          left: -30px;
          position: relative;
          text-indent:-9999px;
          width:112px;
          background: url('logo_text_tr.png') no-repeat 0px 0;
          float:left;
          font-size:20px;
          line-height:36px;
          font-weight:bold;
          color:#aaa;
          text-shadow: 0 1px 1px #FFF;
          padding-left:50px;
        }
      }
    }
    .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
   *
   */
}